/* ── FONTS ── */
/* Cormorant Garamond: display headings */
/* DM Sans: body, subheadings, UI */

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

:root {
    /* Primary Colors */
    --primary: #024751;
    --primary-color: #024751;
    --accent-color: #ff5416;
    --accent: #ff5416;

    /* Status Colors */
    --success-color: #4caf50;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --info: #2196f3;

    /* Neutral Colors */
    --light-bg: #f8fafb;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

body {
    overscroll-behavior: none;
}

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header/Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    min-height: 74px;
    overflow: visible;
    display: block;
}

/* Spacer for pages where content starts directly after fixed header */
.header-spacer {
    height: 74px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 32px;
    width: auto;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.mobile-menu-actions {
    display: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* CTA Buttons */
.cta-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: white;
}

.cta-btn.primary:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 71, 81, 0.3);
}

.cta-btn.secondary {
    background: var(--accent-color);
    color: white;
}

.cta-btn.secondary:hover {
    background: #e63f0f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.3);
}

.cta-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    background: #024751;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 84, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(11, 201, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q150,40 300,64 T600,64 T900,64 T1200,64 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/><path d="M0,80 Q200,60 400,80 T800,80 T1200,80 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)" style="animation: wave 20s linear infinite;"/></svg>');
    background-repeat: repeat-x;
    background-size: 1200px 120px;
    background-position: 0 0;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1), transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section headings ── */
.services h2,
.how-it-works h2,
.pricing h2,
.newsletter h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 3.2rem !important;
    line-height: 1.15;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #666;
    font-size: 1.15rem !important;
}

/* ── Service card enhanced hover ── */
.service-card {
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 60px rgba(2,71,81,0.14) !important;
}

/* ── Step cards hover ── */
.step {
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.step:hover {
    transform: translateY(-6px);
}
.step:hover .step-icon-wrap {
    box-shadow: 0 12px 32px rgba(2,71,81,0.2);
}

/* ── Testimonial cards ── */
.testimonial-card {
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s cubic-bezier(0.22,1,0.36,1) !important;
}
.testimonial-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.1) !important;
}

/* ── CTA buttons shimmer ── */
.cta-btn.primary {
    position: relative;
    overflow: hidden;
}
.cta-btn.primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.cta-btn.primary:hover::after {
    left: 140%;
}

/* ── Hero highlight animated underline ── */
.hero-highlight {
    position: relative;
    display: inline-block;
    color: #7dd8dc;
}
.hero-highlight::after {
    display: none;
}

/* Hero h1 line breaks */
.hero-br         { display: block; }  /* desktop: break after "Cleaning" */
.hero-br-mobile  { display: none; }   /* mobile: break after "Professional" */
.hero-br-mobile-2{ display: none; }   /* mobile: break after "for a" */
@media (max-width: 768px) {
    .hero-br          { display: none; }
    .hero-br-mobile   { display: block; }
    .hero-br-mobile-2 { display: block; }
}

/* ── Nav smooth scroll shrink ── */
.header {
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
    box-shadow: 0 2px 24px rgba(2,71,81,0.1);
}

/* ── Nav links smooth underline ── */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
    transition: width 0.25s cubic-bezier(0.22,1,0.36,1);
}
.nav-link:hover::after { width: 100%; }

/* ── Pricing item hover ── */
.pricing-item {
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease !important;
}
.pricing-item:hover {
    transform: translateX(4px) !important;
}

/* ── FAQ hover — handled in FAQ section CSS ── */

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* .hero-overlay base — overridden by Hero v3 section below */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 760px;
    color: white;
    text-align: center;
    padding: 74px 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0s both;
    font-family: 'DM Sans', sans-serif;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-1px);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 0.78rem;
}

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

.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.6rem;
    line-height: 1.12;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.5px;
    animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.1s both;
    max-width: 680px;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    color: #7dd8dc;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.2rem;
    line-height: 1.75;
    max-width: 560px;
    font-weight: 400;
    animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.22s both;
    font-family: 'DM Sans', sans-serif;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    animation: heroFadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.48s both;
    flex-wrap: wrap;
    font-family: 'DM Sans', sans-serif;
}

.hero-trust i {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.hero-trust .trust-dot {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll-hint i {
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

.hero .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.hero .cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e64a0e 100%);
    box-shadow: 0 8px 28px rgba(255, 84, 22, 0.38);
    color: white;
}

.hero .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 84, 22, 0.48);
}

.hero .cta-btn.primary:active {
    transform: translateY(-1px);
}

.cta-btn.outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2.5px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn.outline:hover {
    background: white;
    color: var(--accent-color);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.cta-btn.outline:active {
    transform: translateY(-2px);
}

.trust-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeIn 1s ease-out 0.4s both;
}

