/* ========== CSS Variables ========== */
:root {
    --navy-dark: #0A1628;
    --navy-light: #1a1f36;
    --gold: #f7b733;
    --cyan: #00d4ff;
    --cream: #faf8f3;
    --emerald: #10b981;
    --white: #ffffff;
    --gray: #94a3b8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--navy-dark);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.is-hidden {
    display: none !important;
}

/* ========== Floating Currency Symbols ========== */
.currency-floaters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

.currency-symbol {
    position: absolute;
    font-size: 120px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
    animation: float 20s infinite ease-in-out;
}

.currency-symbol:nth-child(2) {
    animation-delay: -3s;
}

.currency-symbol:nth-child(3) {
    animation-delay: -7s;
}

.currency-symbol:nth-child(4) {
    animation-delay: -11s;
}

.currency-symbol:nth-child(5) {
    animation-delay: -15s;
}

.currency-symbol:nth-child(6) {
    animation-delay: -19s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* ========== Coordinate Grid Background ========== */
.coordinate-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.03) 0px, rgba(0, 212, 255, 0.03) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.03) 0px, rgba(0, 212, 255, 0.03) 1px, transparent 1px, transparent 50px);
    pointer-events: none;
    opacity: 0.5;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.nav-logo:hover {
    color: var(--gold);
}

.nav-logo-img {
    height: 40px !important;
    width: 40px !important;
    max-height: 40px !important;
    max-width: 40px !important;
    object-fit: contain !important;
    margin-right: 8px !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

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

.btn-nav-cta {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 183, 51, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--cream);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--gray);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 183, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gray);
}

.trust-stars {
    color: var(--gold);
    font-size: 16px;
}

.trust-divider {
    color: var(--gray);
}

.hero-visual {
    animation: fadeInRight 1s ease 0.3s backwards;
}

.price-comparison-card {
    position: relative;
    background: linear-gradient(160deg, #0c1117 0%, #121a22 55%, #18212b 100%);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 183, 51, 0.12);
    border: 1px solid rgba(247, 183, 51, 0.2);
    animation: floatCard 6s infinite ease-in-out;
    overflow: hidden;
    width: min(450px, 100%);
    max-width: 450px;
}

.price-comparison-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.28;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(57, 217, 138, 0.02), transparent 35%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 46px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 46px);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Extension Header */
.extension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(246, 196, 83, 0.2);
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(12, 17, 23, 0.95) 0%, rgba(18, 26, 34, 0.9) 100%);
}

.extension-branding {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.extension-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-bottom: 8px;
}

.extension-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.4px;
}

.extension-header-buttons {
    display: flex;
    gap: 8px;
}

.extension-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(247, 183, 51, 0.28);
    background: rgba(247, 183, 51, 0.12);
    color: var(--gold);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.extension-btn-icon:hover {
    background: rgba(247, 183, 51, 0.12);
    border-color: rgba(247, 183, 51, 0.28);
    transform: none;
}

/* Hotel Details */
.hotel-details {
    padding: 18px 24px 12px 24px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hotel-name {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.hotel-dates {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Better Rate Banner */
.better-rate-banner {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 20px 24px 10px 24px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 10;
}

.banner-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.banner-icon svg {
    display: block;
}

.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.banner-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}

.banner-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: var(--emerald);
    font-weight: 600;
}

/* Provider Price Grid */
.price-comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 16px 16px;
    position: relative;
    z-index: 10;
}

.provider-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 14px 16px 12px;
    border-radius: 16px;
    background: rgba(26, 31, 54, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
}

.best-provider {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.current-provider {
    border-color: var(--gold);
    background: rgba(247, 183, 51, 0.08);
}

.provider-tag {
    position: absolute;
    top: -10px;
    left: 16px;
    height: 22px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.9);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.9);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.25);
}

.provider-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.provider-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.provider-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.provider-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provider-name {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.provider-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--gray);
}

.provider-aside {
    width: 76px;
    margin-left: auto;
    margin-top: 0;
    padding-top: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    justify-content: flex-start;
}

.current-provider .provider-aside {
    margin-top: 0;
}

.provider-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
}

.provider-price-best {
    color: var(--emerald);
}

.provider-save {
    font-size: 12px;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1.1;
}

