:root {
    /* ── Brand palette (sampled from logo) ── */
    --brand-navy:  #1B2A5E;
    --brand-teal:  #3DD9C4;
    --brand-orange: #F5A623;

    /* ── Semantic aliases ── */
    --primary-bg: #FFFFFF;
    --dark-blue:  #1B2A5E;
    --teal:       #3DD9C4;
    --orange:     #F5A623;
    --text-dark:  #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --pill-bg-light: rgba(255, 255, 255, 0.15);
    --pill-bg-dark:  rgba(0, 0, 0, 0.5);
    --border-radius-card: 24px;
    --border-radius-pill: 50px;

    /* ── Hero theme tint (updated by JS on pill click) ── */
    --hero-tint-r: 61;
    --hero-tint-g: 217;
    --hero-tint-b: 196;
    --hero-tint-a: 0.20;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 400;
    opacity: 0.8;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    font-weight: 600;
    color: var(--teal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    padding-left: 10%;
    /* Sunrise/travel warmth gradient — navy base, teal-orange glow where globe sits */
    background:
        radial-gradient(ellipse 70% 90% at 68% 50%, rgba(61, 217, 196, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 72% 60%, rgba(245, 166, 35, 0.12) 0%, transparent 45%),
        linear-gradient(150deg, #1B2A5E 0%, #121f4a 50%, #080e2a 100%);
    clip-path: inset(0 0 0 0);
    /* Smooth transition for theme tint overlay changes */
    transition: background 0s; /* gradient itself can't animate — overlay div handles it */
}

/* Background Image Slides for Pill Crossfade */
.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
}

/* Theme tint overlay — animated via JS class changes */
.hero-theme-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Default: teal (Serenity) */
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
        rgba(61, 217, 196, 0.20) 0%, transparent 60%);
    transition: background-color 0.4s ease, opacity 0.4s ease;
}
.hero-theme-overlay.theme-serenity {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
        rgba(61, 217, 196, 0.22) 0%, transparent 60%);
}
.hero-theme-overlay.theme-nature {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
        rgba(74, 160, 100, 0.25) 0%, transparent 60%);
}
.hero-theme-overlay.theme-haven {
    background: radial-gradient(ellipse 70% 90% at 68% 50%,
        rgba(245, 166, 35, 0.24) 0%, transparent 60%);
}

/* Subtle diagonal star-shimmer on top */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 18%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.20) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Kept for JS compat */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Globe wrapper — positioned on the right half.
   SIZING: the canvas renders at exactly (width × height).
   We add padding so the sphere never clips against the container edge.
   The sphere radius = 1 Three.js unit, camera at z=2.8, FOV 45°
   means the globe needs roughly 85% of the shorter dimension.
   720px container = comfortable full sphere with breathing room. */
.globe-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Wide enough that right side of sphere doesn't clip the viewport edge */
    width: 720px;
    height: 720px;
    /* No overflow:hidden — the canvas IS the content, never clip it */
    overflow: visible;
    z-index: 1;
    will-change: transform, opacity;
    transition: none;
    pointer-events: none;
}

/* Canvas fills its parent exactly — Three.js reads offsetWidth/offsetHeight */
.globe-wrapper canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Soft halo glow behind the globe */
.globe-wrapper::after {
    content: '';
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 189, 182, 0.18) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero text — sits above the globe canvas in z order as a floating glassmorphic card */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    background: rgba(27, 42, 94, 0.45);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    margin-right: auto;
}

