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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000; /* Ensure body background is black */
}

/* Header Styles */
.header {
    position: absolute; /* Changed from fixed to absolute */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent; /* Always transparent */
    padding: 1.5rem 2rem;
    /* Removed transition */
}

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

/* Desktop/Mobile Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.logo-container {
    position: relative;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo {
    height: 60px; /* Increased by 20% from 50px */
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* Mobile Logo Container */
.mobile-logo-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

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

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

/* Mobile horizontal navigation */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-button {
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-button:hover {
    color: white; /* Keep white on hover */
}

/* UPDATED: Only show red underline for active pages, keep text white */
.nav-button.active {
    color: white; /* Keep text white */
}

.nav-button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ef4444; /* Red underline only */
}

.phone-container {
    display: flex;
    align-items: center;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.phone-badge {
    background: white;
    color: #dc2626;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.phone-number {
    white-space: nowrap;
}

/* Mobile Phone Icon - CRITICAL: Hidden on desktop, only shown on mobile */
.mobile-phone-icon {
    display: none !important; /* CRITICAL: Force hidden on desktop */
    background: white;
    color: #dc2626;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-phone-icon svg {
    width: 20px;
    height: 20px;
    stroke: #dc2626;
}

.mobile-phone-icon:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* Hero Section - Fixed Height */
.hero-section {
    position: relative;
    height: 700px; /* Fixed height as requested */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Changed from hidden to allow content to flow */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.85) 85%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 2rem;
    margin-top: -140px; /* Moved 20% closer to top (from -100px to -140px) */
}

/* Mobile Hero Logo (Hidden by default, shown on mobile) */
.mobile-hero-logo {
    display: none;
    margin-bottom: 30px; /* 30px distance from H1 */
}

.mobile-hero-logo .mobile-logo {
    height: 120px; /* INCREASED: 50% bigger than 80px */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Booking Section - Positioned naturally after hero */
.booking-section {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    margin: -280px auto 0; /* Moved 40% closer to hero text (from -200px to -280px) */
    padding: 0 2rem;
}

.container {
    margin: 0 auto;
}

.booking-card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}

/* Form Styles */
.booking-form {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem; /* Add space at bottom */
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.step-title {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

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

/* Date Input Styling */
.date-input-container {
    position: relative;
}

.date-input {
    cursor: pointer;
    position: relative;
}

.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #9ca3af;
    pointer-events: none;
    z-index: 5;
}

/* Custom Calendar Popup - FIXED ALIGNMENT ISSUE */
.calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    z-index: 1000;
    margin-top: 8px;
    padding: 1.5rem;
    display: none;
    animation: fadeInScale 0.3s ease;
    width: 100%;
    max-width: 350px;
    min-width: 300px;
    box-sizing: border-box;
}

.calendar-popup.show {
    display: block;
}

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

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.calendar-month-year {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    text-align: center;
    flex: 1;
    margin: 0 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    width: 100%;
    max-width: 100%;
}

.calendar-day-header {
    text-align: center;
    padding: 8px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    color: white;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    box-sizing: border-box;
    min-height: 32px;
    max-height: 32px;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: white;
}

.calendar-day.other-month {
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.01);
}

.calendar-day.other-month:hover {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day.selected {
    background: #dc2626 !important;
    color: white !important;
    font-weight: 700;
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.calendar-day.selected:hover {
    background: #b91c1c !important;
    transform: scale(1.05);
}

.calendar-day.today {
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.calendar-day.today:not(.selected)::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.2) !important;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.01) !important;
}

.calendar-day.disabled:hover {
    background: rgba(255, 255, 255, 0.01) !important;
    transform: none;
    border-color: transparent;
}

.calendar-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.calendar-today-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.calendar-today-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.calendar-close-btn {
    background: #dc2626;
    border: 1px solid #dc2626;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.calendar-close-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Location Icon */
.location-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 5;
}

/* Enhanced Autocomplete Styling */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 4px;
}

