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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #111;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 769px) {
    .header-container {
        flex-wrap: nowrap;
    }
    
    .header-contact {
        display: flex;
        margin-right: 0;
        margin-left: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
    margin-left: 2rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #ff3b3b;
}

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

.availability-badge {
    background-color: rgba(255, 59, 59, 0.2);
    color: #ff3b3b;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 59, 59, 0.3);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e10600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e10600;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.call-btn-header {
    background-color: #ff3b3b;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 59, 59, 0.3);
}

.call-btn-header:hover {
    background-color: #e10600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 59, 0.5);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
    background-color: #111; /* Fallback background color */
}

/* Hero Slideshow container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    opacity: 0;
    will-change: opacity;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
     white-space: nowrap; /* 👈 force single line */
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-btn-hero {
    background-color: #ff3b3b;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.call-btn-hero:hover {
    background-color: #e10600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.6);
}

/* Sticky Call Button */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff3b3b;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    background-color: #e10600;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 59, 59, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 59, 59, 0.8);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.services-section h2,
.about-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #111;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff3b3b;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff3b3b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-item strong {
    display: block;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem 0;
    background-color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 3rem auto;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3b3b;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

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

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.submit-btn {
    background-color: #ff3b3b;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
}

.submit-btn:hover {
    background-color: #e10600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Google Maps Section */
.maps-section {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    margin-top: 3rem;
}

@media (min-width: 769px) {
    .maps-section {
        height: 500px;
    }
}

.maps-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #0f0f0f;
    color: #cfcfcf;
    padding: 4.5rem 2rem 2rem;
    font-size: 0.95rem;
}

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

/* Footer Headings */
footer h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
}

footer h3::after {
    content: "";
    width: 35px;
    height: 2px;
    background-color: #ff3b3b;
    display: block;
    margin-top: 6px;
}

/* Footer Text */
footer p {
    color: #b5b5b5;
    line-height: 1.7;
}

/* Logo */
.footer-logo img {
    max-width: 170px;
    margin-bottom: 1rem;
}

/* Links */
.footer-links a {
    display: block;
    color: #b5b5b5;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff3b3b;
    transform: translateX(4px);
}

/* Social Media Links with SVG Icons */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #b5b5b5;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ff3b3b;
    transform: translateX(4px) scale(1.05);
}

.footer-social a:hover svg {
    transform: scale(1.1);
    fill: #ff3b3b;
}

/* Owner style  */

/* =========================
   OWNER MESSAGE SECTION
========================= */

.owner-message {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 1.5rem 1.8rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #e10600;
}

/* Owner photo */
.owner-photo {
    width: 150px;
    height: 150px;
    min-width: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e10600;
}

/* Text container */
.owner-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
}

.owner-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}




/* Booking Section */
.booking {
    padding: 5rem 2rem;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3b3b 0%, #e10600 100%);
    border-radius: 10px 10px 0 0;
}

