/* ==========================================================================
   Clean'eCart / Demandium Modern Landing Page Theme (SaaS & Premium Experience)
   Colors: Navy (#00235F), Vivid Blue (#0B4EA2), Accent Cyan (#4DB8E8), Light Cyan (#8ED8F8), Soft Surface (#F8FBFD)
   ========================================================================== */

:root {
    --brand-primary: #00235F;
    --brand-primary-dark: #001A47;
    --brand-vivid: #0B4EA2;
    --brand-cyan: #4DB8E8;
    --brand-cyan-light: #8ED8F8;
    --brand-cyan-soft: #E6F7FF;
    --bg-page: #F8FBFD;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #FFFFFF;
    --text-heading: #0F172A;
    --text-body: #475569;
    --text-muted: #64748B;
    --border-light: #E2E8F0;
    --border-brand: rgba(77, 184, 232, 0.3);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    --shadow-soft: 0 4px 20px -2px rgba(0, 35, 95, 0.05);
    --shadow-card: 0 10px 30px -5px rgba(0, 35, 95, 0.07), 0 4px 10px -2px rgba(0, 35, 95, 0.03);
    --shadow-hover: 0 20px 40px -10px rgba(0, 35, 95, 0.14), 0 8px 16px -4px rgba(0, 35, 95, 0.06);
    --shadow-glow: 0 0 35px rgba(77, 184, 232, 0.35);

    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 8px 32px 0 rgba(0, 35, 95, 0.08);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
body {
    background-color: var(--bg-page);
    color: var(--text-body);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Utility Badges */
.badge-pill-cyan {
    background: linear-gradient(135deg, var(--brand-cyan-soft), #D6F1FF);
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--brand-cyan-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(77, 184, 232, 0.15);
}

.badge-pill-navy {
    background: rgba(0, 35, 95, 0.06);
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

/* Modern Sticky Header */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: var(--transition-smooth);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-card);
}

/* Legacy: keep .modern-navbar for any other blade views */
.modern-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.modern-brand-logo img {
    max-height: 52px;
    min-height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}

.modern-brand-logo:hover img {
    transform: scale(1.03);
}

.modern-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.modern-nav-link:hover {
    color: var(--brand-primary);
    background: rgba(0, 35, 95, 0.06);
    font-weight: 600;
}

.modern-nav-link.active {
    color: var(--brand-primary);
    background: var(--brand-cyan-soft);
    font-weight: 700;
}

.modern-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-cyan));
    border-radius: 4px;
    transition: var(--transition-fast);
}

.modern-nav-link:hover::after,
.modern-nav-link.active::after {
    width: calc(100% - 32px);
}


.btn-primary-brand {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-vivid) 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 35, 95, 0.2);
    transition: var(--transition-smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 35, 95, 0.3);
    color: #FFFFFF !important;
}

.btn-secondary-brand {
    background: var(--bg-surface);
    color: var(--brand-primary) !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1.5px solid var(--border-light);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.btn-secondary-brand:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-primary) !important;
    background: var(--brand-cyan-soft);
    transform: translateY(-2px);
}

/* Modern Hero Section */
.hero-section-wrapper {
    position: relative;
    padding: 80px 0 100px 0;
    background: radial-gradient(100% 100% at 50% 0%, rgba(77, 184, 232, 0.08) 0%, rgba(248, 251, 253, 0) 100%),
        linear-gradient(180deg, #F8FBFD 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-glow-circle {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 184, 232, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    border-radius: 50%;
}

.hero-glow-circle-left {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 78, 162, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-title-main {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin: 24px 0 18px 0;
    color: var(--brand-primary);
    letter-spacing: -0.03em;
}

.hero-title-main span.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-text {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-app-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-app-btn-img {
    height: 50px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 12px rgba(0, 35, 95, 0.1));
    border-radius: 10px;
}

.hero-app-btn-img:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 8px 20px rgba(0, 35, 95, 0.2));
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 8px solid rgba(255, 255, 255, 0.9);
    background: #FFFFFF;
    transition: var(--transition-smooth);
}

.hero-image-frame:hover {
    transform: translateY(-5px) scale(1.01);
}

.hero-image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Floating Glass Cards */
.floating-glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    animation: floatAnimation 4s ease-in-out infinite alternate;
}

.floating-glass-card.top-right {
    top: 30px;
    right: -20px;
}

.floating-glass-card.bottom-left {
    bottom: 30px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.floating-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-vivid));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Trust Stats Bar */
.trust-stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 30;
}

.trust-stats-container {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 32px 40px;
    border: 1px solid var(--border-light);
}

.stat-item-box {
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid var(--border-light);
}

.stat-item-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Modern Section Titles */
.modern-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.modern-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-top: 12px;
    margin-bottom: 16px;
}

.modern-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* Luxury Category Cards & Grid */
.category-card-modern {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-cyan);
}

