body{
    margin:0;
    background:black;
    color:white;
    font-family:Arial;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
}

/* LOGO FIX */
.logo{
    width:60px;
    height:60px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid gold;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* NAV */
nav{
    display:flex;
    gap:15px;
}

nav a{
    color:white;
    text-decoration:none;
}

.btn{
    background:gold;
    color:black;
    padding:5px 10px;
}

/* HERO */
.hero{
    height:80vh;
    background:url('images/hero.png') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    text-align:center;
}

/* ABOUT HERO */
.about-hero{
    height:50vh;
    background:url('images/about-hero.png') center/cover;
    display:flex;
    align-items:center;
}

.about-hero .overlay{
    width:100%;
    text-align:center;
}

/* ABOUT */
.about-section{
    padding:30px;
}

.about-container{
    display:flex;
    gap:20px;
}

.about-container.reverse{
    flex-direction:row-reverse;
}

.about-img{
    flex:1;
}

.about-img img{
    width:100%;
    height:auto;
    border-radius:10px;
}

.about-text{
    flex:1;
}

/* MOBILE */
.menu-toggle{
    display:block;
    font-size:24px;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        flex-direction:column;
        position:fixed;
        top:60px;
        left:0;
        width:100%;
        background:black;
    }

    nav.active{
        display:flex;
    }

    .about-container{
        flex-direction:column;
    }
}
/* ✅ BRANDS PAGE */
.brands-section {
    padding:40px 20px;
    text-align:center;
}

.title {
    color:gold;
    font-size:30px;
    margin-bottom:30px;
}

/* GRID */
.brands-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:20px;
}
.brand-card h3{
    color: gold;
    margin-top: 10px;
    font-size: 20px;
}

.brand-card p{
    color: white;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
}

/* CARDS */
.brand-card {
    background:#111;
    border:1px solid gold;
    padding:30px 10px;
    font-size:18px;
    transition:0.3s;
}

/* HOVER EFFECT */
.brand-card:hover {
    transform:translateY(-10px);
    box-shadow:0 0 10px gold;
}
/* ✅ BRANDS SECTION */
.brands-section {
    text-align:center;
    padding:50px 20px;
}

.title {
    color:gold;
    font-size:32px;
    margin-bottom:30px;
}

/* ✅ SLIDER CONTAINER */
.brands-slider {
    overflow:hidden;
    width:100%;
}

/* ✅ TRACK (MOVING) */
.brand-track {
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 15s linear infinite;
}

/* ✅ CARDS */
.brand-card {
    width:120px;
    height:120px;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid gold;
    border-radius:10px;
    transition:0.3s;
}
/* ✅ SERVICES PAGE */
.services-section {
    text-align: center;
    padding: 50px 20px;
}

/* same title style */
.title {
    color: gold;
    font-size: 32px;
    margin-bottom: 30px;
}

/* ✅ GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

/* ✅ CARDS (same as brands) */
.service-card {
    background: #111;
    border: 1px solid gold;
    padding: 30px 10px;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: 0.3s;
}

/* icon */
.service-card img {
    width: 60px;
    margin-bottom: 10px;
}

/* text */
.service-card p {
    color: white;
    font-size: 16px;
}

/* hover */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px gold;
}

/* ✅ LOGO IMAGE */
.brand-card img {
    width:80%;
    height:auto;
}

/* ✅ HOVER GLOW */
.brand-card:hover {
    transform:translateY(-10px);
    box-shadow:0 0 15px gold;
}

/* ✅ AUTO SLIDER ANIMATION */
@keyframes scroll {
    0%   {transform:translateX(0);}
    100% {transform:translateX(-50%);}
}

/* ✅ MOBILE */
@media(max-width:768px){
    .brand-card {
        width:90px;
        height:90px;
    }
}
/* ✅ GOLD WHATSAPP CHAT BUTTON */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(45deg, gold, orange);
    color: black;

    padding: 10px 15px;
    border-radius: 30px;

    text-decoration: none;
    font-size: 14px;
    font-weight: bold;

    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 9999;

    transition: 0.3s;
}

/* icon */
.whatsapp-chat img {
    width: 20px;
    height: 20px;
}

/* hover */
.whatsapp-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
}
@keyframes pulse {
    0% { box-shadow: 0 0 5px gold; }
    50% { box-shadow: 0 0 20px gold; }
    100% { box-shadow: 0 0 5px gold; }
}

.whatsapp-chat {
    animation: pulse 2s infinite;
}
/* HOVER EFFECT */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #25D366;
}
/* ✅ FOOTER */
.footer {
    background:black;
    color:white;
    padding:40px 20px;
    border-top:2px solid gold;
    box-shadow:0 -2px 10px gold;
}

.footer-container {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

/* LOGO */
.footer-logo {
    width:80px;
    border-radius:50%;
    border:2px solid gold;
}

/* TEXT */
.footer-col p {
    margin:10px 0;
    font-size:14px;
}

/* HEADINGS */
.footer-col h3 {
    color:gold;
    margin-bottom:10px;
}

/* LINKS */
.footer-col ul {
    list-style:none;
    padding:0;
}

.footer-col ul li {
    margin:5px 0;
}

.footer-col ul li a {
    color:white;
    text-decoration:none;
}

/* SOCIAL */
.social{
    display:flex;
    gap:15px;
    align-items:center;
}

.social img{
    width:40px;
    height:40px;
    display:block;
    transition:0.3s;
}

.social img:hover{
    transform:scale(1.1);
}

/* BOTTOM */
.footer-bottom {
    text-align:center;
    margin-top:20px;
    border-top:1px solid #333;
    padding-top:10px;
    font-size:14px;
}


/* ✅ SLIDER */
.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* ✅ keeps perfect 16:9 */
    overflow: hidden;
}

