@import url('https://fonts.googleapis.com/css2?family=Sequel+Sans:wght@400;600;700&display=swap');

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

/* Hide default browser date and time icons */
.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 2rem;
    height: 100%;
    cursor: pointer;
}

/* Google Places Autocomplete z-index fix */
.pac-container {
    z-index: 10001 !important;
}

/* Map modal search input styling */
#mapSearch {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Enhanced date and time inputs */
.date-input, .time-input {
    position: relative;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 45px 12px 16px !important;
    font-size: 14px;
    font-family: 'Sequel Sans', Arial, sans-serif;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.date-input:focus, .time-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Custom icons for date and time inputs */
.date-input {
    background-image: url('/assets/calendar-icon.png');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.time-input {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"%3E%3Cpath d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/%3E%3Cpath d="M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Show native picker on hover/focus */
.date-input::-webkit-calendar-picker-indicator,
.time-input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;
    width: 18px;
    height: 18px;
    opacity: 0;
    cursor: pointer;
}

.date-input:hover::-webkit-calendar-picker-indicator,
.time-input:hover::-webkit-calendar-picker-indicator,
.date-input:focus::-webkit-calendar-picker-indicator,
.time-input:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* City dropdown positioning fix */
.form-group select {
    position: relative;
    z-index: 10000;
}

/* Fix dropdown positioning in mobile view */
@media (max-width: 768px) {
    .form-group select {
        position: relative;
        z-index: 10001 !important;
        transform: none;
        top: 0;
        bottom: auto;
        appearance: menulist;
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
    }
    
    /* Ensure dropdown opens downward below the field */
    .form-group {
        position: relative;
        overflow: visible;
    }
    
    /* Force dropdown to open downward */
    select option {
        direction: ltr;
    }
}

/* Location input mobile sizing adjustment */

/* Mobile responsive styling for enhanced date and time inputs */
@media (max-width: 768px) {
    .date-input, .time-input {
        padding: 10px 40px 10px 12px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        background-size: 16px !important;
        background-position: right 10px center !important;
    }
    
    /* Location inputs mobile styling */
    #pickup, #dropoff {
        background-size: 16px !important;
        background-position: right 10px center !important;
        padding-right: 35px !important;
    }
}
@media (max-width: 480px) {
    .date-input, .time-input {
        padding: 8px 35px 8px 10px !important;
        font-size: 16px !important;
        background-size: 14px !important;
        background-position: right 8px center !important;
    }
    
    /* Location inputs mobile styling */
    #pickup, #dropoff {
        background-size: 14px !important;
        background-position: right 8px center !important;
        padding-right: 30px !important;
    }
}

