/* ==========================================
   HERO SECTION - IMPROVED RESPONSIVE
========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + 40px) 20px 80px;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.input-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2) !important;
}

.input-error::placeholder {
    color: rgba(255, 100, 100, 0.7) !important;
}

/* Inline Error Messages */
.field-error {
    display: none;
    color: #ff4d4d;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    padding-left: 4px;
    font-family: 'Inter', sans-serif;
    animation: slideDown 0.3s ease;
    line-height: 1.4;
}

.field-error::before {
    content: '⚠ ';
    margin-right: 4px;
    color: #ff4d4d;
}

/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../../assets/img/Somnath.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.3);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* Neon Border Glow - Top */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0px 0px 3px var(--glow-3);
    z-index: 10;
}

/* Neon Border Glow - Bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: var(--glow-primary);
    z-index: 10;
}

/* Hero Container */
.hero-container {
    position: relative;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 5;
}

/* ==========================================
   LEFT COLUMN - TEXT CONTENT
========================================== */
.hero-content {
    color: var(--color-white);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
}

.hero-route {
    display: block;
    white-space: nowrap;
}

.hero-service-type {
    display: inline-block;
    min-height: 1.2em;
    position: relative;
}

.hero-service-type::after {
    content: '|';
    color: var(--color-primary);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--color-white);
    margin-bottom: 36px;
    letter-spacing: 1.2px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Feature Bullets */
.hero-features {
    list-style: none;
    margin-top: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.hero-features li:hover {
    transform: translateX(8px);
}

.hero-features li i {
    font-size: 24px;
    color: var(--color-primary);
    min-width: 32px;
    text-align: center;
}

/* ==========================================
   RIGHT COLUMN - BOOKING FORM
========================================== */
.booking-card {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--neon-primary);
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    margin-left: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, var(--glow-1) 0%, var(--glow-05) 100%);
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid var(--glow-2);
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
    margin: 0;
    text-align: left;
    letter-spacing: -0.3px;
}

/* Form Container */
.booking-card form {
    padding: 24px;
}

/* Trip Type Tabs */
.trip-type-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--glow-2);
}

.trip-tab {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--color-gray-100);
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    /* Improved touch target */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-tab:hover {
    background: rgba(208, 255, 0, 0.1);
    color: var(--color-primary);
}

.trip-tab.active {
    background: var(--color-primary);
    color: var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* Journey Type Radio Options */
.journey-type-options {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    /* Improved touch target */
    padding: 8px 0;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--glow-2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--neon-primary);
    background: rgba(0, 0, 0, 0.5);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--neon-primary);
    border-radius: 50%;
}

.radio-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
}

/* Form Groups */
.form-group {
    margin-bottom: 16px;
}

.form-group:has(.field-error:not([style*="display: none"])) {
    margin-bottom: 20px;
}

/* Input Wrapper with Icon */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    padding-right: 50px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(208, 255, 0, 0.3);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    /* Improved touch target */
    min-height: 52px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: var(--neon-primary);
    box-shadow: 0 0 0 2px rgba(208, 255, 0, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

/* Select Input Styling */
.select-input {
    appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.select-input::-ms-expand {
    display: none;
}

.input-icon {
    position: absolute;
    right: 18px;  /* This will work once inline styles are removed */
    color: var(--color-primary);
    font-size: 16px;
    pointer-events: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 0;
}

.form-input:focus + .input-icon {
    opacity: 1;
}

/* Flatpickr date input styling */
.flatpickr-input {
    position: relative;
    z-index: 1;
    cursor: pointer;
    padding-right: 50px !important;
}

/* Flatpickr calendar styling */
.flatpickr-calendar {
    background: rgba(13, 13, 13, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--neon-primary) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), var(--glow-primary) !important;
    font-family: 'Inter', sans-serif !important;
}

.flatpickr-months {
    background: linear-gradient(135deg, var(--glow-1) 0%, var(--glow-05) 100%) !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 10px 0 !important;
}

.flatpickr-month {
    color: var(--color-primary) !important;
}

.flatpickr-current-month {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.flatpickr-weekdays {
    background: rgba(0, 0, 0, 0.3) !important;
}

.flatpickr-weekday {
    color: var(--color-white) !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    color: var(--color-white) !important;
    border-radius: 8px !important;
    /* Improved touch target */
    min-height: 36px;
    line-height: 36px;
}

.flatpickr-day:hover {
    background: rgba(208, 255, 0, 0.2) !important;
    border-color: var(--neon-primary) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--color-primary) !important;
    border-color: var(--neon-primary) !important;
    color: var(--color-black) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 10px var(--glow-3) !important;
}

.flatpickr-day.today {
    border-color: var(--neon-primary) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.3) !important;
    opacity: 0.5 !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--color-primary) !important;
    fill: var(--color-primary) !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(208, 255, 0, 0.1) !important;
    border-radius: 8px !important;
}

