/* ============================================
   HelpKart24 - Creative & Modern Website
   ============================================ */

:root {
    --primary: #1a3a6b;
    --primary-dark: #0f2547;
    --primary-light: #2a5298;
    --accent: #ff6b00;
    --accent-light: #ff8c3a;
    --accent-dark: #e05500;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-text: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-3d: 0 20px 60px rgba(0,0,0,0.15), 0 0 40px rgba(255,107,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    width: 180px;
    animation: pulse 1.5s infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.2));
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-top: 25px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 4px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 85px;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 70px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 50%, #fff5eb 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 30px rgba(255, 107, 0, 0.05);
    animation: float3D 6s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    animation: morph 8s ease-in-out infinite;
}

.hero-logo-img {
    width: 360px;
    height: auto;
}

.card-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

@keyframes float3DMain {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-25px) rotateX(-1deg) rotateY(2deg); }
    75% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 107, 0, 0.05);
}

.vision-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.vision-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(26, 58, 107, 0.03));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 107, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-wrap {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,107,0,0.08), rgba(26,58,107,0.08));
    border-radius: 24px;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    background: linear-gradient(160deg, #0f2547 0%, #1a3a6b 50%, #2a5298 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 107, 0, 0.05);
}

.why-card:hover::before {
    opacity: 1;
}

.why-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    color: var(--white);
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta-card {
    background: linear-gradient(160deg, #1a3a6b 0%, #0f2547 50%, #ff6b00 150%);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.cta-decoration {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.02), rgba(26, 58, 107, 0.02));
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    color: var(--accent);
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 0, 0.1);
}

.contact-card:hover .contact-icon {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(160deg, #050d1a 0%, #0f2547 50%, #1a3a6b 100%);
    color: var(--gray-300);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 95px;
    margin-bottom: 15px;
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
}

.footer-brand p {
    color: var(--gray-300);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--accent-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: bounceIn 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.4rem;
}

@keyframes bounceIn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 5px;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-card {
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-decoration {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .whatsapp-float .float-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}


/* ============================================
   PAGE BANNER (for inner pages)
   ============================================ */
.page-banner {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 50%, #fff5eb 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-title .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-100);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-light);
}

.trust-item span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE FOR INNER PAGES
   ============================================ */
@media (max-width: 768px) {
    .page-banner {
        padding: 130px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   HOW IT WORKS SECTION (Home page)
   ============================================ */
.how-works-section {
    background: var(--gray-50);
}

/* ============================================
   MARKETS SECTION
   ============================================ */
.markets-section {
    background: var(--white);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.market-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.market-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.market-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.market-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.market-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(255, 107, 0, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    margin-bottom: 15px;
    color: #ffc107;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   PARTNER PAGE STYLES
   ============================================ */
.partner-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 50%, #fff5eb 100%);
    color: var(--gray-700);
}

.partner-banner .page-title {
    color: var(--primary-dark);
}

.partner-banner .page-subtitle {
    color: var(--gray-600);
}

.partner-banner .breadcrumb {
    color: var(--gray-600);
}

.partner-banner .breadcrumb a {
    color: var(--accent);
}

/* Partner Intro */
.partner-intro {
    background: var(--white);
}

.partner-intro-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #fff5eb, #f8fafc);
    border-radius: var(--radius-xl);
    padding: 40px;
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.intro-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.intro-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Roles Section */
.roles-section {
    background: var(--gray-50);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.role-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.role-card .role-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.08);
}

.role-card .role-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.role-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.role-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

.role-list {
    list-style: none;
    padding: 0;
}

.role-list li {
    padding: 5px 0;
    color: var(--gray-600);
    font-size: 0.92rem;
    position: relative;
    padding-left: 18px;
}

.role-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Allowed Items */
.allowed-items {
    background: var(--white);
}

.items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.item-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(26, 58, 107, 0.05));
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    font-size: 0.95rem;
}

.item-chip:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.item-chip i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Requirements Section */
.requirements-section {
    background: var(--gray-50);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.req-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.req-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.req-card h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.req-list {
    list-style: none;
    padding: 0;
}

.req-list li {
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.req-list li i {
    color: #22c55e;
    font-size: 0.75rem;
}

.req-note {
    margin-top: 15px;
    padding: 10px 14px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.req-subtext {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Don'ts Section */
.donts-section {
    background: #fef2f2;
}

.donts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.dont-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid #fecaca;
    transition: var(--transition);
}

.dont-card:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.dont-card i {
    color: #ef4444;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dont-card span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Earnings Section */
.earnings-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 50%, #fff5eb 100%);
    color: var(--gray-700);
}

.earnings-section .section-tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent);
}

.earnings-section .section-title {
    color: var(--primary-dark);
}

.earnings-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.earnings-amount {
    margin-bottom: 20px;
}

.earnings-amount .currency {
    font-size: 2rem;
    color: var(--accent);
    vertical-align: top;
}

.earnings-amount .amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.earnings-amount .per {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.earnings-tagline {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.earnings-tips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 50px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.tip-item i {
    color: var(--accent);
}

/* Rating System */
.rating-system {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
}

.rating-system h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.rating-info {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.rating-info .stars {
    font-size: 1.2rem;
}

.rating-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.03);
}

.faq-question span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 18px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Success Section */
.success-section {
    background: var(--gray-50);
}

.success-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.success-card h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.success-quote {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
}

.success-tips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.success-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    color: #16a34a;
    font-weight: 500;
    font-size: 0.9rem;
}

.success-tip i {
    color: #22c55e;
}

/* Responsive Partner Page */
@media (max-width: 768px) {
    .partner-intro-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .earnings-card {
        padding: 30px 20px;
    }

    .earnings-amount .amount {
        font-size: 3.5rem;
    }

    .earnings-tips,
    .rating-benefits,
    .success-tips {
        flex-direction: column;
        align-items: center;
    }

    .success-card {
        padding: 40px 20px;
    }
}


/* ============================================
   3D EFFECTS & ADVANCED ANIMATIONS
   ============================================ */

/* 3D Card Perspective */
.service-card,
.why-card,
.contact-card,
.role-card,
.req-card,
.step-card,
.testimonial-card,
.market-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    box-shadow: var(--shadow-3d);
}

.why-card:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
}

.contact-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

.role-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
    box-shadow: var(--shadow-3d);
}