.availability {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.availability i {
    color: var(--accent-color);
    margin-right: 0;
    font-size: 1.05rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
}

.trust-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.trust-badges span:hover {
    color: white;
    transform: translateX(4px);
}

.trust-badges i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        padding: 0;
    }

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

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 560px;
        padding: 0;
        align-items: flex-end;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(2, 71, 81, 0.3) 40%,
            rgba(0, 0, 0, 0.82) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 2rem 1.5rem 3rem;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.1rem;
        display: inline-flex;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.18;
        margin-bottom: 1rem;
        text-align: center;
        word-break: normal;
        overflow-wrap: normal;
        max-width: 100%;
    }

    .hero-description {
        display: block;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
        color: rgba(255,255,255,0.78);
        max-width: 340px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .hero .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.97rem;
        border-radius: 50px;
    }

    .hero-trust {
        display: none;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hero::after {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100svh;
        min-height: 560px;
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: relative;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(2, 71, 81, 0.2) 35%,
            rgba(0, 0, 0, 0.88) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.25rem 2.75rem;
        text-align: left;
    }

    .hero-badge {
        display: inline-flex;
        font-size: 0.67rem;
        padding: 0.38rem 0.85rem;
        margin-bottom: 0.9rem;
        letter-spacing: 0.3px;
    }

    .hero-content h1 {
        font-size: 1.55rem;
        line-height: 1.3;
        margin-bottom: 0.7rem;
        font-weight: 800;
        letter-spacing: -0.3px;
        color: white;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        text-align: left;
    }

    .hero-description {
        display: none;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 0;
        align-items: stretch;
    }

    .hero .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.95rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.1px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero .cta-btn.primary {
        background: linear-gradient(135deg, #ff5416 0%, #e64a0e 100%);
        box-shadow: 0 6px 20px rgba(255, 84, 22, 0.4);
        color: white;
    }

    .hero .cta-btn.primary:active {
        transform: scale(0.98);
        box-shadow: 0 3px 10px rgba(255, 84, 22, 0.3);
    }

    .hero .cta-btn.outline {
        background: rgba(255, 255, 255, 0.1);
        border: 1.5px solid rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: white;
    }

    .hero .cta-btn.outline:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
    }

    .hero-trust {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }

    .availability {
        display: none;
    }

    .trust-section {
        display: none;
    }

    .trust-badges {
        display: none;
    }

    .hero::after {
        display: none;
    }
}

/* ── Hero v3: Editorial Clean ── */

/* Override base hero to remove old ::after wave */
.hero::after { display: none; }
.hero::before { display: none; }

/* Overlay: centered vignette — darker top/bottom, lighter mid for video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(2,71,81,0.35) 40%,
            rgba(0,0,0,0.70) 100%),
        radial-gradient(ellipse at center,
            transparent 30%,
            rgba(0,0,0,0.40) 100%);
    z-index: 2;
}

/* Layout wrapper: centered */
.hero-layout {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content block — centered */
.hero-main {
    position: relative;
    max-width: 680px;
    width: 100%;
    padding-top: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* No accent bar for centered layout */
.hero-main::before { display: none; }

/* Tag / eyebrow */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7dd8dc;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}

.hero-tag-line {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: #0bc9d0;
    border-radius: 1px;
    flex-shrink: 0;
}

/* Headline */
.hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: white;
    text-align: center;
    margin: 0 0 1.4rem 0;
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.hero-heading em {
    font-style: italic;
    color: #7dd8dc;
    font-weight: 700;
}

/* Description */
.hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin: 0 0 2.2rem 0;
    max-width: 460px;
    text-align: center;
    font-weight: 400;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

/* CTA row */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.42s both;
}

/* Primary button */
.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, background 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.hbtn-fill {
    padding: 0.88rem 2rem;
    background: #ff5416;
    color: white;
    box-shadow: 0 6px 24px rgba(255,84,22,0.4);
    position: relative;
    overflow: hidden;
}

.hbtn-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.hbtn-fill:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,84,22,0.52);
    color: white;
    text-decoration: none;
    background: #e64a0e;
}

.hbtn-fill:active { transform: translateY(-1px); }

.hbtn-ghost {
    padding: 0.86rem 1.8rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
}

.hbtn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.hbtn-ghost i {
    font-size: 0.78rem;
    transition: transform 0.22s ease;
}
.hbtn-ghost:hover i { transform: translateX(4px); }

/* Stats strip */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}

.hstat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 1.8rem;
}

.hstat-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hstat-val .fa-star {
    font-size: 0.8rem;
    color: #fbbf24;
}

.hstat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hstat-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    margin-right: 1.8rem;
    flex-shrink: 0;
}