.select-icon {
    pointer-events: none;
    z-index: 1;
}

/* Add More City Button */
.add-city-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--glow-3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Improved touch target */
    min-height: 52px;
}

.add-city-btn:hover {
    background: rgba(208, 255, 0, 0.1);
    border-color: var(--neon-primary);
    color: var(--color-primary);
}

.add-city-btn span {
    display: block;
    text-align: center;
    width: 100%;
}

.add-city-btn i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.8;
    pointer-events: none;
}

/* Phone Number Row */
.phone-row {
    display: flex;
    gap: 12px;
    margin-bottom: 0px;
    align-items: stretch;
}

.country-code-wrapper {
    flex-shrink: 0;
    width: 110px;
    max-width: 110px;
    overflow: hidden;
}

.country-code-display {
    padding: 16px 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(208, 255, 0, 0.3);
    border-radius: 12px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 52px;
    box-sizing: border-box;
}

.phone-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.phone-input-wrapper .form-input {
    padding-right: 50px;  /* Already correct */
    width: 100%;
}


.phone-row + .field-error {
    margin-top: 6px;
    margin-bottom: 16px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-black);
    background: var(--neon-primary);
    border: 2px solid var(--neon-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    /* Improved touch target */
    min-height: 56px;
}

.submit-btn:hover:not(:disabled) {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-message.success {
    background: var(--glow-green-1);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error-soft);
    display: block;
}

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

/* ==========================================
   RESPONSIVE DESIGN - IMPROVED
========================================== */

/* Large Desktop - 1200px+ */
@media (min-width: 1200px) {
    .hero-container {
        gap: 80px;
    }
}

