/* SF Pro Display Font Variants */
@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Ultralight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Bold.ttf") format("opentype");
    font-weight: 500;
    font-style: bold;
}

/* Italic Styles */
@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-RegularItalic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-SemiboldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-ThinItalic.otf") format("opentype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-UltralightItalic.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}

/* Reset */
body, h1, h2, h3, p, a, button, span {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Common Styles */
.font-bold {
    font-weight: 700;
}
.font-regular{
    font-weight: 400;
}
.paragraph{
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Header */
.header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15%;
    background-color: #000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: padding 0.3s ease;
}

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

.logo img {
    height: 40px;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.nav a.active
{
    color: #009ED9;
}

.nav a:hover {
    color: #009ED9;
}

.quick-book {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.quick-book.active {
    background-color: #009ED9;
    color: #ffffff; 
    border-radius: 6px;
}

/* WhatsApp Enquiry Button */

.enquiry_button {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #009ED9;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    position: relative;
}

.enquiry_button.active {
    background-color: #009ED9;
    color: #ffffff; 
    border-radius: 6px;
}

/* Overlay background */
#whatsappOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Centered modal */
#whatsappModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px; /* same as service-card */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* same as service-card */
    min-width: 300px;
    max-width: 380px;
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #000;
}

/* Hover effect for modal (optional) */
#whatsappModal:hover {
    transform: translate(-50%, -52%); /* subtle lift */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Input styling */
#whatsappModal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Buttons inside modal */
#whatsappModal button {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#whatsappModal button:first-child {
    background-color: #009ED9; /* WhatsApp green */
    color: #fff;
}

#whatsappModal button:last-child {
    background-color: #ccc;
    color: #333;
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    min-height: 100vh;
    width: 300px;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    transition: 0.3s ease-in-out;
    z-index: 4000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}


.sidebar a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.sidebar .close-btn {
    align-self: flex-end;
    font-size: 34px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar.open {
    right: 0;
    background: #000000;
    height: 100vh;
    min-height: 100vh;
}


/* Quick book button inside sidebar */
.sidebar .quick-book {
    width: 100%;
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
}



/* Hero Section Styles */
#hero {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 60px 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
    top: 50px;
    font-family: 'Poppins', sans-serif;
}



/* Video Background */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;  /* Cover the entire hero */
    object-fit: cover;
    z-index: -1;   /* Send behind the content */
    filter: brightness(0.5);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: auto;
    text-align: left;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 3rem;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    text-transform: capitalize;

}

.hero-content p {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 300;
}

/* Hero Card (About & Why Sections) */
.hero-card {
    background: white;
    color: black;
    border-radius: 20px;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

/* About Section */
.about-section {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.about-section img {
    min-width: 300px;
    max-width: 380px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content {
    font-family: sans-serif;
    font-size: 1.3rem;
    flex: 1;
}

.about-content ul {
    list-style: disc;
    padding-left: 20px;
    color: #000;
}

.about-content a {
    color: #000;
    text-decoration: none;
}

.about-content a:hover {
    color: #00AEEF;
}

.about-content ul li {
    margin-bottom: 6px;
}

.about-content h2,
.why-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

#hero .about-paragraph {
    margin: 13px 0;
}


/* Why Section */
.why-section {
    padding: 40px;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.feature h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
}

/* About & Why Section Backgrounds */
#about {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    #hero {
        padding: 40px 5%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    #bg-video {
        height: 40vh;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section img {
        width: 100%;
        height: auto;
    }

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

.about-section {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.about-section img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

#hero .about-paragraph{
    margin: 13px 0px;

}

.why-section {
    padding: 40px;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}


.feature h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
}



/* Video Section */

#video-gallery {
    padding: 50px 15%;
    background-color: black;
    color: #fff;
    text-align: center;
    
}

#video-gallery h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}


.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    
}



.video-scroll-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
  }

.video-scroll-container::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

.video-item {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .video-item:hover {
    transform: translateY(-5px);
  }

.video-inner {
    border-radius: 20px 20px 0 0; /* Round top corners */
    overflow: hidden;
}

.video-inner video {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
  }

.video-title {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    font-weight: 500;
    padding: 0 15px;
}

.video-description {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #000;
    text-align: center;
    line-height: 1.4;
    padding: 0 15px 15px 15px; /* Adds space below the text */
}

/* Scrollbar wrapper styling */


.scroll-thumb {
    width: 50px;
    height: 6px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: left 0.3s ease;
}

/* Lightbox styling */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  #lightbox video {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
  }






/* Booking Section */
#booking {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 50px 15%;
    position: relative;
}

.booking-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
    color: #ffffff;
}

.booking-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}