.category-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand-cyan-soft), #FFFFFF);
    border: 1px solid var(--brand-cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    transition: var(--transition-fast);
}

.category-card-modern:hover .category-icon-wrapper {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--brand-cyan-light), var(--brand-cyan-soft));
}

.category-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.category-meta-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-explore-btn {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-vivid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.category-card-modern:hover .category-explore-btn {
    color: var(--brand-primary);
    gap: 10px;
}

/* Modal Styling */
.modal-modern .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.modal-modern .modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 24px 30px;
    background: var(--bg-page);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.subcategory-chip-item {
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    transition: var(--transition-fast);
}

.subcategory-chip-item:hover {
    border-color: var(--brand-cyan);
    background: var(--brand-cyan-soft);
    transform: translateY(-2px);
}

.subcategory-chip-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 8px;
}

.subcategory-chip-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    display: block;
}

/* How It Works Timeline */
.how-it-works-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
}

.step-card-modern {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.step-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.step-number-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-vivid));
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 35, 95, 0.25);
}

.step-icon-box {
    font-size: 2.8rem;
    color: var(--brand-cyan);
    margin: 14px 0 16px 0;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.92rem;
    color: var(--text-body);
}

/* Founder's Value Props / Specialities */
.speciality-card-modern {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    height: 100%;
}

.speciality-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-cyan-light);
}

.speciality-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--brand-cyan-soft);
    border: 1px solid var(--brand-cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.speciality-icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.speciality-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.speciality-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

/* Membership & Perks Banner (Founder Addition) */
.membership-banner-card {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 60%, var(--brand-vivid) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.membership-banner-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(77, 184, 232, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.perk-pill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Provider Registration CTA */
.cta-provider-card {
    background: linear-gradient(135deg, #00235F 0%, #0B4EA2 100%);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.cta-provider-card h2 {
    color: #FFFFFF;
    font-size: 2.4rem;
    font-weight: 800;
}

.cta-provider-card p {
    color: var(--brand-cyan-soft);
    font-size: 1.1rem;
    max-width: 540px;
}

/* Testimonial Cards */
.testimonial-card-modern {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    margin: 10px;
    transition: var(--transition-smooth);
}

.testimonial-card-modern:hover {
    box-shadow: var(--shadow-hover);
}

.testimonial-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-cyan-light);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Accordion Modern */
.faq-accordion-modern .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--bg-surface);
}

.faq-accordion-modern .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--brand-primary);
    background: var(--bg-surface);
    padding: 20px 24px;
    box-shadow: none !important;
}

.faq-accordion-modern .accordion-button:not(.collapsed) {
    background: var(--brand-cyan-soft);
    color: var(--brand-primary);
}

.faq-accordion-modern .accordion-body {
    padding: 20px 24px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Newsletter Modern */
.newsletter-card-modern {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--brand-cyan-soft) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    border: 1px solid var(--brand-cyan-light);
    box-shadow: var(--shadow-card);
}

.newsletter-input-group {
    background: var(--bg-surface);
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
}

.newsletter-input-group input {
    border: none !important;
    box-shadow: none !important;
    padding: 12px 24px;
    font-size: 1rem;
    background: transparent;
    flex-grow: 1;
}

.newsletter-input-group button {
    border-radius: var(--radius-pill);
    padding: 12px 32px;
}

/* Modern Footer */
.modern-footer {
    background: #00173D;
    color: #94A3B8;
    padding-top: 80px;
    font-size: 0.92rem;
}

.modern-footer h5 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.modern-footer-link {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.modern-footer-link:hover {
    color: var(--brand-cyan-light);
    transform: translateX(3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 60px;
    font-size: 0.88rem;
}

/* ==========================================================================
   Navbar â€” Mobile-First Rebuild
   ========================================================================== */

/* Inner nav bar: Logo | Links (truly centered) | Actions — CSS Grid */
.modern-navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
}

/* LEFT: hamburger + logo */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}


/* Hamburger button â€” hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    gap: 5px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.nav-hamburger:hover {
    background: rgba(0, 35, 95, 0.06);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--brand-primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.modern-brand-logo img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* CENTER: desktop nav links */
.modern-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* RIGHT: lang + phone + CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}


.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-lang-btn:hover {
    border-color: var(--brand-cyan);
    background: var(--brand-cyan-soft);
}

.nav-lang-btn i {
    font-size: 1.1rem;
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    transition: var(--transition-fast);
}

.nav-phone-link:hover {
    border-color: var(--brand-cyan);
    background: var(--brand-cyan-soft);
    color: var(--brand-primary);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-vivid) 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 35, 95, 0.18);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 35, 95, 0.28);
    color: #FFFFFF !important;
}