/* Laptop/Tablet - 1024px */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }

    .booking-card {
        max-width: 450px;
    }
    
    .hero-title {
        font-size: clamp(28px, 4.5vw, 48px);
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 20px 60px;
        min-height: auto;
        /* Fix background for mobile */
        background-attachment: scroll;
    }
    
    .hero-bg {
        background-attachment: scroll;
        background-position: center center;
    }

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

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: clamp(26px, 6vw, 40px);
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: clamp(15px, 3vw, 20px);
        margin-bottom: 24px;
    }

    .hero-features {
        margin-top: 24px;
    }

    .hero-features li {
        font-size: 16px;
        gap: 14px;
        margin-bottom: 16px;
    }
    
    .hero-features li i {
        font-size: 22px;
        min-width: 28px;
    }

    .booking-card {
        max-width: 100%;
        margin-left: 0;
        border-radius: 18px;
    }

    .form-header {
        padding: 18px 20px;
        border-radius: 18px 18px 0 0;
    }
    
    .form-title {
        font-size: 19px;
    }

    .booking-card form {
        padding: 20px;
    }

    .trip-type-tabs {
        gap: 10px;
        padding: 4px;
    }

    .trip-tab {
        padding: 13px 18px;
        font-size: 14.5px;
        min-height: 46px;
    }

    .journey-type-options {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .radio-option {
        flex: 1;
        min-width: 140px;
    }

    .form-input {
        padding: 15px 18px;
        padding-right: 48px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .input-icon {
        right: 16px;
        font-size: 15px;
    }

    .phone-row {
        gap: 10px;
    }
    
    .country-code-wrapper {
        width: 95px;
        flex-shrink: 0;
    }
    
    .country-code-display {
        padding: 15px 10px;
        font-size: 14px;
        min-height: 50px;
    }
    
    .phone-input-wrapper {
        flex: 1;
        min-width: 0;
    }
    
    .phone-input-wrapper .form-input {
        width: 100%;
    }

    .submit-btn {
        padding: 16px 24px;
        font-size: 15.5px;
        min-height: 54px;
    }
}

/* Small Tablets / Large Phones - 600px */
@media (max-width: 600px) {
    .phone-row {
        gap: 10px;
    }
    
    .country-code-wrapper {
        width: 90px;
    }
    
    .country-code-display {
        padding: 14px 8px;
        font-size: 14px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 16px 50px;
    }

    .hero-title {
        font-size: clamp(22px, 6.5vw, 32px);
        margin-bottom: 14px;
        letter-spacing: -0.3px;
    }
    
    .hero-route {
        white-space: normal;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 20px;
        letter-spacing: 0.8px;
    }

    .hero-features {
        margin-top: 20px;
    }

    .hero-features li {
        font-size: 15px;
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .hero-features li i {
        font-size: 20px;
        min-width: 26px;
    }

    .booking-card {
        border-radius: 16px;
        border-width: 1.5px;
    }

    .form-header {
        padding: 16px 18px;
        border-radius: 16px 16px 0 0;
    }
    
    .form-title {
        font-size: 18px;
    }

    .booking-card form {
        padding: 18px;
    }

    .trip-type-tabs {
        gap: 8px;
        padding: 3px;
        margin-bottom: 18px;
    }

    .trip-tab {
        padding: 12px 14px;
        font-size: 14px;
        min-height: 44px;
        border-radius: 8px;
    }

    .journey-type-options {
        gap: 16px;
        margin-bottom: 18px;
    }
    
    .radio-option {
        flex: 1;
        min-width: 130px;
    }
    
    .radio-custom {
        width: 20px;
        height: 20px;
    }
    
    .radio-option input[type="radio"]:checked + .radio-custom::after {
        width: 10px;
        height: 10px;
    }
    
    .radio-label {
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-input {
        padding: 14px 16px;
        padding-right: 46px;
        font-size: 14px;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .input-icon {
        right: 14px;
        font-size: 14px;
    }

    .add-city-btn {
        padding: 13px 16px;
        font-size: 14px;
        min-height: 48px;
    }

    .phone-row {
        flex-direction: row; /* keep both fields in one row on mobile */
        gap: 10px;
        margin-bottom: 18px;
        align-items: stretch;
    }

    .country-code-wrapper {
        width: 92px;
        max-width: 92px;
    }

    .country-code-display {
        width: 100%;
        padding: 14px 10px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .phone-input-wrapper .form-input {
        width: 100%;
    }

    .submit-btn {
        padding: 15px 22px;
        font-size: 15px;
        min-height: 52px;
        border-radius: 10px;
        letter-spacing: 0.3px;
    }
    
    .field-error {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .form-message {
        padding: 11px 14px;
        font-size: 13px;
        margin-top: 14px;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .hero-section {
        padding: 90px 14px 40px;
    }
    
    .hero-title {
        font-size: clamp(20px, 7vw, 28px);
    }
    
    .hero-subtitle {
        font-size: clamp(13px, 4vw, 16px);
    }
    
    .booking-card form {
        padding: 16px;
    }
    
    .trip-tab {
        padding: 10px 12px;
        font-size: 13px;
        min-height: 42px;
    }
    
    .form-input {
        padding: 13px 14px;
        padding-right: 44px;
        font-size: 13px;
        min-height: 46px;
    }
    
    .country-code-wrapper {
        width: 86px;
        max-width: 86px;
    }

    .country-code-display {
        width: 100%;
        padding: 13px 10px;
        font-size: 13px;
        min-height: 46px;
    }
    
    .phone-input-wrapper .form-input {
        padding: 13px 14px;
        padding-right: 44px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 50px;
    }
}


/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 16px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-title {
        font-size: clamp(20px, 4vw, 28px);
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: clamp(13px, 2vw, 16px);
        margin-bottom: 16px;
    }
    
    .hero-features {
        margin-top: 16px;
    }
    
    .hero-features li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .booking-card form {
        padding: 16px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
}

/* High DPI Displays - Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .trip-tab {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    .radio-option {
        padding: 10px 0;
        min-height: 44px;
    }
    
    .form-input {
        min-height: 52px;
    }
    
    .submit-btn {
        min-height: 56px;
    }
    
    /* Remove hover effects on touch devices */
    .trip-tab:hover {
        background: transparent;
        color: var(--color-gray-100);
    }
    
    .trip-tab.active:hover {
        background: var(--color-primary);
        color: var(--color-black);
    }
    
    .hero-features li:hover {
        transform: none;
    }
    
    .submit-btn:hover:not(:disabled) {
        background: var(--neon-primary);
        color: var(--color-black);
        transform: none;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        background: white;
        color: black;
        min-height: auto;
    }
    
    .hero-bg,
    .hero-overlay,
    .hero-section::before,
    .hero-section::after {
        display: none;
    }
    
    .booking-card {
        border: 2px solid #000;
        background: white;
    }
}

/* Accessibility - Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-service-type::after {
        animation: none;
    }
}