.booking-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.booking-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.qr-code {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 20px;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-container img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.qr-container p {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info h3 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
}

.business-hours {
    font-size: 1.1rem !important;
    white-space: nowrap;
}

.business-hours span {
    color: #ffffff;
    font-size: 1.1rem !important;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
}

.contact-link img {
    width: 40px;
    height: 40px;
}

.googlebg{
    background: rgb(255, 255, 255); 
    justify-content: center;
    padding: 10px; 
    border-radius: 10px; 
    display: inline-block;
    min-width: 300px;
    max-width: 380px;
}

/* Carzmate Section */
#carzmate {
    padding: 30px 13%;
    background-color: black;
    color: white;
    overflow: hidden;
    position: relative;
}

#carzmate h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
}

.carzmate-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 100%;
    margin: 0 auto;
}

.grid-row {
    display: flex;
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
    background-color: black;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.row-content {
    display: flex;
    gap: 20px;
    position: absolute;
    background-color: black;
    padding-right: 20px;
    transition: transform 0.1s linear;
    height: 100%;
}

.car-card {
    flex: 0 0 calc((100% - 15% - 60px) / 4);
    border-radius: 20px;
    overflow: hidden;
    background-color: black;
    height: 300px;
}

.car-card-inner {
    position: relative;
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.car-card:hover .car-card-inner {
    transform: scale(1);
}

.car-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/* Info Section */
#info {
    width: 100%;
    padding: 0px 15%;
    background-color: black;
    color: white;
    overflow: hidden;
}

.info-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0 0px 0;
}

.info-content h2 {
    font-size: 3rem;
    font-weight: 500;
}

#info .hr{
    height: 1.1px;
    margin: 60px 0 0px 0;
    background: #2b2b2b;
    width: 100%;
}


/* Footer */

/* Footer Base */
.footer {
    background-color: rgb(255, 255, 255);
    padding: 50px 5%; /* side padding */
    margin-top: 10px;
    box-sizing: border-box;
    color: white;
}

/* Footer wrapper to restrict max width */
.footer-wrapper {
    max-width: 1280px;  /* restrict content width */
    margin: 0 auto;     /* center the content */
    display: flex;
    flex-direction: row; /* row layout for sections */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;    /* allow wrapping on smaller screens */
    width: 100%;
}

/* Footer Menu */
.footer-menu {
    flex: 1 1 0;
    min-width: 180px;
}

.footer-menu h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
}

.footer-menu nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}



.footer-menu nav a {
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-menu nav a:hover {
    color: rgb(0, 0, 0);
}

/* Google Review */
.footer-review {
    flex: 1 1 0;
    min-width: 180px;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    color: #000000;
}

.footer-review h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-review p {
    color: #000000;
    margin-bottom: 15px;
}

/* Container size */
.qr-small {
    width: 200px;
    height: 250px;
}

/* Iframe styling */
.qr-small iframe {
    height: 250px !important;
    border-radius: 10px;
    border: 0;
}

.footer-review .qr-small iframe {
    width: 400px !important;
    height: 250px !important;
    border-radius: 10px;
    border: 0;
}



/* Social Connect */
.footer-social {
    flex: 1 1 0;
    min-width: 180px;
    text-align: center;
    color: #000;
}

.footer-social h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.social-qr {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.qr-item img {
    max-width: 80px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.qr-item img:hover {
    transform: scale(1.1);
}

.qr-item p {
    font-size: 1rem;
    color: #000000;
}

/* Footer bottom copyright */
.footer-bottom {
    text-align: left;
    font-size: 0.9rem;
    color: #000000;
    padding-top: 30px; 
    max-width: 1280px;  /* restrict content width */
    margin: 0 auto;     /* center the content */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-menu, .footer-review, .footer-social {
        min-width: 320px;
        text-align: center;
    }
    .social-qr {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-menu nav{
        text-align: center;
    }
    .footer-review .qr-small iframe {
        width: 300px !important;
        justify-content: center;
    }
    .footer-social h3 {
        margin-bottom: 0px;
    }
}


.floating-book-btn-container{
    display: none;
    pointer-events: auto;
}

.header-book-container {
    position: relative;
    display: inline-flex;
}

.header-book-container .booking-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: -130px !important;
    width: 290px;
    background: #00000015;
    padding: 15px;
    display: none;
    z-index: 1001;
    border-radius: 15px;
    
}


.booking-dropdown {
    position: absolute;
    bottom: 100%;
    left: calc(50% - 155px);
    width: 310px;
    background: transparent;
    padding: 20px;
    display: none;
    border-radius: 15px;
}

.booking-dropdown.show {
    display: block;
}

.booking-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.363);
}

.booking-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-card .qr-container {
    margin: 15px 0;
}

.booking-card .qr-container img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}

.booking-card .qr-container p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details {
    text-align: center;
    margin-top: 20px;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 5px 0;
}