/* Scroll line indicator */
.hero-scroll-line-wrap {
    position: absolute;
    bottom: 2.5rem;
    right: 6%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll-line-bar {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    border-radius: 1px;
    animation: scrollLineGrow 2s ease-in-out infinite;
}

@keyframes scrollLineGrow {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Hero v3 Responsive ── */
@media (max-width: 1024px) {
    .hero-layout { padding: 0 4% 0 5%; }
    .hero-heading { font-size: 4.4rem; }
    .hero-main { max-width: 520px; }
}

@media (max-width: 768px) {
    .hero-layout { padding: 0 1.5rem; }
    .hero-main { max-width: 100%; }
    .hero-heading {
        font-size: 3.4rem;
        letter-spacing: -0.8px;
    }
    .hero-sub { max-width: 360px; }
    .hero-ctas { justify-content: center; }
    .hero-stats { display: none !important; }
    .hero-scroll-line-wrap { display: none; }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.7rem;
        letter-spacing: -0.5px;
    }
    .hero-tag { font-size: 0.65rem; letter-spacing: 1.5px; }
    .hero-sub { font-size: 0.92rem; max-width: 300px; }
    .hbtn {
        font-size: 0.88rem;
        padding: 0.82rem 1.5rem;
    }
    .hbtn-fill { padding: 0.82rem 1.5rem; }
    .hero-ctas { gap: 0.75rem; }
    .hero-stats { gap: 0; }
    .hstat-val { font-size: 1.05rem; }
}

/* Social Proof Strip */
.social-proof-strip {
    background: var(--primary-color);
    padding: 2.5rem 0;
}

.proof-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.metric-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.metric strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: 'Segoe UI', sans-serif;
}

.metric span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 3.5rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- Service Card --- */
.service-card {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #e8ecef;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Colored top accent bar */
.service-card-accent {
    height: 5px;
    background: var(--primary-color);
    width: 100%;
    flex-shrink: 0;
}

.service-card.featured .service-card-accent {
    background: linear-gradient(90deg, var(--accent-color), #ff7043);
}

.service-card.featured {
    border-color: rgba(255,84,22,0.25);
    box-shadow: 0 4px 24px rgba(255,84,22,0.1);
}

.service-card.featured:hover {
    box-shadow: 0 18px 48px rgba(255,84,22,0.18);
}

/* "Most Popular" badge */
.service-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.2px;
}

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

/* Card inner padding */
.service-card-inner {
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Top row: number + icon */
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.service-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: #c8d4d6;
    letter-spacing: 1px;
    font-family: monospace;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f0f8f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-color);
    transition: background 0.2s ease;
}

.service-card.featured .service-icon-wrap {
    background: #fff3ee;
    color: var(--accent-color);
}

.service-card:hover .service-icon-wrap {
    background: #e0f2f4;
}

.service-card.featured:hover .service-icon-wrap {
    background: #ffe8df;
}

/* Title */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    line-height: 1.25;
}

/* Description */
.service-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Feature list */
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #555;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.service-card.featured .service-features i {
    color: var(--accent-color);
}

/* Footer: duration pill + CTA */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f4f8f9;
    color: #666;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.duration-pill i {
    color: var(--primary-color);
    font-size: 0.72rem;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.service-cta-btn:hover {
    background: #035f6e;
    transform: translateX(2px);
}

.service-cta-btn.featured-cta {
    background: var(--accent-color);
}

.service-cta-btn.featured-cta:hover {
    background: #e64a0e;
}

.service-cta-btn i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.service-cta-btn:hover i {
    transform: translateX(3px);
}

.price {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.price strong {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.services-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Extra Services */
.extra-services {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.extra-services h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.extra-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.extra-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.extra-item i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 3.5rem 0;
    background: #f3f8f9;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    z-index: 0;
}

.step {
    text-align: center;
    background: #f8fafb;
    border-radius: 16px;
    padding: 2rem 1.25rem 1.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(2, 71, 81, 0.1);
    border-color: var(--primary-color);
    background: white;
}

.step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.step-icon {
    position: absolute;
    bottom: -4px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.core-values {
    margin-top: 3rem;
}

.core-values h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.1);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.value-item span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--accent-color), #ff7a4a);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 3.5rem 0;
    background: linear-gradient(160deg, #f3f8f9 0%, #eef5f6 100%);
}

/* Header — centered */
.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.testimonials-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(2.6rem, 4vw, 3.4rem) !important;
    font-weight: 700;
    color: #0e1e22;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 0.1rem;
}

.testimonials-header h2 em {
    font-style: italic;
    color: var(--primary-color);
}

.testimonials-rating-summary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f9fafb;
    border: 1px solid #e8ecef;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    flex-shrink: 0;
}

.testimonials-rating-summary .rating-stars {
    display: flex;
    gap: 0.15rem;
    color: #f59e0b;
    font-size: 0.8rem;
}

.rating-score {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
}

.rating-max {
    font-size: 0.8rem;
    font-weight: 500;
    color: #aaa;
}

.rating-count {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
}

/* Dot indicators — hidden on desktop */
.testimonial-dots {
    display: none;
}