.enhanced-autocomplete {
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.autocomplete-item {
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.autocomplete-item:hover,
.autocomplete-item.autocomplete-active {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #dc2626;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-main {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.autocomplete-category {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.autocomplete-main strong {
    color: #ef4444;
    font-weight: 700;
}

/* Google Maps Autocomplete Styling */
.pac-container {
    background: rgba(0, 0, 0, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    margin-top: 4px !important;
    z-index: 10000 !important;
}

.pac-item {
    background: transparent !important;
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.pac-item:hover,
.pac-item-selected {
    background: rgba(255, 255, 255, 0.1) !important;
    border-left: 3px solid #dc2626 !important;
}

.pac-item-query {
    color: white !important;
    font-weight: 600 !important;
}

.pac-matched {
    color: #ef4444 !important;
    font-weight: 700 !important;
}

/* Select styling for dark theme */
.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.form-group select option {
    background: #1f2937;
    color: white;
}

/* Add Stop Button */
.add-stop-container {
    margin-bottom: 1.5rem;
}

.add-stop-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.add-stop-btn:hover {
    color: white;
}

.plus-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* White separator line */
.separator-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0 1.5rem 0;
}

/* BOOK NOW Button Container - Full width like inputs */
.book-now-container {
    display: flex;
    justify-content: center;
    margin: 0;
}

.book-now-btn {
    background: white;
    color: black;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    width: 100%; /* Full width like inputs */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.book-now-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.book-now-btn.loading .btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '...'; }
    40% { content: '..'; }
    60% { content: '.'; }
    80%, 100% { content: ''; }
}

/* Footer Styles */
.footer {
    background: black;
    padding: 0;
}

.footer-separator {
    width: 100%;
    height: 2px;
    background: #dc2626;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-self: start;
    color: #9ca3af;
    font-size: 0.875rem;
}

.copyright-symbol {
    font-size: 1.125rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.copyright-text {
    font-weight: 400;
}

.footer-logo {
    justify-self: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-social {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide/Show Elements for Mobile */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Show mobile navigation and hide desktop navigation */
    .desktop-nav {
        display: none !important; /* Hide desktop navigation on mobile */
    }
    
    .mobile-nav {
        display: flex !important; /* Show mobile navigation */
        align-items: center;
        justify-content: center; /* FIXED: Center the navigation items */
        gap: 1.5rem;
        font-size: 0.9rem;
        width: 100%; /* FIXED: Take full width */
    }
    
    /* Show mobile phone icon - ONLY ON MOBILE */
    .mobile-phone-icon {
        display: flex !important; /* CHANGED: Use flex instead of block */
    }
    
    /* FIXED: Mobile header layout - proper centering */
    .header {
        padding: 1.5rem 1rem; /* FIXED: Reduced side padding for better mobile spacing */
    }
    
    .nav-container {
        display: flex;
        justify-content: center; /* FIXED: Center everything on mobile */
        align-items: center;
        width: 100%;
        position: relative; /* FIXED: For absolute positioning of phone icon */
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center; /* FIXED: Center the navigation */
        width: 100%; /* FIXED: Take full width */
        gap: 1rem;
    }
    
    /* FIXED: Position phone icon absolutely on the right */
    .mobile-phone-icon {
        position: absolute !important;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Show Mobile Hero Logo */
    .mobile-hero-logo {
        display: block !important;
    }
    
    .hero-section {
        height: 600px; /* Reduced height for mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-top: 20px; /* Changed from negative to positive to push content down and create space */
    }
    
    .hero-subtitle {
        margin-top: 0.1rem; /* Brought much closer to h1 - reduced from 0.25rem to 0.1rem */
        margin-bottom: 1.5rem; /* Added bottom margin to create space before booking form */
    }
    
    .booking-section {
        max-width: none;
        padding: 0 1rem;
        margin-top: -160px; /*Reduced overlap to give more space for subtitle visibility */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-copyright {
        justify-self: center;
        order: 3;
    }

    .footer-logo {
        justify-self: center;
        order: 1;
    }

    .footer-social {
        justify-self: center;
        order: 2;
    }

    .calendar-popup {
        padding: 1.25rem;
        min-width: 280px;
        max-width: 310px;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        font-size: 0.8rem;
        min-height: 30px;
        max-height: 30px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .calendar-month-year {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-hero-logo .mobile-logo {
        height: 105px; /* INCREASED: 50% bigger than 70px */
    }

    .hero-section {
        height: 500px; /* Further reduced for small mobile */
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        margin-top: 40px; /* Even more positive margin to create more space between phone and h1 */
    }
    
    .hero-subtitle {
        margin-top: 0.05rem; /* Even closer to h1 - reduced from 0.1rem to 0.05rem */
        margin-bottom: 2rem; /* Increased bottom margin for better separation from booking form */
    }

    .booking-form {
        padding: 1.5rem;
    }
    
    .booking-section {
        margin-top: -120px; /* Further reduced overlap to ensure subtitle is fully visible */
    }

    .footer-content {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .footer-logo-img {
        height: 50px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .calendar-popup {
        padding: 1rem;
        min-width: 260px;
        max-width: 290px;
    }

    .calendar-header {
        margin-bottom: 1rem;
    }

    .calendar-month-year {
        font-size: 0.95rem;
    }

    .calendar-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .calendar-day {
        font-size: 0.75rem;
        min-height: 28px;
        max-height: 28px;
    }

    .calendar-actions {
        margin-top: 1rem;
        padding-top: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .calendar-today-btn,
    .calendar-close-btn {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* FIXED: Better mobile navigation spacing for small screens */
    .header {
        padding: 1.5rem 0.75rem; /* FIXED: Even less side padding for small screens */
    }
    
    .mobile-nav {
        gap: 1rem; /* FIXED: Reduced gap for small screens */
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form {
    animation: fadeInUp 0.8s ease;
}