.contact-details .business-hours {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 10px;
    margin: 0 30px 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.whatsapp-link img {
    width: 28px;
    height: 28px;
}
.booking-card .contact-details .whatsapp-link{
    color: black !important;
}

.header-book-container .booking-dropdown.show {
    display: block;
}

.booking-card .contact-details h4{
    font-size: 1.4rem;
    color: #009ED9;
}

.business-hours-qr{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}
.business-hours-qr span{
    font-size: 1rem;
    font-weight: 500;
}

.booking-card .close-btn {
    position: absolute;
    top: 25px;
    right: 32px;
    background: none;
    border: none;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #333; /* Adjust color as needed */
    transition: color 0.3s ease;
}

/* Hidden class to toggle visibility */
.hidden {
    display: none;
}


.booking-card .close-btn:hover {
    color: #00AEEF; /* Highlight color on hover */
}


/* Responsive Styles */
@media (max-width: 1300px) {
    #hero {
        padding: 40px 11%;
    }
    #hero h1 {
        font-size: 3.8rem;
    }
    #hero p {
        font-size: 1.5rem;
    }

    .about-content h2,
.why-section h2 {
    font-size: 3rem;
}

    #hero .about-paragraph{
        margin: 8px 0;
        font-size: 1.3rem;
    }

    
    

    /* Booking Section */
    #booking {
        padding: 40px 11%;
    }
    
    .booking-text h2 {
        font-size: 3rem;
    }

    .booking-text p {
        font-size: 1.3rem;
    }

    .qr-container img {
        width: 150px;
        height: 150px;
        object-fit: contain;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .contact-info h3 {
        font-size: 1.4rem;
    }
    .contact-info .business-hours {
        font-size: 0.8rem ! important;
    }

    /* Carzmate */
    #carzmate {
        padding: 40px 8%;
    }

    .carzmate-grid {
        gap: 5px;
    }

    .car-card {
        flex: 0 0 calc((100% - 13% - 40px) / 3);
        height: 280px;
    }

    /* Info Section */
    #info {
        padding: 0px 10%;
    }
    .info-content h2 {
        font-size: 3rem;
    }

    /* Footer Section */
    .qr-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .qr-item img {
        width: 140px;
        height: 140px;
    }
    .qr-item p {
        font-size: 1rem;
        text-align: center;
    }
    .footer-logo img {
        width: 240px;
    }

    .header-book-container .booking-dropdown {
        right: -10px;
    }
}



@media (max-width: 1000px) {

    .header {
        padding: 20px 40px;
    }
    .nav {
        gap: 20px;
    }

    #hero {
        padding: 30px 8%;
    }
    #hero h1{
        font-size: 3.3rem;
    }
    #hero p{
        font-size: 1.3rem;
    }
    .hero-content {
        padding: 40px 0;
    }

    /* Hero Section */
    .features-grid{
        gap: 5px;
    }

    .about-content h2,
    .why-section h2 {
        font-size: 3rem;
    }

    .paragraph{
        font-size: 1.3rem;
    }

    #hero .about-paragraph{
        margin: 8px 0;
        font-size: 1.3rem;
    }

   

  

    /* Booking Section */
    #booking {
        padding: 30px 8%;
    }
    
    .booking-text h2 {
        font-size: 3rem;
    }

    .booking-text p {
        font-size: 1.2rem;
    }

    .qr-container img {
        width: 160px;
        height: 160px;
        object-fit: contain;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .contact-info h3 {
        font-size: 1.4rem;
    }
    .contact-info .business-hours {
        font-size: 0.8rem ! important;
    }

    /* Carzmate */
    #carzmate {
        padding: 30px 5%;
    }

    .carzmate-grid {
        gap: 5px;
    }

    .car-card {
        flex: 0 0 calc((100% - 5% - 20px) / 2);
        height: 280px;
    }

    /* Info Section */
    #info {
        padding: 0px 8%;
    }
    .info-content h2 {
        font-size: 3rem;
    }

    /* Footer Section */
    .qr-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .qr-item img {
        width: 130px;
        height: 130px;
    }
    .qr-item p {
        font-size: 1rem;
        text-align: center;
    }
    .footer-logo img {
        width: 220px;
    }

    

    /* Booking Section */
    #booking {
        padding: 30px 8%;
    }

    .booking-info {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .booking-text h2 {
        font-size: 3rem;
    }
    
    .booking-text p {
        font-size: 1.2rem;
    }

    .qr-container img {
        width: 160px;
        height: 160px;
        object-fit: contain;
    }
    .contact-link {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 1rem;
    }
    .contact-link img {
        width: 30px;
        height: 30px;
    }

    .header-book-container .booking-dropdown {
        right: -5px;
    }

}