/* Cards grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

.testimonial-card {
    background: #fff;
    border: 1.5px solid #e8ecef;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    border-color: #d0e8eb;
}

.testimonial-quote-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    opacity: 0.18;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 0.82rem;
}

.testimonial-text {
    color: #444;
    font-size: 0.93rem;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0b9fa8);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-info strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-info span {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-info span i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

/* Pricing Section */
.pricing {
    padding: 3.5rem 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Pricing Accordion */
.pricing-accordion {
    margin-top: 3rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}

.pricing-item.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(2, 71, 81, 0.12);
}

.pricing-item.featured:hover {
    box-shadow: 0 12px 40px rgba(2, 71, 81, 0.18);
}

/* Top-right "Most Popular" ribbon */
.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.35rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 1;
    letter-spacing: 0.3px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 2rem;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease;
    user-select: none;
    gap: 1.5rem;
}

.pricing-header:hover {
    background: #f8fafb;
}

.pricing-title {
    flex: 1;
    min-width: 0;
}

.pricing-title h3 {
    margin: 0 0 0.35rem 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-duration {
    color: #888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.pricing-price {
    text-align: right;
}

.pricing-price strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.1;
}

.pricing-price .per-session {
    font-size: 0.75rem;
    color: #aaa;
    font-weight: 400;
}

.toggle-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.7;
}

.pricing-item.open .toggle-icon {
    transform: rotate(180deg);
}

.pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.pricing-item.open .pricing-content {
    max-height: 1200px;
}

.pricing-description {
    padding: 0 2rem 2rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pricing-description p {
    margin: 0 0 1.25rem 0;
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.97rem;
}

.pricing-description h4 {
    color: var(--primary-color);
    margin: 0 0 0.85rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.pricing-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-description li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-description li i {
    color: var(--accent-color);
    font-size: 0.82rem;
    flex-shrink: 0;
    margin-top: 0.22rem;
}

.pricing-cta-btn {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.pricing-cta-btn:hover {
    background: #e64a13;
    transform: translateY(-1px);
}

.pricing-footer-note {
    text-align: center;
    margin-top: 2rem;
    color: #999;
    font-size: 0.88rem;
}

.pricing-footer-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.pricing-footer-note a:hover {
    color: var(--accent-color);
}

/* Table styles (for backward compatibility) */
table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: var(--light-bg);
}

table th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

table tr:hover {
    background: var(--light-bg);
}

.featured-row {
    background: #fff5f0;
}

/* ── FAQ Section — Redesigned ── */
/* ── FAQ Section — Redesigned ── */
.faq {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(160deg, #f3f8f9 0%, #eef5f6 100%);
    position: relative;
    overflow: hidden;
}

/* Large decorative watermark */
.faq-watermark {
    position: absolute;
    top: -0.15em;
    right: -0.05em;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(9rem, 20vw, 18rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(2, 71, 81, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}

/* Editorial top split */
.faq-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dce8ea;
}

.faq-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0bc9d0;
    margin-bottom: 0.6rem;
}

.faq h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(2.6rem, 4vw, 3.4rem) !important;
    font-weight: 700;
    color: #0e1e22;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.01em;
}

.faq h2 em {
    font-style: italic;
    color: var(--primary-color);
}

.faq-top-right {
    padding-bottom: 0;
    border-left: 1px solid #e8eef0;
    padding-left: 2.5rem;
}

.faq-top-right p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: #7a8a8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(2,71,81,0.25);
    padding-bottom: 2px;
    transition: gap 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-contact-link:hover {
    gap: 0.85rem;
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* Full-width accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid #dce8ea;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #dce8ea;
}

.faq-item.open {
    background: rgba(2, 71, 81, 0.04);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.faq-item.open::before {
    transform: scaleY(1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0.5rem 1rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.faq-q {
    flex: 1;
    font-size: 0.97rem;
    font-weight: 600;
    color: #1a2a2c;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.faq-item.open .faq-q {
    color: var(--primary-color);
}

/* Animated plus/minus toggle */
.faq-toggle {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d6e0e2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-toggle span {
    position: absolute;
    background: #8a9ea1;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
}

/* Horizontal bar */
.faq-toggle span:first-child {
    width: 14px; height: 2px;
}

/* Vertical bar */
.faq-toggle span:last-child {
    width: 2px; height: 14px;
}

.faq-item.open .faq-toggle {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-item.open .faq-toggle span {
    background: white;
}

.faq-item.open .faq-toggle span:last-child {
    transform: rotate(90deg) scaleY(0);
}

.faq-trigger:hover .faq-toggle {
    border-color: var(--primary-color);
    background: rgba(2,71,81,0.06);
}

.faq-trigger:hover .faq-toggle span {
    background: var(--primary-color);
}

.faq-item.open .faq-trigger:hover .faq-toggle {
    background: #033a42;
    border-color: #033a42;
}

.faq-item.open .faq-trigger:hover .faq-toggle span {
    background: white;
}

/* Body */
.faq-body {
    overflow: hidden;
    height: 0;
    transition: height 0.4s cubic-bezier(0.22,1,0.36,1);
}

.faq-body p {
    padding: 0 3rem 1.2rem 1.2rem;
    color: #637a7e;
    font-size: 0.92rem;
    line-height: 1.75;
    font-family: 'DM Sans', sans-serif;
}

/* Bottom trust bar */
.faq-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    border: 1px solid #dce8ea;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(2,71,81,0.03);
}

.faq-trust-pill i {
    font-size: 0.75rem;
    color: #0bc9d0;
}

/* Responsive */
@media (max-width: 860px) {
    .faq-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .faq-top-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e8eef0;
        padding-top: 1rem;
    }
}

@media (max-width: 600px) {
    .faq { padding: 3rem 0 2.5rem; }
    .faq h2 { font-size: 2.2rem !important; }
    .faq-trigger { padding: 0.85rem 0.5rem 0.85rem 0.8rem; }
    .faq-q { font-size: 0.9rem; }
    .faq-body p { padding: 0 1rem 0.9rem 0.8rem; }
}

/* ── CTA Final Section — Redesigned ── */
.cta-final {
    position: relative;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #011e23 0%, #024751 50%, #012830 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Canvas particles */
.cta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

/* Shimmer sweep */
.cta-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
    animation: ctaShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating ambient orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-orb-a {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(11,201,208,0.18), transparent 70%);
    top: -80px; right: -60px;
    animation: ctaOrbFloat 9s ease-in-out infinite;
}
.cta-orb-b {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,84,22,0.12), transparent 70%);
    bottom: -60px; left: -40px;
    animation: ctaOrbFloat 11s ease-in-out infinite reverse;
}
.cta-orb-c {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(11,201,208,0.1), transparent 70%);
    top: 50%; left: 10%;
    animation: ctaOrbFloat 13s ease-in-out infinite;
}

@keyframes ctaOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-24px) scale(1.06); }
}