.step-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

.testimonial-card:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-1deg);
    box-shadow: var(--shadow-3d);
}

.market-card:hover {
    transform: translateY(-8px) rotateX(5deg) rotateY(-3deg);
    box-shadow: var(--shadow-3d);
    border-color: var(--accent);
}

/* Glassmorphism Effects */
.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.vision-card {
    backdrop-filter: blur(10px);
}

/* Gradient Border Animation */
.service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.service-card:hover::after {
    opacity: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neon Glow Effects */
.service-icon-wrap {
    position: relative;
}

.service-card:hover .service-icon-wrap {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4), 0 0 40px rgba(255, 107, 0, 0.2);
}

.nav-cta:hover {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.3);
}

/* Animated Background Mesh */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 58, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Morphing Shapes */
.hero-card .card-glow {
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 50%; transform: scale(1); }
    25% { border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%; transform: scale(1.1); }
    50% { border-radius: 50% 30% 50% 70% / 30% 50% 70% 50%; transform: scale(0.95); }
    75% { border-radius: 70% 50% 30% 50% / 50% 70% 50% 30%; transform: scale(1.05); }
}

/* Tilt Effect on Cards */
.feature-item:hover {
    transform: translateX(10px) rotateY(-3deg);
    box-shadow: var(--shadow-3d);
}

/* Smooth Entrance Animations */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8) rotateY(10deg); }
    to { opacity: 1; transform: scale(1) rotateY(0); }
}

@keyframes fadeInBlur {
    from { opacity: 0; filter: blur(10px); transform: translateY(20px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Hero 3D Float Animation */
.hero-card {
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-25px) rotateX(-1deg) rotateY(2deg); }
    75% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
}

/* Button 3D Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.2);
}

/* Section Tag Pulse */
.section-tag {
    animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}

/* Icon Spin on Hover */
.contact-icon:hover i,
.why-icon:hover i,
.feature-icon:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3) rotate(10deg); }
    60% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1) rotate(0); }
}

/* WhatsApp Button 3D */
.whatsapp-float {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.2);
    animation: float3DSmall 3s ease-in-out infinite;
}