.booking-form {
    width: 100%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.booking-form .form-group:last-of-type {
    margin-bottom: 0;
}

/* Select dropdown styling */
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group select:focus {
    outline: none;
    border-color: #ff3b3b;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

.form-group select option {
    padding: 0.5rem;
}







/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
    .owner-message {
        gap: 1rem;
        padding: 1.3rem 1.4rem;
    }

    .owner-photo {
        width: 45px;
        height: 45px;
        min-width: 50px;
    }

    .owner-info h3 {
        font-size: 1.1rem;
    }

    .owner-info p {
        font-size: 0.95rem;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
    .owner-message {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.4rem 1.2rem;
    }

    .owner-photo {
        width: 55px;
        height: 65px;
        min-width: 58px;
        margin-bottom: 0.6rem;
    }

    .owner-info h3 {
        font-size: 1.05rem;
    }

    .owner-info p {
        font-size: 0.95rem;
    }
}

/* Contact */
.footer-contact a {
    color: #ff3b3b;
    font-weight: 600;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact .location {
    margin-top: 0.8rem;
}

.footer-contact .availability {
    margin-top: 0.6rem;
    font-weight: 600;
    color: #ff3b3b;
}

/* Legal */
.footer-legal {
    margin-top: 1.8rem;
}

/* Bottom */
.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.phone-icon {
    width: 20px;
    color: #fdefef;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    
}



/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 40px;
    }

    .header-contact {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0 0 0;
        flex-wrap: wrap;
    }

    .header-phone {
        font-size: 0.9rem;
    }

    .availability-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background-color: #111;
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        padding-top: 100px;
        height: 100vh;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .call-btn-header {
        display: none;
    }

    nav {
        order: 2;
        margin-left: auto;
    }

    .hero {
        margin-top: 70px;
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
    }

    /* Mobile-optimized slideshow */
    .hero-slideshow {
        background-size: cover;
        background-position: center center;
        /* On mobile, we prioritize showing the center/main content */
        object-fit: cover;
    }

    .hero h1 {
        font-size: 2rem;
          white-space: normal; /* 👈 allow wrapping */
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        font-size: 0.85rem;
    }

    .sticky-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .maps-section {
        height: 400px;
    }

    .header-contact {
        display: none;
    }
    
      .booking-container {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    
    
    .booking {
        padding: 3rem 1.5rem;
    }

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

    .form-submit {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .services-section,
    .about-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .services-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text p {
        text-align: left;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }

    .hero-slideshow {
        background-size: cover;
        background-position: center center;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .call-btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }
    
     .booking-container {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }


    .maps-section {
        height: 350px;
    }
    
       .booking {
        padding: 3rem 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .contact-section {
        padding: 3rem 1rem 0;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
        max-height: 600px;
    }

    .hero-slideshow {
        background-size: cover;
        background-position: center center;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero {
        min-height: 350px;
        height: 55vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3.5rem 1.5rem 1.5rem;
    }

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

    footer h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-social {
        align-items: center;
    }

    .footer-social a:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 0.9rem;
    }

    .footer-logo img {
        max-width: 150px;
    }
}


/* =========================
   BOOKING FORM MOBILE OPTIMIZATION
========================= */

/* Mobile optimizations for booking form */
@media (max-width: 768px) {
    /* Booking form container optimization */
    .booking-form {
        padding: 1.5rem;
    }
    
    /* Date input mobile optimization */
    .booking-form input[type="date"] {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px; /* Better touch target */
        padding: 1rem 1.25rem;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Time input mobile optimization */
    .booking-form input[type="time"] {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px; /* Better touch target */
        padding: 1rem 1.25rem;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* All booking form inputs - better touch targets */
    .booking-form input[type="text"],
    .booking-form input[type="email"],
    .booking-form input[type="tel"] {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px; /* Better touch target */
        padding: 1rem 1.25rem;
    }
    
    /* Select dropdown mobile optimization */
    .booking-form select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px; /* Better touch target */
        padding: 1rem 1.25rem;
        padding-right: 3rem; /* More space for arrow */
        width: 100%;
    }
    
    /* Textarea mobile optimization */
    .booking-form textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 120px;
        padding: 1rem 1.25rem;
        width: 100%;
    }
    
    /* Labels - better spacing on mobile */
    .booking-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }
    
    /* Form group spacing */
    .booking-form .form-group {
        margin-bottom: 1.75rem;
    }
    
    /* Section header mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Booking form container - less padding */
    .booking-form {
        padding: 1.25rem;
    }
    
    /* Date and time inputs - even larger on small screens */
    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        font-size: 18px !important;
        min-height: 52px;
        padding: 1.125rem 1.25rem;
    }
    
    /* All inputs - larger touch targets */
    .booking-form input[type="text"],
    .booking-form input[type="email"],
    .booking-form input[type="tel"] {
        font-size: 18px !important;
        min-height: 52px;
        padding: 1.125rem 1.25rem;
    }
    
    /* Select - larger on small screens */
    .booking-form select {
        font-size: 18px !important;
        min-height: 52px;
        padding: 1.125rem 1.25rem;
        padding-right: 3.5rem;
    }
    
    /* Textarea */
    .booking-form textarea {
        font-size: 18px !important;
        min-height: 140px;
        padding: 1.125rem 1.25rem;
    }
    
    /* Labels */
    .booking-form .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }
    
    /* Section header */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* iOS Safari specific fixes for date/time inputs */
@supports (-webkit-touch-callout: none) {
    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        line-height: 1.5;
    }
    
    /* Fix for iOS date picker button */
    .booking-form input[type="date"]::-webkit-datetime-edit {
        padding: 0;
    }
    
    .booking-form input[type="date"]::-webkit-datetime-edit-fields-wrapper {
        padding: 0;
    }
    
    .booking-form input[type="date"]::-webkit-inner-spin-button,
    .booking-form input[type="date"]::-webkit-calendar-picker-indicator {
        height: 24px;
        width: 24px;
        padding: 0.25rem;
        cursor: pointer;
    }
    
    /* Fix for iOS time picker */
    .booking-form input[type="time"]::-webkit-inner-spin-button,
    .booking-form input[type="time"]::-webkit-calendar-picker-indicator {
        height: 24px;
        width: 24px;
        padding: 0.25rem;
        cursor: pointer;
    }
}

/* Android Chrome specific optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        color: #333;
    }
    
    .booking-form input[type="date"]:invalid,
    .booking-form input[type="time"]:invalid {
        color: #999;
    }
}

/* Landscape orientation - booking form */
@media (max-width: 768px) and (orientation: landscape) {
    .booking-form {
        padding: 1.25rem;
    }
    
    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        min-height: 44px;
        padding: 0.875rem 1rem;
    }
    
    .booking-form .form-group {
        margin-bottom: 1.25rem;
    }
}








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