/* Glass card wrapper (gradient border) */
.cta-card-wrap {
    position: relative;
    z-index: 10;
    max-width: 780px;
    width: 100%;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);

    /* Entrance animation */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.cta-card-wrap.cta-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass card inner */
.cta-card {
    background: rgba(2, 71, 81, 0.38);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 30px;
    padding: 4rem 3.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Sparkle icon ring */
.cta-icon-ring {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #7dd8dc;
    margin-bottom: 1.8rem;
    animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(11,201,208,0.3); }
    50%       { box-shadow: 0 0 0 12px rgba(11,201,208,0); }
}

/* Heading */
.cta-heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
    margin: 0 0 1.2rem 0;

    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s;
}
.cta-card-wrap.cta-visible .cta-heading {
    opacity: 1;
    transform: translateY(0);
}

.cta-heading em {
    font-style: italic;
    color: #7dd8dc;
}

/* Subtitle */
.cta-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin: 0 0 2.4rem 0;
    max-width: 480px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.28s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.28s;
}
.cta-card-wrap.cta-visible .cta-sub {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons row */
.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;

    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s, transform 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.cta-card-wrap.cta-visible .cta-btns {
    opacity: 1;
    transform: translateY(0);
}

.cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    background: #ff5416;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(255,84,22,0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease;
}
.cta-btn-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.cta-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(255,84,22,0.55);
    color: white;
    text-decoration: none;
}
.cta-btn-main:active { transform: scale(0.98); }

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.93rem 2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px) scale(1.02);
    color: white;
    text-decoration: none;
}
.cta-btn-outline:active { transform: scale(0.98); }

/* Email link */
.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;

    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.52s, color 0.2s ease;
}
.cta-card-wrap.cta-visible .cta-email {
    opacity: 1;
}
.cta-email:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
.cta-email i { font-size: 0.78rem; }

/* Responsive */
@media (max-width: 768px) {
    .cta-final { padding: 5rem 1.2rem; }
    .cta-card { padding: 2.8rem 1.8rem; }
    .cta-heading { font-size: 3.3rem !important; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btn-main, .cta-btn-outline { justify-content: center; }
}

@media (max-width: 480px) {
    .cta-heading { font-size: 2.85rem !important; letter-spacing: -0.5px; }
    .cta-sub { font-size: 0.92rem; }
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 1.25rem !important;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ====================================================
   HAMBURGER MENU
   ================================================== */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    align-items: center;
    justify-content: center;
}

.hamburger-svg {
    width: 28px;
    height: 28px;
    color: #024751;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    display: block;
}

.hamburger.active .hamburger-svg {
    transform: rotate(-45deg);
}

.hamburger-path-top {
    stroke-dasharray: 12 63;
    transition: stroke-dasharray 0.5s cubic-bezier(0.76, 0, 0.24, 1),
                stroke-dashoffset 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.hamburger.active .hamburger-path-top {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42px;
}

/* ====================================================
   MOBILE DRAWER
   ================================================== */

.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
}

.mobile-drawer.open {
    pointer-events: all;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 71, 81, 0.4);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 82%;
    max-width: 300px;
    background: white;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.18);
}