@keyframes float3DSmall {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

/* CTA Card 3D */
.cta-card {
    transform-style: preserve-3d;
    transition: var(--transition);
}

.cta-card:hover {
    transform: rotateX(2deg) rotateY(-1deg) scale(1.01);
    box-shadow: var(--shadow-3d);
}

/* Navbar Glass Effect Enhanced */
.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Earnings Amount 3D */
.earnings-amount .amount {
    text-shadow: 2px 2px 0 rgba(255, 107, 0, 0.2), 4px 4px 0 rgba(255, 107, 0, 0.1);
}

/* FAQ Hover 3D */
.faq-item:hover {
    transform: translateX(5px) rotateY(-1deg);
}

/* Partner Intro Card 3D */
.partner-intro-card {
    transform-style: preserve-3d;
    transition: var(--transition);
}

.partner-intro-card:hover {
    transform: rotateX(2deg) rotateY(-2deg) translateY(-5px);
    box-shadow: var(--shadow-3d);
}

/* Success Card 3D */
.success-card:hover {
    transform: rotateX(1deg) translateY(-5px);
    box-shadow: var(--shadow-3d);
}

/* Don't Card Shake on Hover */
.dont-card:hover {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Item Chip 3D */
.item-chip:hover {
    transform: translateY(-3px) rotateX(5deg);
    box-shadow: var(--shadow-md);
}

/* Smooth Page Transitions */
body {
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Back to Top 3D */
.back-to-top:hover {
    transform: translateY(-5px) rotateZ(360deg);
    box-shadow: 0 8px 25px rgba(26, 58, 107, 0.4);
}

/* Scrollbar Custom Design */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection Color */
::selection {
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-dark);
}

/* Image Hover 3D */
.logo-img:hover {
    transform: rotateY(-5deg) scale(1.05);
    transition: var(--transition-bounce);
}

/* Heading Underline Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 50px;
}


/* ============================================
   HERO BACKGROUND SHAPES
   ============================================ */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 58, 107, 0.04) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: shapeFloat 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: shapeFloat 10s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Enhanced About Section */
.about-grid {
    position: relative;
}

/* Service Price Badge Enhanced */
.service-price {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* Enhanced Market Cards */
.market-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.03), transparent);
    opacity: 0;
    transition: var(--transition);
}

.market-card:hover::before {
    opacity: 1;
}

/* Enhanced Step Cards */
.step-card {
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--gradient);
    display: none;
}

/* Form Enhanced */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08), 0 4px 15px rgba(255, 107, 0, 0.05);
}

/* Gradient text on white bg fix */
.about .section-title .gradient-text,
.services .section-title .gradient-text,
.contact .section-title .gradient-text,
.faq-section .section-title .gradient-text,
.success-section .section-title .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.package-card.package-popular {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.15);
}

.package-card.package-popular:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-badge i {
    font-size: 0.7rem;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.package-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.1rem;
    color: var(--gray-600);
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.discount {
    font-size: 0.85rem;
    color: #16a34a;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

.package-body {
    flex: 1;
    margin-bottom: 25px;
}

.package-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.package-footer {
    text-align: center;
}

.package-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
}

/* Responsive Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}


/* Add-on Package Card */
.package-card.package-addon {
    border-color: var(--gray-300);
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.package-card.package-addon:hover {
    border-color: var(--primary);
}

.package-card.package-addon .package-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.package-card.package-addon .package-btn:hover {
    background: var(--primary);
    color: var(--white);
}


/* ============================================
   SMOOTH TRANSITIONS & PERFORMANCE
   ============================================ */

/* Smooth all interactive elements */
a, button, input, textarea, .nav-link, .btn, .service-card, .package-card,
.why-card, .contact-card, .role-card, .market-card, .testimonial-card,
.step-card, .feature-item, .faq-item, .social-icons a, .item-chip {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* GPU Acceleration for animations */
.hero-card, .service-card, .why-card, .package-card, .contact-card,
.whatsapp-float, .back-to-top, .nav-cta, .btn, .logo-img,
.service-icon-wrap, .contact-icon {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Smoother hover transitions */
.package-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.3s ease;
}

/* Smooth image loading */
img {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Smooth nav scroll */
.header {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Preloader smoother fade */
#preloader {
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth focus states */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    transition: outline-offset 0.2s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Legal Pages - Privacy Policy & Terms */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.legal-content .legal-updated {
    color: var(--gray-500, #6b7280);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark, #1a1a2e);
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-100, #f3f4f6);
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--dark, #1a1a2e);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--gray-600, #4b5563);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-content ul li {
    color: var(--gray-600, #4b5563);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary, #6c63ff);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}