/* Mobile full-width slide-down drawer */
.mobile-nav-drawer {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 35, 95, 0.12);
    z-index: 999;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: drawerSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-drawer ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.mobile-nav-drawer ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-heading);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.mobile-nav-drawer ul li a:hover,
.mobile-nav-drawer ul li a.active {
    color: var(--brand-primary);
    background: var(--brand-cyan-soft);
    border-left-color: var(--brand-primary);
    font-weight: 600;
}

/* Prevent body scroll when drawer open */
body.nav-open {
    overflow: hidden;
}

/* ==========================================================================
   Responsive Breakpoints — Desktop, Tablet, Mobile
   ========================================================================== */

/* ---- Tablet & small laptop (≤ 991px): Show hamburger, hide desktop links -- */
@media (max-width: 991px) {

    /* Switch grid → flex on mobile */
    .modern-navbar-inner {
        display: flex;
        justify-content: space-between;
    }

    .nav-left {
        justify-self: unset;
    }

    .nav-right {
        justify-self: unset;
    }

    .nav-hamburger {
        display: flex;
    }

    .modern-nav-links {
        display: none !important;
        /* hidden on mobile — links are in drawer */
    }

    .hero-section-wrapper {
        padding: 50px 0 60px 0;
    }

    .hero-title-main {
        font-size: 2.4rem;
    }

    .hero-subtitle-text {
        max-width: 100%;
    }

    .hero-app-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-image-frame img {
        height: 340px;
    }

    .floating-glass-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .floating-glass-card.top-right {
        top: 12px;
        right: 8px;
    }

    .floating-glass-card.bottom-left {
        bottom: 12px;
        left: 8px;
    }

    .floating-icon-box {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
        border-radius: 8px;
    }

    .trust-stats-container {
        padding: 24px 20px;
    }

    .stat-item-box {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 14px 8px;
    }

    .stat-item-box:last-child {
        border-bottom: none;
    }

    .modern-section-title {
        font-size: 1.9rem;
    }

    .membership-banner-card,
    .cta-provider-card,
    .newsletter-card-modern {
        padding: 36px 24px;
    }

    .perk-pill-item {
        font-size: 0.88rem;
        padding: 10px 16px;
    }
}

/* ---- Mobile (â‰¤ 576px): Small phones full overhaul ---- */
@media (max-width: 576px) {

    /* Navbar tighter */
    .modern-navbar-inner {
        height: 64px;
    }

    .mobile-nav-drawer {
        top: 64px;
    }

    .modern-brand-logo img {
        max-height: 34px;
    }

    .nav-lang-btn span {
        display: none;
        /* show icon only on very small */
    }

    .nav-cta-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    /* Hero */
    .hero-section-wrapper {
        padding: 32px 0 44px 0;
        text-align: left;
    }

    .hero-title-main {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-subtitle-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .badge-pill-cyan {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    .hero-app-btn-img {
        height: 42px;
    }

    .btn-primary-brand {
        padding: 11px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-image-frame img {
        height: 220px;
    }

    .floating-glass-card {
        position: static;
        display: flex;
        margin-top: 10px;
        width: 100%;
        animation: none;
    }

    /* Trust stats 2-col grid */
    .trust-stats-container {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Section titles */
    .modern-section-title {
        font-size: 1.5rem;
    }

    .modern-section-subtitle {
        font-size: 0.92rem;
    }

    /* Category cards â€” 1 col */
    .category-card-modern {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .category-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    /* Steps */
    .step-card-modern {
        padding: 28px 18px;
    }

    .step-icon-box {
        font-size: 2.2rem;
    }

    /* Specialities: stack icon + text */
    .speciality-card-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* Membership banner */
    .membership-banner-card,
    .cta-provider-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .membership-banner-card h2,
    .cta-provider-card h2 {
        font-size: 1.5rem;
    }

    .perk-pill-item {
        width: 100%;
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    /* Newsletter */
    .newsletter-card-modern {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 10px;
    }

    .newsletter-input-group input {
        background: #FFFFFF !important;
        border: 1.5px solid var(--border-light) !important;
        border-radius: var(--radius-pill) !important;
        width: 100%;
        padding: 13px 20px;
    }

    .newsletter-input-group button {
        width: 100%;
        padding: 13px 20px;
        justify-content: center;
    }

    /* Subcategory modal */
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Testimonial */
    .testimonial-card-modern {
        padding: 22px 18px;
        margin: 4px;
    }

    /* FAQ */
    .faq-accordion-modern .accordion-button {
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    /* Footer */
    .modern-footer {
        padding-top: 44px;
        text-align: left;
    }

    .footer-bottom-bar {
        margin-top: 36px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ---- Extra small (â‰¤ 375px) ---- */
@media (max-width: 375px) {
    .hero-title-main {
        font-size: 1.5rem;
    }

    .nav-cta-btn {
        display: none;
        /* very tiny â€” contact is in drawer */
    }
}