.mobile-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.4rem;
    border-bottom: 1px solid #f0f0f0;
    min-height: 64px;
    flex-shrink: 0;
}

.drawer-brand {
    font-size: 0.7rem;
    font-weight: 800;
    color: #024751;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #024751;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
    flex-shrink: 0;
}

.drawer-close:hover {
    background: #eaeaea;
    transform: rotate(90deg);
}

.drawer-nav {
    flex: 1;
    padding: 0.75rem 0;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, font-weight 0.2s ease;
    opacity: 0;
    transform: translateX(16px);
}

.mobile-drawer.open .drawer-link {
    animation: drawerLinkIn 0.35s ease forwards;
}
.mobile-drawer.open .drawer-link:nth-child(1) { animation-delay: 0.10s; }
.mobile-drawer.open .drawer-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-drawer.open .drawer-link:nth-child(3) { animation-delay: 0.20s; }
.mobile-drawer.open .drawer-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-drawer.open .drawer-link:nth-child(5) { animation-delay: 0.30s; }

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

.drawer-link:hover,
.drawer-link.active {
    color: #024751;
    border-left-color: #ff5416;
    background: #f5fafa;
    font-weight: 600;
}

.drawer-actions {
    padding: 1.25rem 1.4rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}

.mobile-drawer.open .drawer-actions {
    opacity: 1;
    transform: translateY(0);
}

.drawer-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ff5416;
    color: white;
    padding: 0.875rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(255, 84, 22, 0.3);
}

.drawer-btn-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 84, 22, 0.45);
    color: white;
}

.drawer-login-wrap {
    position: relative;
    display: flex;
}

.drawer-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background: #f0f0f0;
    color: #aaa;
    padding: 0.875rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: default;
}