@media (max-width: 800px) {
    .header{
        padding: 15px 17px;
    }
    .logo img {
        height: 30px;
    }
    .nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu span {
        width: 24px;
        height: 2.8px;
        background-color: #fff;
        transition: 0.3s;
    }

    .paragraph{
        font-size: 1.1rem;
    }

    /* Hero Section */

    #hero {
        padding: 60px 4%;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    #hero p{
        font-size: 1.1rem;
    }
    .hero-content {
        text-align: center;
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        padding-bottom: 20px;
    }

    #hero .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .why-section{
        padding: 15px;
    }

    #hero .about-paragraph{
        margin: 8px 0;
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

   

    /* Booking Section */
    #booking {
        padding: 20px 4%;
    }
    
    .booking-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .booking-text h2 {
        font-size: 3rem;
    }
    
    .booking-text p {
        font-size: 1.1rem;
    }
    
    .booking-info {
        align-items: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .qr-code {
        padding: 15px;
    }
    
    .qr-container img {
        width: 200px;
        height: 200px;
    }

    .contact-info p {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .contact-info h3 {
        font-size: 1.7rem;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .business-hours {
        font-size: 1.1rem !important;
    }
    
    .business-hours span {
        color: #ececec;
        font-size: 0.9rem !important;
    }

    /* Carzmate Section */

    #carzmate {
        padding: 10px 2%;
    }
    
    #carzmate h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .carzmate-grid {
        gap: 5px;
    }
    
    .grid-row {
        height: 240px;
    }

    .row-content {
        gap: 13px;
    }
    
    .car-card {
        flex: 0 0 calc((100% - 2% - 20px) / 2);
        height: 220px;
    }

    .car-card-inner {
        padding: 6px;
    }

    /* Info Section */
    #info {
        padding: 0px 5%;
    }
    #info .info-content h2 {
        font-size: 3rem;
    }

    /* Footer */
    .footer {
        padding: 30px 5%;
        margin-bottom: 40px;
    }

    .footer-content {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .social-connect{
        text-align: center;
    }

    .social-qr {
        gap: 40px;
    }

    .qr-item img {
        width: 130px;
        height: 130px;
    }

    .qr-item p {
        font-size: 0.9rem;
    }

    .footer-logo{
        text-align: center;
        align-self: center;
        margin-bottom: 35px;
    }

    .footer-logo img {
        width: 170px;
    }
    .footer-logo p {
        font-size: 1rem;
    }

    /* Floating Book Now Button for Mobile */

        .floating-book-btn-container {
            
            position: fixed;
            bottom: 0px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #000000f3;
            padding: 10px 10px 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.856);
            z-index: 999;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .floating-book-btn{
            position: relative;
            background: #ffffff;
            color: rgb(0, 0, 0);
            padding: 7px 15px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.363);
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            animation: pulseButton 1s ease-in-out infinite;
        }
    
        .floating-book-btn:hover {
            animation: none;
            transform: scale(1.05);
        }

        

        @keyframes pulseButton {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.06);
            }
            100% {
                transform: scale(1);
            }
        }

        .header-book-container {
            display: none;
        }
        
        .header-book-container .booking-dropdown {
            width: 280px;
            right: -20px;
        }

        .header-book-container {
            display: none;
        }
    
}

@media (max-width: 1200px) {
    .grid-row {
        -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
        mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    }
}

@media (max-width: 800px) {
    .grid-row {
        -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
        mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    }
    #video-gallery {
        padding: 10px 5%;
    }
    .video-item {
        flex: 0 0 280px;
    }
}



#services h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 500;
    padding: 30px 0 0 0 ;
    background-color: black;
    color: white;
   }

#services h2 a {
    color: white;
    text-decoration: none;
}

#services h2 a:hover {
    color: #009ED9;
    font-weight:500;
}


.services-intro {
    max-width: 900px;
    min-width: 300px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
}

.services-intro h3{
    font-size: 1.5rem;
    font-weight: 500;
}

.services-subintro {
    text-align: left;
    font-size: 1.5rem;
    color: #fff;
}

.services-container {
    display: flex;
    max-width: 1280px;
    flex-wrap: wrap;
    justify-content: left;
    padding-left: 30px;
    gap: 20px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 300px;
    max-width: 380px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.img-container img {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 15px;
    background-color: #f8f9fa;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    object-position: center; /* Centers the image within the container */
}


.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
}

.service-content p {
    font-size: 1.1rem;
    color: #000;
}
.service-content p a {
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
}

.service-content p a:hover {
    color: #009ED9;
    font-weight:500;
}


.service-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.service-content ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    color: #000;
}

.service-content ul li {
    margin-bottom: 6px;
}

@media (max-width: 800px) {
     .services-container {
        justify-content: center;
        padding: 60px 4%;
        }
        .services-intro {
            padding: 0 20px;
        }
        #services h2 {
            padding: 0 ;
            font-size: 2rem;
           }
        }
           

@media (max-width: 1200px) {
            .services-container {
                justify-content: center;
                    }
                }