  /* ===== ALL STYLES IN ONE PLACE ===== */
        :root {
            --bg-color: #f1edff;
            --primary-purple: #6200ea;
            --text-dark: #000000;
            --text-muted: #4a4a4a;
            --text-dark-blue: #0a1931;
            --text-gray: #6c757d;
            --text-muted-blue: #5c6b88;
            --card-icon-bg: #eef2ff;
            --icon-color: #0d6efd;
            --icon-bg: #f3e8ff;
            --bg-color-tint: #f1edff;
            --card-border: #e2e8f0;
            --badge-bg: #f1edff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1 0 auto;
        }

        footer {
            flex-shrink: 0;
        }

/* ===== NAVBAR STYLES - FIXED ===== */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-brand .text-purple {
    color: var(--primary-purple);
}

.navbar-brand:hover {
    color: var(--text-dark);
}

/* Nav Links */
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

/* Nav Actions */
.nav-actions-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-actions-mobile .btn {
    white-space: nowrap;
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 992px) {
    .navbar .container-fluid {
        flex-wrap: nowrap;
    }
    
    .navbar-collapse {
        flex: 1;
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
}

/* ===== MOBILE/TABLET VIEW ===== */
@media (max-width: 991.98px) {
    .navbar .container-fluid {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .d-flex.ms-auto {
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        margin-top: 0.5rem;
        background: #ffffff;
        border-radius: 12px;
        padding: 0.75rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
        z-index: 1050;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        width: 100%;
        gap: 0.25rem;
        padding: 0.25rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.2s ease;
        white-space: normal;
        text-align: center;
    }
    
    .nav-link:hover {
        background-color: var(--bg-color);
    }
    
    .nav-actions-mobile .btn {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .nav-actions-mobile .btn-login {
        margin-right: 0;
    }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .nav-actions-mobile .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }
    
    .nav-actions-mobile .btn-purple {
        padding: 0.3rem 0.75rem;
    }
    
    .navbar-toggler {
        padding: 0.15rem 0.3rem;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    .navbar-collapse {
        width: calc(100% - 20px);
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem;
    }
}
        .btn-purple {
            background-color: var(--primary-purple);
            color: #ffffff;
            font-weight: 600;
            border-radius: 6px;
            padding: 0.6rem 1.5rem;
            border: none;
            box-shadow: 0 4px 6px rgba(98, 0, 234, 0.2);
            transition: all 0.2s ease;
        }
        .btn-purple:hover {
            background-color: #4a00b8;
            color: #ffffff;
            transform: translateY(-1px);
        }
        .btn-login {
            background-color: transparent;
            color: var(--primary-purple);
            font-weight: 700;
            border: none;
            padding: 0.6rem 1.5rem;
            margin-right: 0.5rem;
        }
        .btn-login:hover {
            color: #4a00b8;
        }

        /* ----- Hero ----- */
        .hero-section {
            padding: 8% 0 0 0;
        }
        .badge-trade {
            background-color: rgba(98, 0, 234, 0.06);
            color: var(--primary-purple);
            border: 1px solid rgba(98, 0, 234, 0.15);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .hero-desc {
            color: var(--text-muted);
            font-size: 1.15rem;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 2.5rem;
        }

        /* ----- Security Section ----- */
        .security-section {
            background-color: #ffffff;
            padding: 60px 0 80px 0;
            font-family: 'Inter', sans-serif;
        }
        .section-title {
            color: var(--text-dark-blue);
            font-weight: 700;
            font-size: 2.25rem;
            margin-bottom: 60px;
        }
        .feature-card {
            text-align: center;
            max-width: 440px;
            margin: 0 auto;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background-color: var(--card-icon-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
        }
        .icon-box i {
            font-size: 2rem;
            color: var(--icon-color);
        }
        .feature-title {
            color: var(--text-dark-blue);
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 16px;
        }
        .feature-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .tradingview-wrapper {
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #f0f3fa;
        }

        /* ----- Services Section ----- */
        .services-section {
            background-color: #ffffff;
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }
        .services-section .section-title {
            margin-bottom: 1rem;
        }
        .section-subtitle {
            color: var(--text-muted-blue);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto 4.5rem auto;
            line-height: 1.6;
        }
        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }
        .service-icon-box {
            width: 48px;
            height: 48px;
            background-color: var(--icon-bg);
            color: var(--primary-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            border-radius: 14px 4px 14px 14px;
            flex-shrink: 0;
            margin-right: 1.25rem;
        }
        .service-title {
            color: var(--text-dark-blue);
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }
        .service-desc {
            color: var(--text-muted-blue);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .phone-mockup-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .phone-img {
            max-width: 100%;
            height: auto;
            max-height: 520px;
        }

        /* ----- Mobile Trading Section ----- */
        .mobile-trading-section {
            background-color: var(--bg-color-tint);
            padding: 100px 0;
            font-family: 'Inter', sans-serif;
        }
        .laptop-mockup-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .laptop-img {
            max-width: 100%;
            height: auto;
            max-height: 450px;
        }
        .mobile-trading-title {
            color: var(--primary-purple);
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 2.75rem);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }
        .mobile-trading-desc {
            color: var(--text-muted-blue);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 540px;
            margin-bottom: 2rem;
        }
        .btn-find-more {
            color: var(--primary-purple);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: transform 0.2s ease, color 0.2s ease;
        }
        .btn-find-more:hover {
            color: #4a00b8;
        }
        .btn-find-more span {
            margin-left: 0.5rem;
            transition: transform 0.2s ease;
        }
        .btn-find-more:hover span {
            transform: translateX(4px);
        }

        /* ----- Packages Section ----- */
        .packages-section {
            background-color: #ffffff;
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }
        .section-title-purple {
            color: var(--primary-purple);
            font-weight: 700;
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }
        .section-subtitle-gray {
            color: var(--text-muted-blue);
            font-size: 1rem;
            margin-bottom: 4rem;
        }
        .package-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            max-width: 380px;
            margin: 0 auto;
        }
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(98, 0, 234, 0.08);
        }
        .package-badge {
            background-color: var(--badge-bg);
            color: var(--primary-purple);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        .package-price {
            color: var(--text-dark-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .package-duration {
            color: var(--text-muted-blue);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .package-divider {
            border-top: 1px solid #edf2f7;
            margin-bottom: 1.75rem;
        }
        .package-features {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2.5rem;
        }
        .package-features li {
            color: var(--text-muted-blue);
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }
        .package-features li i {
            color: var(--primary-purple);
            font-size: 1.1rem;
            margin-right: 0.75rem;
        }
        .btn-buy-now {
            background-color: var(--primary-purple);
            color: #ffffff;
            font-weight: 600;
            border-radius: 6px;
            padding: 0.75rem 1.5rem;
            border: none;
            width: 100%;
            transition: background-color 0.2s ease;
        }
        .btn-buy-now:hover {
            background-color: #4a00b8;
            color: #ffffff;
        }

        /* ----- Crypto Section ----- */
        .crypto-section {
            background-color: var(--bg-color-tint);
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }
        .crypto-title {
            color: var(--primary-purple);
            font-weight: 700;
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }
        .crypto-subtitle {
            color: var(--text-muted-blue);
            font-size: 1rem;
            margin-bottom: 4rem;
        }
        .crypto-card-frame {
            background-color: var(--primary-purple);
            padding: 2.5rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(98, 0, 234, 0.15);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 340px;
            max-width: 380px;
            margin: 0 auto;
        }
        .crypto-card-frame gecko-coin-price-chart-widget {
            width: 100% !important;
        }

        /* ----- FOOTER ----- */
        .footer-section {
            background-color: #0a1931;
            color: #cdd4e0;
            padding: 60px 0 30px 0;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid rgba(255,255,255,0.06);
            margin-top: 0;
        }
        .footer-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: #ffffff;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
        }
        .footer-brand .text-purple {
            color: #a78bfa;
        }
        .footer-about-text {
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 320px;
            color: #b0bccf;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
            color: #cdd4e0;
            font-size: 1.1rem;
            margin-right: 10px;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: #6200ea;
            color: #ffffff;
            transform: translateY(-3px);
        }
        .footer-heading {
            color: #ffffff;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #b0bccf;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #a78bfa;
            text-decoration: underline;
        }
        .footer-contact {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.9rem;
            color: #b0bccf;
            font-size: 0.95rem;
        }
        .footer-contact i {
            color: #a78bfa;
            font-size: 1.15rem;
            width: 24px;
            text-align: center;
        }
        .copyright {
            color: #8896b0;
            font-size: 0.9rem;
            margin: 0;
        }
        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.9rem;
        }
        .legal-links a {
            color: #8896b0;
            text-decoration: none;
            transition: color 0.2s;
        }
        .legal-links a:hover {
            color: #a78bfa;
            text-decoration: underline;
        }
        .legal-links .divider {
            color: #3d4a62;
        }

        /* ----- Responsive Overrides ----- */
        @media (max-width: 991.98px) {
            .navbar .container-fluid {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
            }
            .navbar-toggler {
                order: 1;
                border: none;
                padding: 0;
            }
            .navbar-toggler:focus {
                box-shadow: none;
            }
            .nav-actions-mobile {
                order: 2;
                display: flex !important;
                align-items: center;
            }
            .navbar-collapse {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                background: rgba(255, 255, 255, 0.95);
                border-radius: 8px;
                padding: 1rem;
                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            }
            .nav-link {
                margin-right: 0;
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            .hero-section {
                padding: 15% 0 0 0;
                text-align: left;
            }
            .services-section {
                padding: 60px 0;
            }
            .section-subtitle {
                margin-bottom: 3rem;
            }
            .phone-mockup-wrapper {
                margin-top: 3rem;
            }
            .mobile-trading-section {
                padding: 60px 0;
            }
            .laptop-mockup-wrapper {
                margin-bottom: 3rem;
            }
            .mobile-trading-title,
            .mobile-trading-desc {
                max-width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .footer-section {
                padding: 40px 0 20px;
            }
            .footer-about-text {
                max-width: 100%;
            }
            .footer-brand {
                font-size: 1.6rem;
            }
            .social-icons a {
                width: 34px;
                height: 34px;
                font-size: 1rem;
                margin-right: 6px;
            }
            .legal-links {
                justify-content: center;
                margin-top: 6px;
            }
            .copyright {
                text-align: center;
            }
        }
        
        
        
        
        /* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero-section {
    padding: 8% 0 5% 0;
    background-color: var(--bg-color);
}

.badge-about {
    background-color: rgba(98, 0, 234, 0.06);
    color: var(--primary-purple);
    border: 1px solid rgba(98, 0, 234, 0.15);
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 2rem;
}

/* About Details Section */
.about-details-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-details-title {
    color: var(--text-dark-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-details-text {
    color: var(--text-muted-blue);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.about-feature-item i {
    color: var(--primary-purple);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
}

/* How to Start Section */
.how-to-start-section {
    background-color: var(--bg-color-tint);
    padding: 80px 0;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(98, 0, 234, 0.10);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(98, 0, 234, 0.04);
    line-height: 1;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.step-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-purple);
}

.step-title {
    color: var(--text-dark-blue);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-hero-section {
        padding: 12% 0 5% 0;
    }
    .about-details-section {
        padding: 60px 0;
    }
    .about-details-title {
        font-size: 2rem;
    }
    .how-to-start-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .step-card {
        padding: 2rem 1.5rem;
    }
    .about-image {
        max-height: 300px;
    }
}


/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero */
.pricing-hero-section {
    padding: 8% 0 3% 0;
    background-color: var(--bg-color);
}

.badge-pricing {
    background-color: rgba(98, 0, 234, 0.06);
    color: var(--primary-purple);
    border: 1px solid rgba(98, 0, 234, 0.15);
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 2rem;
}

/* Pricing Packages Section */
.pricing-packages-section {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(98, 0, 234, 0.08);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(98, 0, 234, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-card-header {
    text-align: center;
}

.pricing-badge {
    background-color: var(--badge-bg);
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-badge.featured-badge {
    background-color: var(--primary-purple);
    color: #ffffff;
    padding: 0.4rem 1.8rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 0.25rem;
}

.pricing-duration {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.pricing-divider {
    border-top: 1px solid #edf2f7;
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.btn-pricing {
    background-color: var(--primary-purple);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    border: none;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: #4a00b8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.3);
}

.btn-pricing.featured-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #7c3aed 100%);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.3);
}

.btn-pricing.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.4);
}

/* Comparison Table */
.comparison-section {
    background-color: var(--bg-color-tint);
    padding: 80px 0;
}

.comparison-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 0;
}

.comparison-table thead th {
    background-color: var(--text-dark-blue);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
}

.comparison-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f3fa;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f8f6ff;
}

.comparison-table .featured-column {
    background-color: #f8f4ff;
    font-weight: 600;
    color: var(--primary-purple);
}

.comparison-table .text-success {
    font-size: 1.2rem;
}

.comparison-table .text-danger {
    font-size: 1.2rem;
}

/* Pricing FAQ Section */
.pricing-faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-item {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f1edff;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark-blue);
    margin-bottom: 0.5rem;
}

.faq-question i {
    color: var(--primary-purple);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-muted-blue);
    padding-left: 2.25rem;
    line-height: 1.6;
}

/* Pricing CTA Section */
.pricing-cta-section {
    background: linear-gradient(135deg, var(--bg-color-tint) 0%, #e8e0ff 100%);
    padding: 80px 0;
}

.cta-title {
    color: var(--text-dark-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-muted-blue);
    font-size: 1.15rem;
    max-width: 540px;
    margin: 0 auto 2rem auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pricing-hero-section {
        padding: 12% 0 3% 0;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .pricing-price {
        font-size: 2.5rem;
    }
    .pricing-hero-title {
        font-size: 2rem;
    }
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .faq-item {
        padding: 1rem 1.25rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .pricing-cta-section {
        padding: 60px 0;
    }
}



/* ===== FAQ PAGE STYLES ===== */

/* FAQ Hero */
.faq-hero-section {
    padding: 8% 0 3% 0;
    background-color: var(--bg-color);
}

.badge-faq {
    background-color: rgba(98, 0, 234, 0.06);
    color: var(--primary-purple);
    border: 1px solid rgba(98, 0, 234, 0.15);
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.faq-hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 2rem;
}

.faq-contact-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

.faq-contact-link:hover {
    color: #4a00b8;
    text-decoration: underline;
}

/* FAQ Categories */
.faq-categories-section {
    background-color: #ffffff;
    padding: 30px 0 10px 0;
}

.btn-faq-category {
    background-color: transparent;
    border: 2px solid var(--card-border);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted-blue);
    transition: all 0.3s ease;
}

.btn-faq-category:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-faq-category.active {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: #ffffff;
}

.btn-faq-category.active:hover {
    background-color: #4a00b8;
    border-color: #4a00b8;
    color: #ffffff;
}

/* FAQ Accordion Section */
.faq-accordion-section {
    background-color: #ffffff;
    padding: 50px 0 80px 0;
}

.faq-category-group {
    margin-bottom: 3rem;
}

.faq-category-group:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--bg-color-tint);
}

.faq-accordion-item {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--primary-purple);
}

.faq-accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark-blue);
    transition: background-color 0.3s ease;
    background-color: #f8f9fc;
    user-select: none;
}

.faq-accordion-header:hover {
    background-color: var(--bg-color-tint);
}

.faq-accordion-header i:first-child {
    color: var(--primary-purple);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-header:not(.collapsed) i:first-child {
    transform: rotate(90deg);
}

.faq-accordion-body {
    padding: 0 1.5rem 0 3.5rem;
    background-color: #ffffff;
}

.faq-accordion-body p {
    color: var(--text-muted-blue);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* FAQ Contact Section */
.faq-contact-section {
    background-color: var(--bg-color-tint);
    padding: 80px 0;
}

.faq-contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.faq-contact-card i:first-child {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.faq-contact-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 0.75rem;
}

.faq-contact-card p {
    color: var(--text-muted-blue);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-outline-purple {
    background-color: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.2);
}

.faq-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-contact-info span {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-contact-info span i {
    color: var(--primary-purple);
}

/* Responsive */
@media (max-width: 991.98px) {
    .faq-hero-section {
        padding: 12% 0 3% 0;
    }
    .faq-accordion-section {
        padding: 30px 0 60px 0;
    }
    .faq-contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .faq-hero-title {
        font-size: 2rem;
    }
    .faq-accordion-header {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    .faq-accordion-body {
        padding: 0 1.25rem 0 2.5rem;
    }
    .faq-accordion-body p {
        font-size: 0.95rem;
    }
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .faq-contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    .btn-faq-category {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .faq-categories-section .row {
        gap: 0.5rem;
    }
    .faq-categories-section .col-auto {
        width: 100%;
        text-align: center;
    }
    .btn-faq-category {
        width: 100%;
        max-width: 100%;
    }
}


/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero-section {
    padding: 8% 0 3% 0;
    background-color: var(--bg-color);
}

.badge-contact {
    background-color: rgba(98, 0, 234, 0.06);
    color: var(--primary-purple);
    border: 1px solid rgba(98, 0, 234, 0.15);
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 2rem;
}

/* Contact Cards Section */
.contact-cards-section {
    background-color: #ffffff;
    padding: 30px 0 60px 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(98, 0, 234, 0.08);
    border-color: var(--primary-purple);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--primary-purple);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper i {
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #4a00b8;
    text-decoration: underline;
}

/* Office Location Section */
.office-section {
    background-color: var(--bg-color-tint);
    padding: 80px 0;
}

.badge-location {
    background-color: rgba(98, 0, 234, 0.06);
    color: var(--primary-purple);
    border: 1px solid rgba(98, 0, 234, 0.15);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.office-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 1rem;
}

.office-desc {
    color: var(--text-muted-blue);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    width: 30px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.office-detail-item div {
    display: flex;
    flex-direction: column;
}

.office-detail-item strong {
    color: var(--text-dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.office-detail-item span {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
}

.office-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Support Hours Section */
.support-hours-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.support-hour-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.support-hour-card:hover {
    background: var(--bg-color-tint);
    transform: translateY(-4px);
}

.support-hour-card i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.support-hour-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark-blue);
    margin-bottom: 0.5rem;
}

.support-hour-card p {
    color: var(--text-muted-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Social Connect Section */
.social-connect-section {
    background: linear-gradient(135deg, var(--bg-color-tint) 0%, #e8e0ff 100%);
    padding: 80px 0;
}

.social-connect-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark-blue);
    margin-bottom: 1rem;
}

.social-connect-desc {
    color: var(--text-muted-blue);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.social-connect-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-connect-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted-blue);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    min-width: 100px;
}

.social-connect-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.12);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.social-connect-link i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-connect-link:hover i {
    color: var(--primary-purple);
}

.social-connect-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-hero-section {
        padding: 12% 0 3% 0;
    }
    .office-section {
        padding: 60px 0;
    }
    .office-title {
        font-size: 2rem;
    }
    .support-hours-section {
        padding: 60px 0;
    }
    .social-connect-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .contact-card {
        padding: 1.5rem 1rem;
    }
    .office-title {
        font-size: 1.75rem;
    }
    .office-detail-item {
        font-size: 0.9rem;
    }
    .office-map-wrapper iframe {
        height: 300px;
    }
    .social-connect-icons {
        gap: 1rem;
    }
    .social-connect-link {
        min-width: 80px;
        padding: 0.75rem 1rem;
    }
    .social-connect-link i {
        font-size: 1.5rem;
    }
    .social-connect-link span {
        font-size: 0.75rem;
    }
    .social-connect-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .social-connect-icons {
        gap: 0.75rem;
    }
    .social-connect-link {
        min-width: 60px;
        padding: 0.5rem 0.75rem;
    }
    .social-connect-link i {
        font-size: 1.25rem;
    }
    .social-connect-link span {
        font-size: 0.7rem;
    }
}