.provider-book-btn {
    margin-top: 6px;
    padding: 6px 14px;
    min-width: 70px;
    border: 1px solid rgba(247, 183, 51, 0.5);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(247, 183, 51, 0.95) 0%, rgba(247, 161, 51, 0.95) 100%);
    color: var(--navy-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: default;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-book-btn:hover {
    transform: none;
    box-shadow: none;
}

/* Extension Footer */
.extension-footer {
    padding: 12px 24px;
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.extension-footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.extension-support-btn {
    background: rgba(247, 183, 51, 0.15);
    border: 1px solid rgba(247, 183, 51, 0.45);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: default;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.extension-support-btn:hover {
    background: rgba(247, 183, 51, 0.15);
    color: var(--gold);
    border-color: rgba(247, 183, 51, 0.45);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== How It Works Section ========== */
.how-it-works {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-icon {
    color: var(--cyan);
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.step-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

/* ========== Stats Bar ========== */
.stats-bar {
    padding: 60px 0;
    background: var(--cyan);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--navy-dark);
    font-weight: 500;
}

/* ========== Pricing Section ========== */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.pricing .section-title {
    color: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--navy-light);
    padding: 26px 22px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(26, 31, 54, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(247, 183, 51, 0.2);
    z-index: 2;
}

.pricing-card.current-plan {
    border-color: rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(26, 31, 54, 0.95) 100%);
    box-shadow: 0 0 32px rgba(0, 212, 255, 0.18);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-badge-current {
    left: 20px;
    right: auto;
    background: var(--cyan);
    color: var(--navy-dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    width: fit-content;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    margin: 18px auto 34px;
}

.pricing-toggle-btn {
    border: none;
    background: transparent;
    color: var(--gray);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-toggle-btn:hover {
    color: var(--cream);
}

.pricing-toggle-btn.is-active {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 10px 18px rgba(247, 183, 51, 0.25);
}

.pricing-toggle-btn .toggle-note {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: none;
    margin-left: 6px;
    color: inherit;
    opacity: 0.8;
}

.pricing-tier {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 32px;
    min-height: 60px;
}

.price-figure {
    display: none;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pricing[data-billing="monthly"] .price-figure[data-billing="monthly"],
.pricing[data-billing="annual"] .price-figure[data-billing="annual"] {
    display: inline-flex;
}

.pricing[data-billing="annual"] .price-figure {
    gap: 4px;
    flex-wrap: nowrap;
}

.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 38px;
    font-weight: 700;
    color: var(--cream);
}

.price-amount.gold {
    color: var(--gold);
}

.price-period {
    font-size: 18px;
    color: var(--gray);
    margin-left: 4px;
}

.price-note {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 6px;
}

.pricing[data-billing="annual"] .price-note {
    font-size: 10px;
    margin-left: 4px;
}

.pricing-kicker {
    font-size: 13px;
    color: var(--gray);
    margin: -12px 0 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--cream);
    font-size: 15px;
}

.check-icon {
    color: var(--emerald);
    flex-shrink: 0;
}

.pricing-price-custom .price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-price-custom .price-period {
    font-family: 'JetBrains Mono', monospace;
}

.pricing-card.enterprise {
    border-color: rgba(0, 212, 255, 0.2);
}

.btn-pricing-outline,
.btn-pricing-gold {
    display: block;
    text-align: center;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

.btn-pricing-outline:hover {
    background: var(--cream);
    color: var(--navy-dark);
}

.btn-pricing-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}

.btn-pricing-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 183, 51, 0.3);
}

/* ========== FAQ Section ========== */
.faq {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.faq .section-title {
    color: var(--navy-dark);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gold);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* ========== Final CTA Section ========== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 183, 51, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--cream);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--cream);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* ========== Footer ========== */
.footer {
    padding: 60px 0 30px;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--gray);
    font-size: 14px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.footer-contact-button {
    border: 1px solid rgba(247, 183, 51, 0.6);
    background: linear-gradient(135deg, rgba(247, 183, 51, 0.12), rgba(0, 212, 255, 0.08));
    color: var(--gold);
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(247, 183, 51, 0.12);
}

.footer-contact-button:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(247, 183, 51, 0.35);
}

.footer-email {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
    padding: 0;
    border: none;
    background: none;
    cursor: default;
}

.footer-email:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ========== Login Page Styles ========== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    position: relative;
}

.login-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 20;
}

.login-header .nav-logo {
    margin-left: -7px;
}

.login-home-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.login-home-button:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.login-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Legal pages reuse the login shell but need dark text on white card background. */
.legal-document {
    color: #1f2937;
}

.legal-document h1 {
    color: var(--navy-dark);
    text-align: center;
}

.legal-document h2 {
    color: var(--navy-dark);
    margin-top: 26px;
}

.legal-document p {
    color: #334155;
    margin-bottom: 12px;
}

.legal-document .legal-updated {
    color: #64748b;
}

.login-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 40px;
}

.login-card input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.login-card input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(247, 183, 51, 0.1);
}

.forgot-password {
    display: block;
    text-align: right;
    color: var(--cyan);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 24px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-gold {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 183, 51, 0.3);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-icon {
    flex-shrink: 0;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
}

.divider {
    text-align: center;
    margin: 24px 0;
    color: var(--gray);
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.signup-link {
    margin-top: 28px;
    margin-bottom: 0;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.signup-link a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

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

    .hero-title {
        font-size: 56px;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

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

    .pricing-card.featured {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .price-comparison-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .extension-header,
    .hotel-details {
        padding: 14px 16px;
    }

    .extension-btn-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .better-rate-banner {
        margin: 16px 16px 8px;
        padding: 14px;
    }

    .banner-icon {
        width: 42px;
        height: 42px;
    }

    .price-comparison-grid {
        padding: 10px 12px 14px;
    }

    .provider-card {
        min-height: 88px;
        padding: 14px 12px 12px;
        gap: 10px;
    }

    .provider-main {
        gap: 10px;
    }

    .provider-name {
        font-size: 15px;
    }

    .provider-meta {
        font-size: 11px;
    }

    .provider-price {
        font-size: 18px;
    }

    .provider-aside {
        width: 70px;
        padding-top: 3px;
    }

    .extension-footer {
        padding: 10px 12px;
        font-size: 10px;
        gap: 6px;
    }

    .extension-footer-left {
        gap: 4px;
    }

    .extension-support-btn {
        font-size: 9px;
        padding: 4px 8px;
    }

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

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

    .section-title {
        font-size: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .login-card {
        padding: 40px 30px;
    }

    .login-header {
        padding: 16px 0;
    }

    .login-header .nav-logo {
        font-size: 20px;
    }

    .login-home-button {
        padding: 8px 14px;
        font-size: 13px;
    }
}
