/* ============================================================
   Wizz Cars Godalming — Premium Light Theme Design System
   Palette: Crisp White · Slate Navy · Warm Gold · Soft Greys
   ============================================================ */

:root {
    /* ── Backgrounds ── */
    --bg-page: #f8f9fc;
    /* main page background — cool off-white */
    --bg-alt: #ffffff;
    /* alternate section — pure white */
    --bg-card: #ffffff;
    /* card surface */
    --bg-card-hover: #fdfcfa;
    /* card surface on hover */
    --bg-darkest: #f8f9fc;
    /* alias kept for legacy refs */
    --bg-dark: #ffffff;
    /* alias kept for legacy refs */

    /* ── Text ── */
    --text-white: #0f172a;
    /* primary text — deep slate navy */
    --text-gray: #64748b;
    /* secondary / muted text */
    --text-dark: #f8f9fc;
    /* used on dark/gold backgrounds */

    /* ── Brand Gold ── */
    --gold: #c9a227;
    /* slightly warmer, richer gold */
    --gold-rgb: 201, 162, 39;
    --gold-hover: #d4af37;
    /* brighter on hover */
    --gold-light: rgba(201, 162, 39, 0.10);
    /* gold tint fill */

    /* ── Borders ── */
    --border-light: rgba(15, 23, 42, 0.07);
    /* subtle divider lines */
    --border-color: rgba(201, 162, 39, 0.25);
    /* gold-tinted border */
    --border-hover: rgba(201, 162, 39, 0.55);
    /* gold border on hover */

    /* ── Shadows ── */
    --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.07);
    --shadow-card: 0 1px 4px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.18);
    --shadow-gold-hover: 0 8px 28px rgba(201, 162, 39, 0.30);

    /* ── Transitions ── */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: var(--bg-page);
    color: var(--text-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darkest);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Global Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header {
    position: relative;
    text-align: center;
    max-width: 100%;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: block;
    width: 100%;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* Pricing section already has its own decorative dots line — skip the extra underline */
.pricing-plan-section .section-header h2::after {
    display: none;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.08);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light mode glass card */
body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-light);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 249, 252, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    box-shadow: 0 1px 12px rgba(15, 23, 42, 0.05);
}