.drawer-soon-tag {
    position: absolute;
    top: -9px;
    right: -4px;
    background: #024751;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* ====================================================
   STANDARDIZED UI COMPONENTS
   ================================================== */

/* ---- BUTTONS ---- */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover:not(:disabled) {
    background: #033a42;
    border-color: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 71, 81, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.btn-success:hover:not(:disabled) {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Danger Button */
.btn-danger {
    background: #f44336;
    color: white;
    border: 2px solid #f44336;
}

.btn-danger:hover:not(:disabled) {
    background: #da190b;
    border-color: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Warning Button */
.btn-warning {
    background: #ff9800;
    color: white;
    border: 2px solid #ff9800;
}

.btn-warning:hover:not(:disabled) {
    background: #e68900;
    border-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Info Button */
.btn-info {
    background: #2196f3;
    color: white;
    border: 2px solid #2196f3;
}

.btn-info:hover:not(:disabled) {
    background: #0b7dda;
    border-color: #0b7dda;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Small Button */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Large Button */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Block Button */
.btn-block {
    display: block;
    width: 100%;
}

/* ---- MODALS ---- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ---- ALERTS & MESSAGES ---- */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    color: #28a745;
}

.alert-error,
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i,
.alert-danger i {
    color: #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-warning i {
    color: #ffc107;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-info i {
    color: #17a2b8;
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: inherit;
    margin-left: auto;
    padding: 0;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 0.7;
}

/* ---- LOADING SPINNER ---- */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 15px;
}

.loading-state.hidden {
    display: none;
}

.loading-state p {
    color: var(--text-light);
    font-weight: 500;
}

/* Small Spinner */
.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

/* Large Spinner */
.spinner-lg {
    width: 60px;
    height: 60px;
    border-width: 5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 71, 81, 0.1);
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

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

.form-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-help-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ---- CARDS ---- */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 0 0 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.card-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.card-body {
    margin-bottom: 15px;
}

.card-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.card-success {
    background: #d4edda;
    border-color: #c3e6cb;
}

.card-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.card-warning {
    background: #fff3cd;
    border-color: #ffeeba;
}

.card-info {
    background: #d1ecf1;
    border-color: #bee5eb;
}

/* ---- BADGES ---- */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-danger {
    background: #f44336;
    color: white;
}

.badge-warning {
    background: #ff9800;
    color: white;
}

.badge-info {
    background: #2196f3;
    color: white;
}

/* ---- HIDDEN CLASS ---- */
.hidden {
    display: none !important;
}

/* ---- VISIBILITY HELPERS ---- */
.show {
    display: block !important;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* ---- TEXT UTILITIES ---- */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--text-light);
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: #f44336;
}

.text-warning {
    color: #ff9800;
}

.text-info {
    color: #2196f3;
}

.text-primary {
    color: var(--primary-color);
}

/* ---- SPACING UTILITIES ---- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

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

    .hero {
        min-height: 550px;
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-badges span {
        font-size: 0.8rem;
    }

    .metric strong {
        font-size: 1.5rem;
    }

    .metric span {
        font-size: 0.7rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .value-item {
        padding: 1.25rem;
    }

    .value-item i {
        font-size: 1.8rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-buttons .cta-btn {
        padding: 0.85rem 2rem;
        width: 100%;
    }

    .logo img {
        height: 28px;
    }

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

    .steps-grid::before {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Carousel mode on mobile */
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 100%;
        width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .testimonial-card:last-child {
        grid-column: unset;
        max-width: unset;
        margin: 0;
        width: 100%;
    }

    /* Dot indicators */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 1.25rem;
    }

    .testimonial-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #c8dde0;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .testimonial-dot.active {
        background: var(--primary-color);
        transform: scale(1.25);
    }

    .testimonials {
        padding: 2.5rem 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 1.8rem;
    }

    .testimonials-header .faq-eyebrow {
        font-size: 0.52rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .testimonials-header h2 {
        font-size: 1.9rem !important;
    }

    .service-card-inner {
        padding: 1.25rem;
    }

    .service-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .service-cta-btn {
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-image .image-placeholder {
        height: 250px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        min-width: auto;
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Pricing accordion mobile styles */
    .pricing-item {
        margin-bottom: 0.75rem;
    }

    .pricing-header {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .pricing-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .pricing-price {
        text-align: left;
    }

    .pricing-price strong {
        font-size: 1.4rem;
    }

    .pricing-title h3 {
        font-size: 1.1rem;
    }

    .pricing-description {
        padding: 1.25rem 1rem 1.5rem;
    }

    .pricing-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.9rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
        min-height: 54px;
    }

    .header-spacer {
        height: 54px;
    }

    .nav-wrapper {
        padding: 0.6rem 0;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        color: var(--text-dark);
        font-weight: 500;
        display: block;
    }

    .nav-link:hover {
        background: var(--light-bg);
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-drawer {
        display: block;
    }

    .mobile-menu-actions {
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-top: 1px solid #f0f0f0;
        margin-top: 10px;
    }

    .mobile-menu-actions .cta-btn {
        padding: 10px 15px !important;
        font-size: 13px !important;
        border-radius: 6px;
    }

    .cta-btn.large {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 560px;
        padding: 0;
        align-items: flex-end;
    }

    .hero-actions {
        margin-bottom: 1.25rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .trust-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .availability {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .trust-badges {
        gap: 0.5rem;
    }

    .trust-badges span {
        font-size: 0.7rem;
    }

    .social-proof-strip {
        padding: 1.75rem 0;
    }

    .metric strong {
        font-size: 1.4rem;
    }

    .metric span {
        font-size: 0.62rem;
    }

    .metric {
        padding: 0.5rem 0.5rem;
    }

    .metric-divider {
        height: 44px;
    }

    .metric-icon {
        font-size: 0.9rem;
    }

    .service-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-features li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 0.75rem 0;
        padding-top: 0.5rem;
    }

    .duration {
        font-size: 0.75rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .price strong {
        font-size: 1rem;
    }

    .extra-item {
        font-size: 0.8rem;
    }

    .extra-item i {
        font-size: 1.4rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .step {
        padding: 1.25rem 0.85rem 1.1rem;
        border-radius: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .step-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .step h3 {
        font-size: 0.88rem;
    }

    .step p {
        font-size: 0.75rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.85rem;
    }

    .core-values h3 {
        font-size: 1.2rem;
    }

    .value-item {
        padding: 0.85rem;
    }

    .value-item i {
        font-size: 1.5rem;
        margin-bottom: 0.35rem;
    }

    .value-item span {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.88rem;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.5rem 0.3rem;
    }

    table th {
        font-size: 0.75rem;
    }

    .cta-final h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .cta-final p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .final-cta-buttons {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .final-cta-buttons .cta-btn.large {
        padding: 0.8rem 1rem;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .newsletter h2 {
        font-size: 1.4rem;
    }

    .newsletter p {
        font-size: 0.9rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-col p {
        font-size: 0.8rem;
    }

    .footer-col ul li {
        margin-bottom: 0.3rem;
    }

    .social-links {
        gap: 0.6rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .services h2,
    .how-it-works h2,
    .about h2,
    .pricing h2,
    .newsletter h2 {
        font-size: 2rem !important;
        margin-bottom: 0.35rem;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 0.75rem;
    }

}

/* ====================================================
   BECOME A CLEANING CUSTODIAN PAGE STYLES
   ================================================== */

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo img {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.25rem;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu .btn {
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

/* Hero Banner */
.cc-hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 50%, #0a9bb5 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cc-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-repeat: repeat-x;
    background-size: 1200px 200px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    opacity: 0.95;
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    opacity: 0.9;
}

/* Why Join Section */
.why-join-cc {
    padding: 5rem 0;
    background: white;
}

.why-join-cc h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Application Section */
.cc-application {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f8fafb);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.cc-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.section-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 71, 81, 0.1);
    background: #f8fafb;
}

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

.form-group input[type="file"] {
    padding: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: #f8fafb;
}

.file-help-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-style: italic;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: var(--light-bg);
}

.checkbox-label.large {
    font-weight: 500;
    gap: 1rem;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.label-text {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.terms-checkbox {
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 71, 81, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-help-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Success Container */
.success-container {
    display: none;
}

.success-container.show {
    display: block;
}

.success-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.success-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.success-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.success-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.success-details i {
    color: #4caf50;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.success-content .btn {
    margin-top: 2rem;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-icon {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.75rem 0;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cc-hero-banner {
        padding: 3rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-icon {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

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

    .cc-form {
        padding: 1.5rem;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .why-join-cc h2,
    .form-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cc-hero-banner {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .cc-form {
        padding: 1rem;
    }

    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .success-content {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .success-content h3 {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====================================================
   ADMIN LOGIN PAGE STYLES
   ================================================== */

.admin-login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 100%);
}

.admin-login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.admin-login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

/* Branding Section */
.login-branding {
    background: linear-gradient(135deg, var(--primary-color) 0%, #066b7e 100%);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.login-branding::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.brand-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.brand-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.login-branding h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-branding p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
}

.feature i {
    font-size: 1.5rem;
}

.feature span {
    font-size: 0.95rem;
}

/* Login Form Section */
.login-form-wrapper {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-color);
}

.form-group input {
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 71, 81, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    flex: 1;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.login-btn {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.login-btn:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 71, 81, 0.3);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.google-signin-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.google-signin-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.google-signin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.google-signin-btn i {
    color: #4285F4;
}

/* Message Displays */
.error-message,
.success-message,
.loading-message {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #66bb6a;
}

.success-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.loading-message {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #42a5f5;
}

.loading-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.login-footer p {
    margin: 0;
    color: var(--text-light);
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--accent-color);
}

.security-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.security-notice i {
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-notice p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-login-container {
        grid-template-columns: 1fr;
    }

    .login-branding {
        padding: 2rem;
        min-height: 250px;
    }

    .brand-logo {
        height: 60px;
    }

    .login-branding h1 {
        font-size: 2rem;
    }

    .brand-features {
        gap: 1rem;
    }

    .feature span {
        font-size: 0.85rem;
    }

    .login-form-wrapper {
        padding: 2rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .admin-login-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-login-wrapper {
        padding: 0.5rem;
    }

    .admin-login-container {
        border-radius: 10px;
    }

    .login-branding {
        padding: 1.5rem;
        min-height: 200px;
    }

    .brand-logo {
        height: 50px;
        margin-bottom: 1rem;
    }

    .login-branding h1 {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .login-branding p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .brand-features {
        gap: 0.75rem;
    }

    .feature {
        font-size: 0.85rem;
    }

    .login-form-wrapper {
        padding: 1.5rem;
    }

    .login-card {
        max-width: 100%;
    }

    .login-header h2 {
        font-size: 1.3rem;
    }

    .login-header p {
        font-size: 0.85rem;
    }

    .form-group input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .login-btn,
    .google-signin-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .error-message,
    .success-message,
    .loading-message {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .security-notice {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    /* Pricing accordion extra small screens */
    .pricing-header {
        padding: 1rem 0.85rem;
        gap: 0.5rem;
    }

    .pricing-price strong {
        font-size: 1.25rem;
    }

    .pricing-title h3 {
        font-size: 0.95rem;
    }

    .pricing-duration {
        font-size: 0.78rem;
    }

    .pricing-description {
        padding: 1rem 0.85rem 1.25rem;
    }

    .pricing-description li {
        font-size: 0.88rem;
    }

    .pricing-cta-btn {
        font-size: 0.92rem;
        padding: 0.8rem 1rem;
    }

    .pricing-description {
        padding: 1rem;
    }

    .pricing-description h4 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }

    .pricing-description li {
        padding: 0.4rem 0 0.4rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Footer for CC Page */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

/* Responsive - Become CC Page */
@media (max-width: 768px) {
    .cc-hero h1 {
        font-size: 2rem;
    }

    .cc-hero p {
        font-size: 1rem;
    }

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

    .pricing-tables {
        grid-template-columns: 1fr;
    }

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

    .form-wrapper {
        padding: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cc-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cc-hero p {
        font-size: 0.9rem;
    }

    .cc-hero {
        padding: 2rem 0;
    }

    .why-join h2,
    .cc-pricing h2,
    .application-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reason-card {
        padding: 1.25rem;
    }

    .reason-icon {
        font-size: 2rem;
    }

    .service-pricing {
        padding: 1rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .earning-note {
        flex-direction: column;
        gap: 0.75rem;
    }

    .earning-note i {
        margin-bottom: 0;
    }

    .form-wrapper {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
    }

    .nav-menu {
        display: none;
    }

    .navbar .container {
        padding: 0.75rem 0;
    }
}
