:root {
    --blue: #6EC1FF;
    --purple: #8B5CF6;
    --blue-dark: #4da8f0;
    --purple-dark: #7c3aed;
    --bg: #f8faff;
    --card-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 20px rgba(107, 70, 193, 0.08);
    --shadow-md: 0 8px 32px rgba(107, 70, 193, 0.12);
    --shadow-lg: 0 16px 48px rgba(107, 70, 193, 0.18);
    --radius: 18px;
    --radius-sm: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(160deg, #f8faff 0%, #8B5CF6 30%, #6EC1FF 60%,  #6EC1FF 100%);
    color: #2d2d3f;
    min-height: 100vh;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Floating background elements */
.bg-float {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(80px);
    animation: floatBG 14s ease-in-out infinite;
}
.bg-float-1 {
    width: 380px;
    height: 380px;
    background: var(--blue);
    top: -8%;
    left: -5%;
    animation-delay: 0s;
}
.bg-float-2 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    bottom: -6%;
    right: -4%;
    animation-delay: -6s;
    animation-duration: 16s;
}
.bg-float-3 {
    width: 200px;
    height: 200px;
    background: #a78bfa;
    top: 50%;
    left: 55%;
    animation-delay: -3s;
    animation-duration: 18s;
}
@keyframes floatBG {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.15); }
    50% { transform: translate(-20px, 25px) scale(0.9); }
    75% { transform: translate(-35px, -15px) scale(1.1); }
}

/* Navbar (glass morphism) */
.navbar-custom {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 1000;
    background: #dcd1f3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.85);
}
.navbar-brand-custom {
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-decoration: none;
}
/* Nav link base */
.nav-link-custom {
    color: #4a4a60 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px !important;
    border-radius: 40px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin: 0 2px;
}

/* Hover effect */
.nav-link-custom:hover {
    color: var(--purple) !important;
    background: rgba(139, 92, 246, 0.08);
}

/* Active tab – bottom line highlight */
.nav-link-custom.active {
    color: var(--purple) !important;
    background: transparent;
}

/* The line (or you can change to a dot by using "●" content) */
.nav-link-custom.active::after {
    content: '_';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.5);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a4a60;
    cursor: pointer;
    padding: 4px 8px;
}

/* Glass card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.glass-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Buttons */
.btn-grad {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}
.btn-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(139, 92, 246, 0.4);
    color: #fff;
}
.btn-outline-grad {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-outline-grad:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
}

/* Section titles */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #3b2d5c, var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #6b6b80;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========== FOOTER – Horizontal icons always, no stacking ========== */
.footer-custom {
    background: #c3dff5;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 24px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.footer-custom .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-custom .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Brand text */
.footer-custom .fw-bold {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #8B5CF6, #6EC1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



.footer-custom {
    color: #6b6b80;
    font-size: 1.3rem;
    transition: all 0.2s ease;
}

.footer-custom   {
    color: #8B5CF6;
    transform: translateY(-2px);
}

.footer-custom .text-muted {
    color: #6c757d !important;
    font-size: 0.85rem;
}


.social-icons a {
    font-size: 24px;
    margin-left: 15px;
    transition: 0.3s ease;
}

/* Instagram */
.social-icons .instagram {
    color: #E4405F;
}

/* Facebook */
.social-icons .facebook {
    color: #1877F2;
}

/* X (Twitter) */
.social-icons .x-icon {
    color: #000000;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}
/* Mobile: only stack the main blocks (brand, icons, copyright), 
   but icons themselves stay side by side */
@media (max-width: 768px) {
    .footer-custom .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-custom .social-icons {
        justify-content: center;
    }
}
/* Page-specific: FAQ accordion, contact card, and footer */
.main-content {
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.help-hero {
    text-align: center;
    margin-bottom: 50px;
}
.help-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b2d5c, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}
.help-hero p {
    color: #6b6b80;
    max-width: 550px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 50px;
}
.faq-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.faq-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.08rem;
    color: #2d2d3f;
    gap: 16px;
}
.faq-icon {
    font-size: 1.3rem;
    color: var(--purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-card.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    padding: 0 28px;
    color: #5a5a70;
    font-size: 0.98rem;
    line-height: 1.65;
    border-top: 0px solid transparent;
}
.faq-card.active .faq-answer {
    max-height: 380px;
    padding: 0 28px 24px 28px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}
.faq-answer p {
    margin-top: 18px;
}

.contact-section {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.glass-contact {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}
.glass-contact:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-md);
}
.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #3b2d5c, var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.contact-sub {
    color: #6b6b80;
    margin-bottom: 28px;
}
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 92, 246, 0.1);
    padding: 14px 28px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, 0.4);
    transition: all 0.25s;
    margin-bottom: 24px;
}
.contact-email:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-dark);
    transform: translateY(-2px);
}
.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(110, 193, 255, 0.12);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: var(--blue-dark);
}

/* ========== FOOTER FIXES – matches Screenshot 553.png ========== */


/* Responsive adjustments (mobile & tablet) */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.6rem;
    }
    .nav-links-wrap {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--glass-border);
    }
    .nav-links-wrap.open {
        display: flex;
    }
    .hamburger-btn {
        display: block;
    }
    .navbar-custom {
        border-radius: 30px;
    }
}


/* ===== MOBILE MENU FIXES ===== */
@media (max-width: 992px) {
    .navbar-custom {
        position: fixed;
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        z-index: 1000;
        background: #dcd1f3;
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 8px 20px;
    }

    .nav-links-wrap {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--glass-border);
        z-index: 1001;
    }

    .nav-links-wrap.open {
        display: flex !important;
    }

    .nav-link-custom {
        padding: 12px 18px !important;
        text-align: center;
        font-size: 1rem;
    }

    .hamburger-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #4a4a60;
        padding: 4px 12px;
        z-index: 1002;
    }

    .hamburger-btn:active {
        opacity: 0.6;
    }
}

@media (max-width: 992px) {
    .nav-links-wrap {
        display: none;
    }
    .nav-links-wrap.open {
        display: flex !important;
    }
    .hamburger-btn {
        display: block;
    }
}

/* ===== MOBILE MENU FIXES ===== */
@media (max-width: 992px) {
    .navbar-custom {
        position: fixed;
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        z-index: 1000;
        background: #dcd1f3;
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 8px 20px;
    }

    .nav-links-wrap {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--glass-border);
        z-index: 1001;
    }

    .nav-links-wrap.open {
        display: flex !important;
    }

    .nav-link-custom {
        padding: 12px 18px !important;
        text-align: center;
        font-size: 1rem;
    }

    .hamburger-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #4a4a60;
        padding: 4px 12px;
        z-index: 1002;
    }

    .hamburger-btn:active {
        opacity: 0.6;
    }
}