.site-header.scroll-scrolled {
    background: rgba(248, 249, 252, 0.98);
    padding: 4px 0;
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scroll-scrolled .header-container {
    height: 70px;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-wordmark {
    display: flex;
    flex-direction: row;
}

.logo-wizz {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.logo-cars {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
}

.logo-sub {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text-gray);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: rotate(20deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.theme-toggle-btn .icon-sun,
.theme-toggle-btn .icon-moon {
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

/* Dark mode: show moon, hide sun */
.theme-toggle-btn .icon-sun {
    opacity: 1;
    transform: scale(1);
}

.theme-toggle-btn .icon-moon {
    opacity: 0;
    transform: scale(0.5);
}

/* Light mode: show sun, hide moon */
body.light-mode .theme-toggle-btn .icon-sun {
    opacity: 0;
    transform: scale(0.5);
}

body.light-mode .theme-toggle-btn .icon-moon {
    opacity: 1;
    transform: scale(1);
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    background: var(--gold-light);
    border-radius: 8px;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.phone-btn:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff8ed 100%);
    border-bottom: 1px solid var(--border-light);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--gold);
}

.hero-actions-row {
    display: flex;
    gap: 16px;
}

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

.hero-image-card {
    padding: 12px;
    border-color: var(--border-color);
}

.hero-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.booking-info-col {
    position: sticky;
    top: 110px;
}

.booking-info-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-info-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.booking-info-image-card {
    padding: 12px;
    border-color: var(--border-color);
}

.booking-info-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-info-col {
        position: static;
    }
}

.booking-card {
    padding: 40px;
    border-color: var(--border-color);
}

.form-row {
    margin-bottom: 24px;
}

.flex-row {
    display: flex;
    gap: 16px;
}

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

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.form-group label i {
    color: var(--gold);
    margin-right: 6px;
}

.form-group input,
.form-group select {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background: #ffffff;
    color: var(--text-white);
}

.form-divider {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
    margin: 32px 0 20px 0;
}

/* Fare Display Card */
.fare-display-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: var(--border-color);
    background: linear-gradient(135deg, #fffdf5 0%, #fdf8ec 100%);
}

.fare-header {
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.fare-header h3 {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fare-price {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0;
}

.fare-notes {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.fare-details h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-white);
}

.summary-list {
    margin-bottom: 30px;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list .label {
    color: var(--text-gray);
}

.summary-list .value {
    font-weight: 600;
}

.popular-routes {
    margin-bottom: 30px;
}

.popular-routes h4 {
    margin-bottom: 12px;
}

.route-rate-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(201, 162, 39, 0.04);
    border-left: 2px solid var(--gold);
    border-radius: 0 6px 6px 0;
    margin-bottom: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.route-rate-item:hover {
    background: rgba(212, 175, 55, 0.08);
}

.route-price {
    font-weight: 600;
    color: var(--gold);
}

.booking-guarantee {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.booking-guarantee i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 4px;
}

.booking-guarantee h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.booking-guarantee p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f2 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 40px 30px;
    border-color: var(--border-light);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 20px 40px rgba(15, 23, 42, 0.12), var(--shadow-gold);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

.service-card:hover .service-icon i {
    color: var(--text-dark);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

.service-card:hover .service-link i {
    transform: translateX(4px);
    transition: var(--transition-fast);
}

/* Fleet Showcase Section */
.fleet-section {
    padding: 100px 0;
    background-color: #faf8f2;
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--gold);
    color: var(--text-white);
    background: var(--gold-light);
}

.fleet-tab-content {
    display: none;
}

.fleet-tab-content.active {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

.fleet-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.fleet-image-wrap {
    padding: 12px;
    background: #f8f9fc;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.fleet-car-img {
    width: 100%;
    border-radius: 12px;
}

.fleet-details-wrap h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.fleet-class-sub {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.fleet-desc {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.spec-item i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 24px;
    text-align: center;
}

.fleet-pricing-banner {
    padding: 16px 20px;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 32px;
}

.fleet-pricing-banner strong {
    color: var(--gold);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf9ef 0%, #f8f9fc 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.testimonial-wrapper {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-location {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-arrow {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-light);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Contact & Map Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-container-wrap {
    height: 500px;
    overflow: hidden;
    position: relative;
    border-color: var(--border-color);
}

.map-container-wrap:hover {
    box-shadow: var(--shadow-soft), var(--shadow-gold);
    border-color: var(--border-hover);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: var(--bg-darkest);
    border: 1px solid var(--gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.contact-details-wrap {
    padding: 40px;
    border-color: var(--border-light);
}

.contact-details-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-desc {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    color: var(--gold);
}

.info-content span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.info-content a,
.info-content span:last-child {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    word-break: break-word;
    overflow-wrap: anywhere;

}

.info-content a:hover {
    color: var(--gold);
}

.inquiry-form {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.inquiry-form h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.inquiry-form .form-row {
    margin-bottom: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Footer Section */
.site-footer {
    background-color: var(--bg-darkest);
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-dark);
}

.footer-container h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-coverage ul li {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.footer-coverage ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

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

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

/* Modal Booking Request styling */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    border-color: var(--gold);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.modal-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.modal-summary h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.summary-row span {
    color: var(--text-gray);
}

.summary-row strong {
    font-weight: 600;
}

.modal-next-steps {
    font-size: 0.85rem !important;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 30px !important;
}

/* Animations */
@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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Pricing Plan Section Styling */
.pricing-plan-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.pricing-decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -8px;
    margin-bottom: 24px;
}

.pricing-decorative-line .line-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.7;
}

.pricing-decorative-line .line-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-color: transparent;
}

.pricing-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border-color: var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #fdfcfa 100%);
}

.pricing-table-wrap:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-soft), var(--shadow-gold-hover);
}

.pricing-grid-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 8px;
}

.pricing-row:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(4px);
}

.pricing-dest {
    color: var(--text-white);
    transition: var(--transition-fast);
}

.pricing-row:hover .pricing-dest {
    color: var(--gold);
}

.pricing-leader {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 16px;
    position: relative;
    top: 4px;
    transition: var(--transition-fast);
}

.pricing-row:hover .pricing-leader {
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-darkest);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.pricing-row:hover .pricing-badge {
    background: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* Header WhatsApp Button */
.header-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.header-whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Floating Contact Actions */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    position: relative;
}

.float-phone {
    background-color: var(--gold);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-phone:hover {
    background-color: var(--gold-hover);
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--shadow-gold-hover);
}

.float-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse animation on WhatsApp button */
.float-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Responsiveness Styles */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 32px auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions-row {
        justify-content: center;
    }

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

    .fleet-showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .map-container-wrap {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .fleet-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        flex: 1 1 auto;
        min-width: 130px;
        font-size: 0.85rem;
        padding: 10px 14px;
        text-align: center;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-darkest);
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        z-index: 999;
        transform: translateX(-100%);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
        gap: 32px;
    }

    .nav-link {
        font-size: 1.3rem;
    }

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

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .modal-card {
        padding: 24px 20px;
        max-height: 88vh;
    }

    .booking-card {
        padding: 24px;
    }

    .fare-display-card {
        padding: 24px;
    }

    .contact-details-wrap {
        padding: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    /* Responsive Pricing Table */
    .pricing-table-wrap {
        padding: 24px 16px;
    }

    .pricing-row {
        font-size: 0.95rem;
        padding: 6px 4px;
    }

    .pricing-leader {
        margin: 0 8px;
    }

    .pricing-badge {
        padding: 6px 12px;
        min-width: 90px;
        font-size: 0.9rem;
    }

    /* Responsive Floating Buttons */
    .floating-contact {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Extra small screens (phones < 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .phone-btn span {
        display: none;
    }

    .phone-btn {
        padding: 10px 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-actions-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions-row .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .form-row.flex-row {
        flex-direction: column;
    }

    .form-group.col-6 {
        width: 100%;
    }

    /* Floating buttons - safe zone for mobile browsers */
    .floating-contact {
        bottom: env(safe-area-inset-bottom, 16px);
        bottom: max(16px, env(safe-area-inset-bottom));
        right: 14px;
        gap: 8px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .float-whatsapp::before {
        display: none;
    }
}

/* Blurred backdrop behind the popup */
.announce-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.announce-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.announce-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 94%;
    max-width: 640px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 36px 40px 32px;
    z-index: 1100;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.announce-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

body.dark-mode .announce-popup {
    background: rgba(21, 24, 30, 0.85);
}

.announce-popup h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 14px;
    line-height: 1.3;
}

.announce-popup p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 22px;
}

.announce-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.announce-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--text-dark);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.announce-btn:hover,
.announce-btn:active {
    background-color: var(--gold-hover);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-hover);
}

/* ===== Floating Buttons: Bigger + Text Label + Animation ===== */
.floating-contact .float-btn {
    width: auto;
    height: 56px;
    border-radius: 50px;
    padding: 0 20px 0 16px;
    gap: 10px;
    font-size: 1.5rem;
}

.float-label {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

/* Pulse ring on Phone button too (matches WhatsApp pulse) */
.float-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--gold);
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@media (max-width: 480px) {
    .float-label {
        font-size: 0.8rem;
    }

    .floating-contact .float-btn {
        height: 48px;
        padding: 0 16px 0 12px;
    }
}

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

.faq-category {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 40px 0 16px;
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reviews-block {
    margin-top: 50px;
}

.reviews-block-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 600;
}

.review-time {
    font-size: 0.8rem;
    color: #999;
}

.review-stars {
    color: #e0a500;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-stars .star-empty {
    color: #ddd;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
}

.review-form .form-group {
    margin-bottom: 18px;
}

.review-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.review-form textarea {
    resize: vertical;
}

.star-rating {
    display: flex;
    gap: 6px;
    font-size: 1.6rem;
}

.star-rating .star-input {
    color: #e0a500;
    cursor: pointer;
    transition: color 0.15s;
}

.star-rating .star-input.star-empty {
    color: #ddd;
}

.review-form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 14px;
    margin-bottom: 0;
}