/* Theme 2: White Professional Design
   Complete standalone stylesheet for Theme 2
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;

    --gold-500: #d4a012;
    --gold-600: #b8860b;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

.footer-logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
    background: transparent !important;
}

.logo span {
    color: var(--teal-600);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

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

.lang-toggle {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition-fast);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--teal-600);
    color: var(--teal-600);
}

.btn-outline:hover {
    background: var(--teal-600);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    padding: 120px 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.highlight-number {
    font-size: 5rem;
    color: var(--teal-600);
    display: block;
    line-height: 1;
}

.highlight-text {
    color: var(--teal-600);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.hero-highlights {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    color: var(--gray-700);
}

.highlight-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.floating-badge.top {
    top: 20px;
    right: -20px;
}

.floating-badge.bottom {
    bottom: 40px;
    left: -20px;
}

.badge-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-600);
}

.badge-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   JOURNEY TIMELINE - Horizontal on Desktop
   ========================================== */
.journey {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* Horizontal Timeline Container */
.timeline {
    position: relative;
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-xl) var(--space-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--teal-500) var(--gray-200);
}

.timeline::-webkit-scrollbar {
    height: 8px;
}

.timeline::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.timeline::-webkit-scrollbar-thumb {
    background: var(--teal-500);
    border-radius: 4px;
}

/* Horizontal line connecting items */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-600) 0%, var(--teal-500) 50%, var(--teal-400) 100%);
    z-index: 0;
}

/* Timeline Item - Horizontal Card */
.timeline-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.timeline-marker .year {
    display: inline-block;
    background: var(--teal-600);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--teal-600);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timeline-content {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    flex: 1;
    transition: var(--transition-base);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--teal-500);
}

.timeline-content::before {
    display: none;
    /* Remove arrow for horizontal layout */
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.timeline-location {
    color: var(--teal-600);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--gray-200);
}

.timeline-stats span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Current/Active Timeline Item */
.timeline-item.current .timeline-content {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
    color: var(--white);
    border-color: var(--teal-600);
}

.timeline-item.current .timeline-content h3,
.timeline-item.current .timeline-content p,
.timeline-item.current .timeline-location,
.timeline-item.current .timeline-stats span {
    color: var(--white);
}

.timeline-item.current .timeline-location {
    opacity: 0.9;
}

.timeline-item.current .timeline-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
}

.service-card:hover {
    border-color: var(--teal-500);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--teal-500);
    background: linear-gradient(135deg, var(--white) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--teal-600);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.service-icon {
    font-size: 2.5rem;
}

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

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 6px 0;
    color: var(--gray-700);
    font-weight: 500;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--teal-600);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-50);
    border-radius: 12px;
}

.credential-icon {
    font-size: 1.5rem;
}

.credential strong {
    display: block;
    color: var(--gray-900);
}

.credential span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-text {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: var(--teal-500);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.75rem;
}

.contact-card strong {
    display: block;
    color: var(--gray-900);
}

.contact-card span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--gray-600);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-2xl) 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.75rem;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.footer-brand .logo span {
    color: var(--teal-500);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: var(--space-xs);
}

.footer ul a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer ul a:hover {
    color: var(--teal-500);
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-bottom {
    margin-top: var(--space-2xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    background: var(--gray-900);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {

    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .highlight-number {
        font-size: 4rem;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero-highlights {
        flex-wrap: wrap;
    }

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

    /* Vertical Timeline for Mobile */
    .timeline {
        flex-direction: column;
        overflow-x: visible;
        padding: var(--space-lg) var(--space-md);
        padding-left: 50px;
    }

    .timeline::before {
        left: 20px;
        top: 0;
        bottom: 0;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--teal-600) 0%, var(--teal-500) 100%);
    }

    .timeline-item {
        flex: none;
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        margin-bottom: var(--space-lg);
    }

    .timeline-marker {
        position: absolute;
        top: 10px;
        left: -40px;
        transform: none;
    }

    .timeline-marker .year {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .timeline-marker::after {
        bottom: auto;
        left: auto;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        margin-left: 0;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .highlight-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .floating-badge {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-content {
        padding: var(--space-md);
    }

    .timeline-content h3 {
        font-size: 1rem;
    }
}

/* ==========================================
   BOOKING SECTION (Toggleable Component)
   ========================================== */

/* Toggle visibility - set to 'none' to hide */
.booking {
    display: block;
    /* Change to 'none' to disable */
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.booking-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.booking-card:hover {
    border-color: var(--teal-500);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.booking-card.featured {
    border-color: var(--teal-500);
    background: linear-gradient(135deg, var(--white) 0%, rgba(20, 184, 166, 0.08) 100%);
}

.booking-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-600);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.booking-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.booking-duration {
    color: var(--teal-600);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.booking-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.btn-book {
    padding: 12px 24px;
}

.booking-info {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: 16px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-700);
    font-weight: 500;
}

.booking-info-icon {
    font-size: 1.25rem;
}

/* Booking Modal */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
}

.booking-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.booking-modal {
    background: var(--white);
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    position: relative;
    animation: slideUp 0.3s ease;
}

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

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

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.booking-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.booking-modal-header h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.booking-modal-header p {
    color: var(--gray-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.booking-form-info {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(20, 184, 166, 0.08);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.booking-form-info .info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Success Message */
.booking-success {
    display: none;
    text-align: center;
    padding: var(--space-xl);
}

.booking-success.active {
    display: block;
}

.booking-success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.booking-success h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.booking-success p {
    color: var(--gray-600);
}

/* Responsive Booking */
@media (max-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-info {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

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

    .booking-modal {
        padding: var(--space-md);
    }
}