.slide {
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:0.5s;
}

.slide.active {
    opacity:1;
}

/* TEXT */
.slide .overlay {
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    background:rgba(0,0,0,0.5);
    text-align:center;
}


.slide h1 {
    color:gold;
    font-size:35px;
}

.slide h2 {
    color:white;
}
/* ✅ WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

/* ✅ HOVER EFFECT */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #25D366;
}
/* ✅ MOBILE MENU FINAL FIX */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
        color:white;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: black;
        z-index: 999;
    }

    nav a {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    nav.active {
        display: flex;
    }
}
/* ✅ CONTACT FORM */
.form {
    max-width: 500px;
    margin: 20px auto;
}

/* ✅ ROW (Name + Email) */
.form-row {
    display: flex;
    gap: 10px;
}

/* INPUTS */
.form input:focus,
.form textarea:focus {
    border: 1px solid gold;
}
.form input,
.form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    outline: none;
    background: #222;
    color: white;
    border-radius: 5px;
}

/* TEXTAREA */
.form textarea {
    height: 100px;
}

/* BUTTON */
.form button {
    width: 100%;
    padding: 10px;
    background: gold;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.form button:hover {
    box-shadow: 0 0 10px gold;
}

@media(max-width:768px){
    .form-row {
        flex-direction: column;
    }
}
/* ✅ BOOKING BANNER */
.booking-banner {
    width: 100%;
    background: url('images/car-banner.jpg') center/cover no-repeat;
    margin-top: 20px;
}

/* Overlay (dark effect) */
.booking-overlay {
    background: rgba(0,0,0,0.7);
    padding: 40px 20px;
}

/* Content */

.booking-content {
    max-width: 600px;
    margin: 0 auto;        /* ✅ center horizontally */
    text-align: center;    /* ✅ center text */
    color: white;
}


/* Heading */
.booking-content h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Text */
.booking-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Button */
.book-btn {
    display: inline-block;
    background: gold;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Hover effect */
.book-btn:hover {
    background: orange;
}
.form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    background: #222;
    color: white;
    border-radius: 5px;
    border: none;
}
.hero-book {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #0a0a0a, #1c1f2a);
}

.hero-book form {
    max-width: 400px;
    margin: auto;
}

.hero-book select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #222;
    color: white;
    border-radius: 5px;
    border: none;
}

/* plate */
.plate-box {
    display: flex;
    margin-bottom: 15px;
}

.plate-box .uk {
    background: blue;
    color: white;
    padding: 12px;
    font-weight: bold;
}

.plate-box input {
    flex: 1;
    padding: 12px;
    background: gold;
    color: black;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    border: none;
}

/* button */
.hero-book button {
    width: 100%;
    padding: 12px;
    background: #0a58ca;
    color: white;
    border: none;
    border-radius: 5px;
}
.highlight {
    color: gold;
    font-weight: bold;
}
/* ✅ SERVICES INFO SECTION */
.services-info {
    background: linear-gradient(135deg, gold, #d4af37);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 0 20px gold inset;
}

/* each item */
.service-item {
    max-width: 400px;
    margin: 40px auto;
}

/* icon */
.service-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 20px;
    background: white;
}

/* title */
.service-item h3 {
    margin-top: 20px;
    font-size: 22px;
    color: black;
}

/* text */
.service-item p {
    margin-top: 10px;
    color: #222;
    line-height: 1.6;
}
/* ✅ GOOGLE MAP */
.map-section{
    padding:50px 20px;
    text-align:center;
    background:#111;
}

.map-section h2{
    color:gold;
    margin-bottom:10px;
}

.map-section p{
    color:white;
    margin-bottom:20px;
}

.map-container{
    max-width:1000px;
    margin:auto;
    border:2px solid gold;
    border-radius:10px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
}

/* ✅ MOBILE */
@media(max-width:768px){

    .map-section{
        padding:30px 10px;
    }

    .map-section h2{
        font-size:22px;
    }

    .map-section p{
        font-size:14px;
    }

    .map-container iframe{
        height:300px;
    }

}
/* SEO CONTENT */
.seo-content{
    background:#111;
    color:white;
    padding:50px 20px;
    text-align:center;
}

.seo-content h2{
    color:gold;
    margin-bottom:20px;
}

.seo-content p{
    max-width:900px;
    margin:0 auto 15px;
    line-height:1.8;
}
/* FIXED MOBILE HEADER */
@media(max-width:768px){

    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: black;
        z-index: 9999;
        box-sizing: border-box;
    }

    body{
        padding-top: 85px;
    }

    nav{
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

}
/* GALLERY */
.gallery-section{
    padding:60px 20px;
    text-align:center;
    background:#111;
}

.gallery-section h1{
    color:gold;
    margin-bottom:20px;
}

.gallery-text{
    max-width:800px;
    margin:auto;
    margin-bottom:40px;
    color:#ddd;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-card{
    overflow:hidden;
    border-radius:15px;
    border:2px solid gold;
    background:#000;
    box-shadow:0 0 15px rgba(255,215,0,.2);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover{
    box-shadow:0 0 25px gold;
}