body {
    font-family: 'Sequel Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* Fixed Header Styles - More Reliable Than Sticky */
header {
    background: #000000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Enhanced scroll behavior */
 header.scrolled {
background: #000000 !important; /* Force solid black */
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}

/* Add top padding to body to compensate for fixed header */
body {
    font-family: 'Sequel Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    height: auto;
    min-height: 100%;
    padding-top: 80px; /* Adjust based on header height */
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 1rem;
    gap: 2rem;
    width: 100%;
}

.logo img {
    width: 150px;
    height: auto;
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: #969692;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

nav a:hover {
    opacity: 0.8;
}

nav a.active {
    color: #E1E1D5;
    font-weight: 400;
}

/* Book Your Trip navigation item - matches other menu items */
nav a.book-trip-nav {
    color: #969692;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

nav a.book-trip-nav:hover {
    opacity: 0.8;
}

nav a.book-trip-nav.active {
    color: #E1E1D5;
    font-weight: 400;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    justify-self: end;
}

.header-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #E1E1D5;
    background: transparent;
    color: #E1E1D5;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Sequel Sans', Arial, sans-serif;
    white-space: nowrap;
}

.header-btn.user-greeting {
    border: none;
    background: none;
    cursor: default;
}

.header-btn:hover {
    background: #e1e1d5a0;
    color: #E1E1D5;
}

.header-btn.primary {
    background: white;
    color: #000000;
}

.header-btn.primary:hover {
    background: #000000;
    color: #F5F5F5;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #E1E1D5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #000000;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem 1rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #E1E1D5;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 3rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: #969692;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.mobile-menu ul li a.active {
    color: #E1E1D5;
    font-weight: 400;
}

/* Mobile Book Your Trip styling - matches other menu items */
.mobile-menu ul li a.book-trip-nav {
    color: #969692;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    transition: opacity 0.3s ease;
}

.mobile-menu ul li a.book-trip-nav.active {
    color: #E1E1D5;
    font-weight: 400;
}

.mobile-menu .mobile-menu-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu .mobile-menu-buttons .header-btn {
    max-width: 120px;
    text-align: center;
    align-self: flex-start;
}

/* Hero Section */
.hero-section {
    background: white;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
    padding: 2rem 0;
    padding-top: 5rem;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 1rem;
    width: 100%;
    align-items: center;
}

.hero-content {
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #000000;
}

.booking-form {
    background: transparent;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    color: #B6B6B6;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
    color: #000000;
    width: 100%;
    appearance: none;
    cursor: pointer;
}

/* Special styling for date and time inputs only */
.form-group input[type="date"],
.form-group input[type="time"] {
    background-image:  url('../assets/calendar-icon.png') !important;
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1rem;
    padding-right: 2rem;
}

/* Remove special styling for text-based inputs */
.form-group input[type="tel"],
.form-group input[type="email"] {
    background-image: none !important;
    padding-right: 0;
    cursor: text;
}

/* Standard placeholder styling for all inputs */
.form-group input::placeholder {
    color: #B6B6B6;
    opacity: 1;
}

/* Black placeholder color for date and time fields */
.form-group input[name="date"]::placeholder,
.form-group input[name="time"]::placeholder {
    color: #000000;
    opacity: 1;
}

/* Override date and time input icons on mobile */
@media (max-width: 768px) {
    .form-group input[type="date"],
    .form-group input[type="time"] {
        background-image: url('/public/assets/calendar-icon.png') !important;
        background-size: 0.6rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 480px) {
    .form-group input[type="date"],
    .form-group input[type="time"] {
        background-image: url('/public/assets/calendar-icon.png') !important;
        background-size: 0.5rem !important;
        padding-right: 0.8rem !important;
    }
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-bottom-color: #000000;
}

.location-row,
.contact-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}


.form-bottom {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.see-prices-btn {
    background: #000000;
    color: white;
    padding: 0.8rem 2rem;
   border-width: 1px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sequel Sans', Arial, sans-serif;
    min-width: 150px;
}

.see-prices-btn:hover {
    background: #ffffff;
    color:#000000;
    border-color: black;
 
}

.login-link {
    color: #5D5D5D;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding-top: 6px;
}

.app-downloads {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.app-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-button img {
    height: 50px;
    width: auto;
    display: block;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 10px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile-specific hero banner */
@media (max-width: 768px) {
    .hero-image img {
        content: var(--mobile-banner, url('/assets/hero-mobile-banner.jpg'));
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #F5F5F5;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-box {
    background: #F3F3F3;
    padding: 4rem 2.5rem;
    border-radius: 18px;
    text-align: center;
    border: none;
}

.feature-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 100;
    color: #000000;
    margin-bottom: 0.8rem;
    font-family: 'Sequel Sans', Arial, sans-serif;
}

.feature-text {
    font-size: 0.9rem;
    color: #6D6D6D;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Features Slider - Updated for 2 full + 20% of third */
@media (max-width: 768px) {
    .features-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 2rem;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .features-container::-webkit-scrollbar {
        display: none;
    }

    .feature-box {
        min-width: 36%;
        max-width: 39% !important;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 2.5rem 0.8rem;
    }

    .feature-box:last-child {
        margin-right: 1rem;
    }

    .feature-image {
        width: 35px;
        height: 35px;
        margin-bottom: 0.6rem;
    }

    .feature-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .feature-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .features-container {
        gap: 2rem;
        padding: 0 0.75rem;
    }

    .feature-box {
        min-width: 36%;
        max-width: 39% !important;
        flex-shrink: 0;
        padding: 2.5rem 0.6rem;
    }

    .feature-box:last-child {
        margin-right: 0.75rem;
    }

    .feature-image {
        width: 30px;
        height: 30px;
        margin-bottom: 0.5rem;
    }

    .feature-title {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .feature-text {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
    background: #F5F5F5;
}

.section:nth-child(even) {
    background: #FFFFFF;
    padding-top: 8rem;
    padding-bottom:8rem;
   
}

/* Benefits Section - Updated Style for Better Desktop and Mobile Views */
.benefits-section {
    background: var(--benefits-bg-desktop, url('/assets/hero-desktop.jpg')) no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.benefits-title {
    text-align: center;
    color: #000000;
    margin-bottom: 6rem;
    padding-top: 6rem;
}

.benefits-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

.benefits-title .line1 {
    display: block;
    margin-bottom: 0.5rem;
}

.benefits-title .line2 {
    display: block;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: left;
}

.benefits-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: right;
}

.benefit-item {
    color: #000000;
}

.benefits-left .benefit-item {
    align-items: flex-start;
}

.benefits-right .benefit-item {
    align-items: flex-end;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.benefits-left .benefit-icon {
    margin-left: 0;
    margin-right: auto;
}

.benefits-right .benefit-icon {
    margin-left: auto;
    margin-right: 0;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    filter: none;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: #000000;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 250px;
    color: #6D6D6D;
font-weight: lighter;
}

.benefits-left .benefit-item p {
    margin-left: 0;
    margin-right: auto;
}

.benefits-right .benefit-item p {
    margin-left: auto;
    margin-right: 0;
}

/* Desktop specific improvements - using cover to show full image */
@media (min-width: 769px) {
    .benefits-section {
        background-size: cover;
        min-height: 100vh;
        padding-top: 0;
        padding-bottom: 4rem;
    }

    .benefits-title {
        margin-bottom: 8rem;
        padding-top: 1rem;
    }

    .benefits-title h2 {
        font-size: 3rem;
        font-weight: 300;
    }
}

/* Large desktop improvements */
@media (min-width: 1200px) {
    .benefits-section {
        background-size: auto;
        min-height: auto;
        padding-top: 0;
        padding-bottom: 10rem;
    }

    .benefits-title {
        margin-bottom: 10rem;
        padding-top: 1rem;
    }

    .benefits-content {
        gap: 6rem;
    }
}

/* Ultra-wide desktop improvements */
@media (min-width: 1600px) {
    .benefits-section {
        background-size: contain;
        min-height: auto;
        padding-top: 0;
        padding-bottom: 12rem;
    }

    .benefits-title {
        padding-top: 5rem;
        margin-bottom: 8rem;
    }
}

/* For very wide screens, ensure the background doesn't get too small */
@media (min-width: 1920px) {
    .benefits-section {
        min-height: auto;
    }
}

/* Mobile styles for benefits section */
@media (max-width: 768px) {
    .benefits-section {
        min-height: auto;
        padding: 0;
        background: white;
        background-attachment: scroll;
        position: relative;
        display: block;
    }

    .benefits-section::before {
        content: '';
        display: block;
        width: 100%;
        height: 100vh;
        background: var(--benefits-bg-mobile, url('/assets/benefits-mobile.jpg')) no-repeat center center;
        background-size: cover;
        margin: 0;
        position: relative;
    }

    .benefits-section::after {
        content: "Better Benefits \A For Tawasul Limousine";
        position: absolute;
        top: 3%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #000000;
        font-size: 1.5rem;
        font-weight: 300;
        text-align: center;
        z-index: 10;
        width: 90%;
        padding: 0 1rem;
        line-height: 1.3;
        white-space: pre-line;
    }

    .benefits-container {
        padding: 0;
        position: relative;
        z-index: 2;
        margin: 0;
    }

    .benefits-title {
        display: none;
    }

    .benefits-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        align-items: center;
        justify-content: center;
    }

    .benefits-left,
    .benefits-right {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .benefit-item {
        color: #000000;
        padding: 2rem 1rem;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

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

    .benefits-left .benefit-icon,
    .benefits-right .benefit-icon {
        margin: 0 auto 0.8rem auto;
    }

    .benefits-left .benefit-item p,
    .benefits-right .benefit-item p {
        margin: 0 auto;
        text-align: center;
        font-weight: lighter;
        color:#6D6D6D;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
     
    }

    .benefit-icon img {
        width: 50px;
        height: 50px;
        filter: none;
    }

    .benefit-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: #000000;
    }

    .benefit-item p {
        font-size: 0.9rem;
        max-width: 100%;
       color: #6D6D6D;
font-weight: lighter;
    }
}

@media (max-width: 480px) {
    .benefits-section::after {
        font-size: 1.3rem;
        top: 3%;
        width: 85%;
        padding: 0.8rem;
    }

    .benefits-container {
        padding: 0;
        margin: 0;
    }

    .benefits-content {
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .benefits-left,
    .benefits-right {
        gap: 0;
    }

    .benefit-item {
        padding: 1.5rem 0.75rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.6rem;
    }

    .benefit-icon img {
        width: 50px;
        height: 50px;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }
}

/* Section 4 - Updated with new container design */
.section-4 {
    padding: 4rem 0;
    background: #F3F3F3 !important;
}

.section-4-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-4-container {
    background: var(--section4-bg-desktop, url('/assets/section4-desktop.jpg')) no-repeat center center;
    background-size: contain;
    border-radius: 20px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-4-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 2rem;
    padding-bottom: 3rem;
}

.section-4-text-container {
    background: #00000063;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.section-4-text-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-4-text-container p {
    font-size: 1rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
    flex: 1;
}

.apply-now-btn {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sequel Sans', Arial, sans-serif;
    align-self: flex-end;
    width: auto;
}

/* Section 4 Footer inside container */
.section-4-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-4-footer-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.section-4-footer-logo img {
    height: 80px;
    width: auto;
}

.section-4-footer-text {
    color: #6D6D6D;
    font-size: 0.9rem;
    line-height: 1.4;
}

.section-4-footer-center {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.section-4-footer-center img {
    height: 35px;
    width: auto;
}

.download-now-btn {
   background: TRANSPARENT;
color: #ffffff;
padding: 0.8rem 1.5rem;
border: 1PX SOLID;
border-radius: 6px;
font-size: 0.9rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Sequel Sans', Arial, sans-serif;
white-space: nowrap;
}

.download-now-btn:hover {
    background: white;
    color: #000000;
}

/* Mobile styles for Section 4 */
@media (max-width: 768px) {
    .section-4 {
        padding: 2rem 0;
    }

    .section-4-content {
        padding: 0 0.75rem;
    }

    .section-4-container {
        min-height: 300px;
        border-radius: 15px;
        background: var(--section4-bg-mobile, url('/assets/section4-mobile.jpg')) no-repeat center center;
        background-size: cover;
    }

    .section-4-content-wrapper {
        padding: 2rem 1rem;
        justify-content: center;
        padding-bottom: 25rem;
    }

    .section-4-text-container {
        max-width: 100%;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .section-4-text-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .section-4-text-container p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .apply-now-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        align-self: flex-end;
    }

    .section-4-footer {
        padding: 1rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1rem;
        text-align: center;
    }

    .section-4-footer-logo {
        grid-row: 1;
        justify-self: center;
    }

    .section-4-footer-logo img {
        height: 60px;
    }

    .section-4-footer-text {
        grid-row: 2;
        font-size: 0.8rem;
    }

    .section-4-footer-apps {
        grid-row: 3;
        justify-self: center;
        gap: 0.5rem;
    }

    .section-4-footer-apps img {
        height: 28px;
    }

    .download-now-btn {
        grid-row: 4;
        justify-self: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-4-content-wrapper {
        padding: 1.5rem 0.5rem;
        padding-bottom: 25rem;
    }

    .section-4-text-container {
        padding: 1.5rem;
        margin-bottom: 0;
    }

    .section-4-text-container h2 {
        font-size: 1.3rem;
    }

    .section-4-text-container p {
        font-size: 0.85rem;
    }

    .section-4-footer {
        padding: 0.8rem;
    }

    .section-4-footer-text {
        font-size: 0.75rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--faq-bg-desktop, #FFFFFF) no-repeat center center;
    background-size: cover;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000000;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #F5F5F5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
      background: #EEEEEE;
    transition: background-color 0.3s ease;
}

 
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666666;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #EEEEEE;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 4rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
        background: var(--faq-bg-mobile, #FFFFFF) no-repeat center center;
        background-size: cover;
    }

    .faq-section h2 {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.3rem;
        margin-right: 0.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: left;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #333;
            line-height: 1.2;
}

.section p {
    font-size: 14px;
    color: #6D6D6D;
    max-width: 100%;
    margin: 0 auto;
    
}
    .faq-answer p {
    font-size: 14px;
    color: #6D6D6D;
    max-width: 100%;
    margin: 0 auto;
   
}
  .section  p {
    font-size: 14px;
    color: #6D6D6D;
    max-width: 100%;
    margin: 0 auto;
 
}

 /* Footer Styles */
footer {
    background: #000000;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 1rem;
}

footer-brand p {
color: #959595 !important;
font-size: 14px;
font-weight: lighter ;
line-height: 1.5;
margin: 0;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    padding-left: 400px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 0.8rem;
}

.footer-menu ul li a {
    color: #B6B6B6;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-newsletter {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    border-bottom:1px solid;
    border-color: #3C3C3C;
    padding-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsletter-input input[type="email"] {
    padding: 0.8rem 0;
    border: none;
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: transparent;
    color: white;
    width: 100%;
}

.newsletter-input input[type="email"]::placeholder {
    color: #323232;
}

.newsletter-input input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0);
}

.notify-btn {
    background: rgba(255, 255, 255, 0);
    color: white;
    padding: 0.5rem 2rem;
    border-color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 100;
    border-width: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Sequel Sans', Arial, sans-serif;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    display: flex;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: space-between;
}

.footer-apps {
    display: flex;
    gap: 3rem;
}

.footer-apps .app-button {
    display: inline-block;
    overflow: hidden;
}

.footer-apps .app-button img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-copyright {
    text-align: center;
    color: #B6B6B6;
    font-size: 0.9rem;
}

.footer-bottom-menu {
    display: flex;
    gap: 2rem;
}

.footer-bottom-menu a {
    color: #94A190;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .header-content {
        gap: 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .footer-right {
        gap: 1.5rem;
    }
    
    .benefits-section::before {
        height: 130vh;
    }
}

/* Enhanced Mobile Styles for Sticky Header */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100vw !important;
    }

    /* Mobile Header - Fixed Position */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: #000000;
        transition: all 0.3s ease;
        width: 100vw;
        max-width: 100vw;
    }

    header.scrolled {
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 25px rgba(0,0,0,0.3);
    }

    /* Ensure body has proper padding for mobile */
    body {
        padding-top: 90px !important; /* Increased mobile spacing */
    }

    .header-content {
        grid-template-columns: auto 1fr auto;
        gap: 0.5rem;
        align-items: center;
        padding: 0 0.75rem;
        max-width: 100vw;
        width: 100vw;
    }
    
    .logo img {
        width: 90px !important;
        max-width: 90px !important;
    }
    
    nav {
        display: none;
    }
    
    .header-buttons {
        justify-self: end;
        gap: 0.25rem;
        display: flex;
        flex-shrink: 0;
    }

    .header-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    .mobile-menu-toggle {
        display: block;
        justify-self: end;
        margin-left: 0.25rem;
        padding: 0.25rem;
        font-size: 1.2rem;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .mobile-menu {
        display: block;
        width: 250px;
        max-width: 80vw;
        z-index: 1001;
    }
    
    /* Mobile Hero Section */
    .hero-section {
        padding: 0;
        min-height: auto;
        width: 100vw;
        max-width: 100vw;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
        padding: 0;
        max-width: 100vw;
        width: 100vw;
        margin: 0;
    }
    
    .hero-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 0.75rem;
    }
    
    .hero-image {
        order: 1;
        position: relative;
        height: 100%;
        min-height: 50vh;
        border-radius: 0;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
    }
    
    .hero-image::before {
        content: "Elevated Travel";
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        text-align: center;
        z-index: 10;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        width: 100%;
        padding: 0 0.5rem;
        line-height: 1.2;
    }

    .hero-image::after {
        content: "Experience";
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        text-align: center;
        z-index: 10;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        display: none;
    }

    .booking-form {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
        align-items: end;
    }
    
    .location-row,
    .contact-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
        align-items: end;
    }


    .form-group select,
    .form-group input {
        width: 100%;
        max-width: 100%;
        padding: 0.6rem 0;
        font-size: 10px !important;
        background-size: 0.6rem;
        padding-right: 1rem;
        text-align: left;
    }

    /* Ensure date and time fields match exactly */
    .form-group input[name="date"],
    .form-group input[name="time"] {
        font-size: 10px !important;
        width: 100%;
        max-width: 100%;
        padding: 0.6rem 0;
        padding-right: 1rem;
        background-size: 0.6rem;
    }

    .form-group label {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .form-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
             }

    .see-prices-btn {
        width: auto;
        text-align: center;
        padding: 0.8rem 2rem;
        min-width: 150px;
    }

    .login-link {
        text-align: left;
        font-size: 0.65rem;
        padding-top: 6px;
    }

    .app-downloads {
        margin-top: 1rem;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .app-button img {
        height: 40px;
        max-width: 120px;
    }

    /* Mobile Sections */
    .section {
        padding: 1.5rem 0;
        width: 100vw;
        max-width: 100vw;
    }

    .section-content {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
    }

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

    .section p {
        font-size: 10px;
     
    }
      .faq-answer p {
        font-size: 10px;
        padding-left: 25px;
    }
    
    /* Mobile Footer Styles */
    footer {
        padding: 1.5rem 0 1rem;
        width: 100vw;
        max-width: 100vw;
    }

    .footer-content {
        padding: 0 0.75rem;
        max-width: 100vw;
        width: 100vw;
        margin: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0rem;
        width: 100%;
    }
    
    .footer-brand {
        align-items: flex-start;
        margin-bottom: 0.75rem;
        width: 100%;
    }

    .footer-brand img {
        width: 90px;
        margin-bottom: 0.75rem;
        max-width: 90px;
    }

    .footer-brand p {
        font-size: 10px;
        margin-bottom: 1rem;
        line-height: 1.3;
        width: 100%;
        padding-right: 10px;
    }
    
    .footer-right {
   
        gap: 1rem;
        padding-left: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    .footer-menu {
        width: 100%;
    }

    .footer-menu ul li {
        margin-bottom: 0.4rem;
    }

    .footer-menu ul li a {
        font-size: 10px;
    }

    .footer-newsletter {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0;
        align-items: end;
        width: 100%;
        border-bottom: solid;
        border-color: #3C3C3C;
        padding-bottom: 10px;
        border-width: 1px;
    }

    .newsletter-input {
        flex: 1;
        width: auto;
    }

    .newsletter-input input[type="email"] {
        padding: 0.6rem 0;
        font-size: 12px;
        width: 100%;
    }

    .notify-btn {
        font-size: 11px;
        padding: 0.6rem 1.5rem;
        white-space: nowrap;
        width: auto;
        flex-shrink: 0;
    }
    
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
        padding-top: 1rem;
        width: 100%;
        border-top: none;
    }

    .footer-bottom-menu {
        justify-content: center;
        order: 1;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
        gap: 3rem;
        width: 100%;
    }

    .footer-bottom-menu a {
        font-size: 11px;
    }
    
    .footer-apps {
        justify-content: flex-start;
        order: 2;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-apps .app-button img {
        height: 28px;
        max-width: 100px;
    }

    .footer-copyright {
        order: 3;
        width: 100%;
        text-align: left;
    }

    .footer-copyright p {
        font-size: 8px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    /* Small Mobile - Fixed Header */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }

    /* Ensure proper body padding */
    body {
        padding-top: 80px !important; /* Restored proper spacing for small mobile */
    }

    .header-content {
        padding: 0 0.5rem;
    }
    
    .logo img {
        width: 100px;
    }
    
    .header-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 0;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-image {
        height: 100%;
        min-height: 40vh;
        margin: 0;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-image::before {
        font-size: 2rem;
        top: 75%;
        font-weight: 100;
    }

    .hero-image::after {
        font-size: 2rem;
        font-weight: 100;
        top: 85%;
    }
    
    .booking-form {
        margin-bottom: 1rem;
    }
    
    .form-row,
    .location-row,
    .contact-row {
        gap: 0.5rem;
        align-items: end;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .location-row,
    .contact-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-group select,
    .form-group input {
        padding: 0.5rem 0;
        font-size: 10px !important;
        background-size: 0.5rem;
        padding-right: 0.8rem;
        text-align: left;
    }

    /* Ensure date and time fields match exactly on small mobile */
    .form-group input[name="date"],
    .form-group input[name="time"] {
        font-size: 10px !important;
        width: 100%;
        max-width: 100%;
        padding: 0.5rem 0;
        padding-right: 0.8rem;
        background-size: 0.5rem;
    }

    .form-group label {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
        text-align: left;
    }

    .see-prices-btn {
        padding: 0.6rem 1.2rem;
        font-size: 11px;
        min-width: 120px;
    }
    
    .booking-form-modal .see-prices-btn {
        padding: 0.6rem 1.2rem;
        font-size: 11px;
        min-width: 120px;
    }

    .login-link {
        font-size: 0.6rem;
        padding-top: 4px;
    }
    
    .app-button img {
        height: 35px;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .section-content {
        padding: 0 0.5rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-right {
       
        text-align: left;
    }
    
    .footer-bottom-menu {
        flex-wrap: wrap;
    }
    
    .footer-bottom-menu a {
        font-size: 12px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .header-content,
    .hero-container,
    .section-content,
    .footer-content {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section h2 {
        font-size: 3rem;
    }
}

/* Map Modal Styles - Higher z-index than booking modal */
.map-modal {
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    height: 80%;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.map-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.map-close {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.map-close:hover {
    color: #000;
}

.map-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.map-search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.map-search-input:focus {
    border-color: #535456;
}

.current-location-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #535456;
    color: white;
    border: none;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.current-location-btn:hover {
    background-color: #404142;
}

.current-location-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.map-container {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background-color: #f8f9fa;
}

.confirm-location-btn,
.cancel-location-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-location-btn {
    background-color: #28a745;
    color: white;
}

.confirm-location-btn:hover {
    background-color: #218838;
}

.cancel-location-btn {
    background-color: transparent;
    color: #666;
    border: 2px solid #e1e5e9;
}

.cancel-location-btn:hover {
    background-color: #f8f9fa;
    border-color: #535456;
    color: #535456;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.booking-modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.booking-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    color: white;
    border-radius: 15px 15px 0 0;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-modal-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    line-height: 1;
}

.booking-modal-close:hover {
    color: #ddd;
}

.booking-modal-body {
    padding: 2rem;
}

.booking-form-modal .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-form-modal .location-row,
.booking-form-modal .contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-form-modal .form-group {
    margin-bottom: 0;
}

.booking-form-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #000000;
    font-size: 0.9rem;
}

.booking-form-modal .form-group select,
.booking-form-modal .form-group input[type="text"],
.booking-form-modal .form-group input[type="date"],
.booking-form-modal .form-group input[type="time"],
.booking-form-modal .form-group input[type="tel"],
.booking-form-modal .form-group input[type="email"] {
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
    color: #000000;
    width: 100%;
    appearance: none;
    cursor: pointer;
}

/* Special styling for date and time inputs only in modal */
.booking-form-modal .form-group input[type="date"],
.booking-form-modal .form-group input[type="time"] {
    background-image: url('/public/assets/calendar-icon.png') !important;
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1rem;
    padding-right: 2rem;
}

/* Remove special styling for text-based inputs in modal */
.booking-form-modal .form-group input[type="tel"],
.booking-form-modal .form-group input[type="email"] {
    background-image: none !important;
    padding-right: 0;
    cursor: text;
}

.booking-form-modal .form-group input:focus,
.booking-form-modal .form-group select:focus {
    outline: none;
    border-bottom-color: #000000;
}

/* Modal placeholder styling to match home page */
.booking-form-modal .form-group input::placeholder {
    color: #B6B6B6;
    opacity: 1;
}

/* Black placeholder color for date and time fields in modal */
.booking-form-modal .form-group input[name="date"]::placeholder,
.booking-form-modal .form-group input[name="time"]::placeholder {
    color: #000000;
}

.booking-form-modal .form-bottom {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.booking-form-modal .see-prices-btn {
    background: #000000;
    color: white;
    padding: 0.8rem 2rem;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sequel Sans', Arial, sans-serif;
    min-width: 150px;
}

.booking-form-modal .see-prices-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.booking-form-modal .cancel-btn {
    background: transparent;
    color: #666;
    border: 2px solid #e1e5e9;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form-modal .cancel-btn:hover {
    background-color: #f8f9fa;
    border-color: #535456;
    color: #535456;
}

/* Mobile Responsive for Booking Modal */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .booking-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .booking-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .booking-modal-body {
        padding: 1.5rem;
    }
    
    .booking-form-modal .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-modal .location-row,
    .booking-form-modal .contact-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-modal .form-group select,
    .booking-form-modal .form-group input {
        padding: 0.6rem 0;
        font-size: 10px !important;
        background-size: 0.6rem;
    }
    
    .booking-form-modal .form-group input[type="date"],
    .booking-form-modal .form-group input[type="time"] {
        padding-right: 1rem;
    }
    
    .booking-form-modal .form-group label {
        font-size: 10px;
        margin-bottom: 0.3rem;
    }
    
    .booking-form-modal .form-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }
    
    .booking-form-modal .see-prices-btn {
        width: auto;
        text-align: center;
        padding: 0.8rem 2rem;
        min-width: 150px;
    }
    
    .booking-form-modal .cancel-btn {
        width: auto;
        padding: 0.8rem 2rem;
    }
}

/* Booking CTA Styles for Homepage */
.booking-cta {
    text-align: center;
    padding: 2rem 0;
    margin-top: 1rem;
}

.booking-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.book-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.quick-contact {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.quick-contact span {
    margin-right: 10px;
}

.phone-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .booking-cta {
        padding: 1.5rem 0;
    }
    
    .booking-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .book-now-btn {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
    
    .quick-contact {
        font-size: 0.9rem;
    }
}