.hero-content h1 {
    font-size: clamp(38px, 4.2vw, 52px);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-btn {
    padding: 16px 36px;
    font-size: 17px;
    background-color: var(--brand-teal);
    color: #0a1628;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(61, 217, 196, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(61, 217, 196, 0.6);
}

/* Hero subcopy — fades between themes */
.hero-subcopy {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 36px;
    margin-top: -20px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: opacity 0.25s ease;
    max-width: 440px;
    line-height: 1.55;
}
.hero-subcopy.fading {
    opacity: 0;
}

/* Multi-scene structure (Phase 8 Refinements) */
.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    z-index: 1;
    opacity: 0;
}
.hero-scene[data-scene="landing"] {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
}
.hero-scene.active {
    z-index: 2;
    opacity: 1;
}
.hero-bg-slide.full-bleed {
    opacity: 0.85 !important;
}
.legibility-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 19, 48, 0.72) 0%, rgba(11, 19, 48, 0.35) 45%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-direct {
    position: relative;
    z-index: 10;
    max-width: 620px;
    margin-right: auto;
}
.hero-content-direct h1 {
    font-size: clamp(42px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero-subcopy-direct {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-tags {
    position: absolute;
    bottom: 40px;
    right: 48px;
    display: flex;
    gap: 16px;
    z-index: 20;
}

.tag {
    background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.80);
    padding: 9px 22px;
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}

.tag:hover {
    background-color: rgba(61, 217, 196, 0.20);
    border-color: rgba(61, 217, 196, 0.45);
    color: #fff;
}

/* Active state — set by JS when a theme pill is selected */
.tag.active {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #0a1628;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(61, 217, 196, 0.5);
}

/* Haven pill gets orange accent when active */
.tag[data-theme="haven"].active {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.5);
    color: #1B2A5E;
}

/* Nature pill gets green accent when active */
.tag[data-theme="nature"].active {
    background-color: #4AA064;
    border-color: #4AA064;
    box-shadow: 0 0 16px rgba(74, 160, 100, 0.5);
    color: #fff;
}

/* ── Responsive tweaks ── */
@media (max-width: 1024px) {
    .globe-wrapper {
        width: 520px;
        height: 520px;
        right: -2%;
    }
    .hero-content {
        max-width: 65%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-left: 6%;
        align-items: flex-start;
        justify-content: center;
    }
    .globe-wrapper {
        width: 380px;
        height: 380px;
        right: -10%;
        top: 55%;
    }
    .hero-content {
        max-width: 80%;
    }
}

/* How It Works Section */
.how-it-works {
    display: flex;
    padding: 120px 10%;
    gap: 64px;
    background-color: var(--primary-bg);
}

.hiw-image {
    flex: 1;
    border-radius: var(--border-radius-card);
    overflow: hidden;
}

.hiw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiw-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step.active, .step:hover {
    opacity: 1;
}

.step-icon {
    font-size: 24px;
    background-color: #F0F0F0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

/* Experience Banner */
.experience-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.exp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.exp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.exp-content h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.exp-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* Footer Restyle (Phase 8) */
.footer {
    background-color: #0B1330; /* Darker navy */
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 10% 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 15px;
}
.footer-col h3 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    position: relative;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--brand-teal);
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col a:hover {
    color: var(--brand-teal);
    padding-left: 4px;
}
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}
.social-links a {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
.social-links a:hover {
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(61, 217, 196, 0.25);
    border-color: var(--brand-teal);
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* =========================================================
   DESTINATIONS GRID (Phase 3)
   ========================================================= */
.destinations-section {
    padding: 100px 10% 120px;
    background-color: #F8FAFC;
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 38px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}
.dest-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}
.filter-tab {
    background: white;
    color: var(--brand-navy);
    border: 1px solid rgba(27, 42, 94, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-tab:hover, .filter-tab.active {
    background: var(--brand-navy);
    color: white;
    box-shadow: 0 10px 20px rgba(27, 42, 94, 0.15);
    border-color: var(--brand-navy);
}
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.dest-card {
    background: white;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    border: 1px solid rgba(27, 42, 94, 0.05);
}
.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 42, 94, 0.12);
}
.dest-card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.dest-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.dest-card:hover .dest-card-image-wrapper img {
    transform: scale(1.05);
}
/* Sliding Price/Duration Badge */
.dest-badge {
    position: absolute;
    bottom: -40px;
    left: 20px;
    background: var(--brand-orange);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    opacity: 0;
    z-index: 2;
}
.dest-card:hover .dest-badge {
    bottom: 20px;
    opacity: 1;
}
.dest-card-content {
    padding: 28px;
}
.dest-card-content h3 {
    font-size: 20px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 8px;
}
.dest-card-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}
.dest-card-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    border: none;
    box-shadow: none;
}
.dest-card-btn:hover {
    background-color: #2ec5b0;
    box-shadow: 0 4px 15px rgba(61, 217, 196, 0.35);
}

/* =========================================================
   SERVICES SECTION (Phase 4)
   ========================================================= */
.services-section {
    padding: 120px 10%;
    background-color: #FFFFFF;
}
.services-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: 60px;
}
.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
}
.service-block.reverse {
    flex-direction: row-reverse;
}
.service-image {
    flex: 1.1;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(27, 42, 94, 0.08);
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-block:hover .service-image img {
    transform: scale(1.04);
}
.service-text {
    flex: 0.9;
}
.service-meta {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.service-text h3 {
    font-size: 32px;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}
.service-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.service-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
}
.btn-secondary:hover {
    background: var(--brand-navy);
    color: white;
    box-shadow: 0 10px 20px rgba(27, 42, 94, 0.15);
}

/* =========================================================
   ABOUT US SECTION (Phase 5)
   ========================================================= */
.about-section {
    padding: 100px 10%;
    background-color: #F8FAFC;
}
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}
.about-image {
    flex: 1;
    position: relative;
    height: 480px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brand-navy);
    color: white;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(27, 42, 94, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.exp-years {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-teal);
    line-height: 1;
    margin-bottom: 4px;
}
.exp-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.about-content {
    flex: 1.1;
}
.about-btn {
    padding: 14px 32px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(61, 217, 196, 0.3);
}

/* =========================================================
   TESTIMONIALS MARQUEE (Phase 6)
   ========================================================= */
.testimonials-section {
    padding: 100px 0 120px;
    background-color: #FFFFFF;
    overflow: hidden;
}
.marquee-wrapper {
    display: flex;
    gap: 32px;
    width: 200%;
    margin-top: 50px;
}
.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 32s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.testimonial-card {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 24px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(27,42,94,0.04);
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27,42,94,0.08);
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 32px));
    }
}

/* =========================================================
   QUOTE SECTION & FLOW (Phase 7)
   ========================================================= */
.quote-section {
    padding: 120px 10%;
    background-color: #F8FAFC;
}
.quote-card-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(150deg, #1B2A5E 0%, #121f4a 100%);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(27, 42, 94, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.quote-info-side {
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}
.quote-info-side p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}
.quote-form-side {
    background: white;
    padding: 60px;
}
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input, .form-group select {
    padding: 14px 20px;
    border: 1px solid rgba(27, 42, 94, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--brand-navy);
    background: #F8FAFC;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: white;
    box-shadow: 0 4px 15px rgba(61, 217, 196, 0.15);
}
.quote-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    background-color: var(--brand-teal);
    color: var(--brand-navy);
    border: none;
}
.quote-submit-btn:hover {
    background-color: #2ec5b0;
    box-shadow: 0 8px 24px rgba(61, 217, 196, 0.4);
}
