*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
}

header{

    width:100%;
    height:90px;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    position:fixed;
    top:0;
    z-index:1000;
    border-bottom:1px solid #222;

}

.logo{

    color:#ff7300;
    font-size:40px;
    font-weight:700;
    letter-spacing:2px;
}

.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active{
    text-decoration: none;
    color: #ff7300;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

nav a:hover{
    color:#ff7300;
}

.buttons{
    display:flex;
    gap:15px;
}

.phone-btn{

    background:#ff7300;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.login-btn{

    border:2px solid #2196f3;
    color:#2196f3;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    padding:3px 5px;
    font-size:10px;
    width: 42px;
    height: 27px;

}

.login-btn:hover{
    background:#2196f3;
    color:white;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:768px){

    header{
        height:70px;
        padding:0 15px;
    }

    .logo{
        display:block;
        line-height:1.1;
        font-size:18px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:fixed;
        top:70px;
        right:-100%;

        width:250px;
        height:100vh;

        background:#111;

        display:flex;
        flex-direction:column;

        padding:30px;

        gap:25px;

        transition:.4s;
    }

    nav.active{
        right:0;
    }
    

    .buttons{
        gap:8px;
    }

    .phone-btn{
        display:none;
    }

    .login-btn{
        padding:3px 7px;
        font-size:6px;
        width: 30px;
        height: 20px;
    }

}


/* ==========================
   Featured Cars
========================== */

.featured-cars{
    padding:80px 8%;
    background:#f5f5f5;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#222;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.car-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.car-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
    width: 100%;
}

.car-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.car-info{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px ;
    text-align: center;
}

.car-info h3{
    font-size:22px;
    line-height:30px;
    height:60px;
    margin-bottom:10px;
    overflow:hidden;
}

.car-info h3,
.car-info h4,
.car-info p{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.price{
    font-size:28px;
    color:#ff7300;
    font-weight:bold;
    margin:10px 0;
}

.description{
    height:48px;
    overflow:hidden;
    width: 100%;
}

.specs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin:15px 0;
}

.specs span{
    display:flex;
    align-items:center;
    gap:6px;
    color:#555;
    font-size:15px;
}

.view-btn{
    margin-top:auto;
    display:inline-block;
    align-self:flex-start;

    background:#dc3545;
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.view-btn:hover{
    background:#bb2d3b;
    color:#fff;
}

/* ==========================
   ADMIN DASHBOARD
========================== */

.dashboard{
    width:90%;
    margin:40px auto;
    margin-top:60px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.dashboard h1{
    margin-bottom:20px;
    color:#222;
}

.dashboard-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.dashboard-table th{
    background:#d62828;
    color:#fff;
    padding:15px;
    text-align:center;
}

.dashboard-table td{
    padding:15px;
    border-bottom:1px solid #ddd;
    text-align:center;
}

.dashboard-table tr:hover{
    background:#f5f5f5;
}

.dashboard-table img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}

.action-btn{
    text-decoration:none;
    padding:8px 14px;
    border-radius:6px;
    color:#fff;
    margin:0 3px;
}

.edit-btn{
    background:#007bff;
}

.delete-btn{
    background:#dc3545;
}

.btn3{
    display:inline-block;
    background:#e63946;
    color:#fff;
    padding:12px 24px;
    text-decoration:none;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.btn3:hover{
    background:#c82333;
}

/* ================= Responsive Dashboard ================= */

/* Tablets */
@media (max-width: 992px) {
    .dashboard {
        width: 95%;
        padding: 20px;
    }

    .dashboard h1 {
        font-size: 28px;
        text-align: center;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 12px;
        font-size: 15px;
    }

    .dashboard-table img {
        width: 100px;
        height: 70px;
    }

    .btn3 {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dashboard {
        width: 100%;
        margin: 20px auto;
        padding: 15px;
        border-radius: 0;
    }

    .dashboard h1 {
        font-size: 24px;
        text-align: center;
    }

    /* Horizontal scroll for table */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    .dashboard-table {
        min-width: 700px;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 10px;
        font-size: 14px;
    }

    .dashboard-table img {
        width: 80px;
        height: 60px;
    }

    .action-btn {
        display: inline-block;
        margin: 3px 0;
        padding: 7px 10px;
        font-size: 13px;
    }

    .btn3 {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 12px;
        margin-top: 15px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .dashboard {
        padding: 10px;
    }

    .dashboard h1 {
        font-size: 20px;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 8px;
        font-size: 12px;
    }

    .dashboard-table img {
        width: 60px;
        height: 45px;
    }

    .action-btn {
        font-size: 12px;
        padding: 6px 8px;
    }

    .btn3 {
        font-size: 14px;
        padding: 10px;
    }
}

/* ==========================
   CAR DETAILS
========================== */


.car-details1{
    width: 90%;
    max-width: 1200px;
    margin: 140px auto 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
}

.car-image7,
.car-info7{
    flex: 1;
}

.car-image7 img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.car-info7 h1{
    font-size: 40px;
    margin-bottom: 15px;
}

.car-info7 h2{
    color: #ff7300;
    font-size: 34px;
    margin-bottom: 20px;
}

.car-info7 p{
    font-size: 18px;
    margin: 12px 0;
    color: #444;
}

.gallery-thumbs{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.gallery-thumbs img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid #ddd;
    transition:.3s;
}

.gallery-thumbs img:hover{
    border-color:#ff7300;
    transform:scale(1.05);
}

/* Tablet */
@media (max-width:992px){

    .car-details1{
        gap: 25px;
        padding: 20px;
    }

    .car-image7 img{
        height: 350px;
    }

    .car-info7 h1{
        font-size: 32px;
    }

    .car-info7 h2{
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width:768px){

    .car-details1{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

    .car-image7,
    .car-info7{
        width:100%;
    }

    .car-image7 img{
        width:100%;
        max-height:250px;   /* Adjust to 220–300px if you like */
        object-fit:cover;
        border-radius:10px;
        display:block;
    }

    .car-info7 h1{
        font-size:30px;
    }

    .car-info7 h2{
        font-size:26px;
    }

    .car-info7 p{
        font-size:16px;
    }
}

/* ==========================
   CARS PAGE
========================== */

.page-banner{
    margin-top: 100px;
}

.banner-content{
    text-align: center;
}

.cars-page{
    width:90%;
    max-width:1300px;
    margin:70px auto 70px;
}

.cars-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.cars-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.cars-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.cars-image{
    position:relative;
    overflow:hidden;
}

.cars-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.cars-card:hover img{
    transform:scale(1.08);
}

.price-badge{
    position:absolute;
    right:15px;
    bottom:15px;
    background:#ff7300;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
    font-size:18px;
    box-shadow:0 5px 12px rgba(0,0,0,.2);
}

.cars-info{
    padding:25px;
}

.cars-info h3{
    font-size:24px;
    margin-bottom:12px;
    color:#222;
}

.descriptions{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.specss{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:25px;
}

.specss span{
    background:#f7f7f7;
    padding:10px;
    border-radius:8px;
    font-size:15px;
    color:#444;
}

.specss i{
    color:#ff0000;
    margin-right:6px;
}

.view-btn5{
    display:block;
    text-align:center;
    background:#d62828;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.view-btn5:hover{
    background:#b71c1c;
}

@media(max-width:768px){
    
    .cars-page{
        width:95%;
        margin:90px auto 40px;
    }

    .cars-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .cars-image img{
        height:220px;
    }

    .cars-info{
        padding:20px;
    }

    .cars-info h3{
        font-size:20px;
    }

    .specss{
        grid-template-columns:1fr;
    }

    .view-btn5{
        width:100%;
    }
}

/* ==========================
   HERO SLIDER
========================== */

.hero-slider{
    position:relative;
    width:100%;
    height:1000px;
    overflow:hidden;
    margin-top: 40px;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    opacity:0;
    visibility:hidden;

    transition:opacity .8s ease;

    display:flex;
    justify-content:center;
    align-items:center;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

.slide img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

.overlay{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    opacity: 50%;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
    line-height:1.6;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:18px;
    transition:.3s;
}

.hero-btn:hover{
    background:#e56d00;
}

@media (max-width:768px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.hero-slider{
     height:59vh;
}

.slide img{
        object-fit:cover;
        width:100%;
        height:100%;
        background:#000; /* optional */
}

}

/*=====================
STATS
=====================*/

.stats{

display:flex;

justify-content:space-around;

align-items:center;

padding:80px;

background:#171717;

}

.stat{

text-align:center;

}

.stat h2{

font-size:55px;

color:#ff7300;

margin-bottom:15px;

}

.stat p{

color:#fff;

font-size:20px;

}

@media (max-width:768px){

    .stats{
        flex-direction: column;
        gap: 40px;
        padding: 50px 20px;
    }

    .stat h2{
        font-size:40px;
    }

    .stat p{
        font-size:18px;
    }
}

.customers{

    padding:110px 0;
    background:#ffffff;

}

.customers .section-title{

    text-align:center;
    margin-bottom:70px;

}

.customers .section-title span{

    color:#ff7300;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
    font-size:x-large;

}

.customers .section-title h2{

    color:#fff;
    font-size:42px;
    margin:15px 0;

}

.customers .section-title p{

    color:#897e7e;
    max-width:650px;
    margin:auto;

}

.customers-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.customer-card{

    background:#1c1c1c;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;

}

.customer-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.customer-card img{

    width:100%;
    height:400px;
    object-fit:cover;

}

.customer-content{

    padding:30px;

}

.stars{

    color:#ff7300;
    font-size:20px;
    margin-bottom:15px;

}

.customer-content h3{

    color:#fff;
    margin-bottom:5px;

}

.customer-content span{

    color:#ff7300;
    font-weight:600;

}

.customer-content p{

    color:#ccc;
    margin-top:18px;
    line-height:1.8;

}

/* ==========================
   WHY CHOOSE US
========================== */

.why-choose-us{
    background:#fff;
    padding:90px 0;
}

.section-heading{
    margin-bottom:60px;
}

.section-subtitle{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin:15px 0;
}

.section-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-top:4px solid #ff6b00;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.icon-box{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff3eb;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s;
}

.icon-box i{
    font-size:34px;
    color:#ff6b00;
    transition:.35s;
}

.feature-card:hover .icon-box{
    background:#ff6b00;
}

.feature-card:hover .icon-box i{
    color:#fff;
}

.feature-card h4{
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:992px){

.customers{
    margin-top: 0px;
}    

.customers-grid{
    grid-template-columns:1fr;
}

}

/*=========================
        FOOTER
==========================*/


.footer{
    background:#111;
    color:#ccc;
    padding-top:70px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    padding:0 25px 50px;
}

.footer-box h2{
    color:#ff7300;
    font-size:38px;
    margin-bottom:20px;
}

.footer-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:25px;
}

.footer-box p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:12px;
    font-size:16px;
}

.footer-box span{
    color:#fff;
    display:block;
    margin-bottom:18px;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:15px;
}

.footer-box ul li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ff7300;
    padding-left:6px;
}

.footer-box i{
    color:#ff7300;
    width:25px;
}

.social-links{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.social-links a{
    width:48px;
    height:48px;
    background:#222;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff7300;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.social-links a:hover{
    background:#ff7300;
    color:#fff;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid #222;
    text-align:center;
    padding:25px;
}

.footer-bottom p{
    color:#999;
    margin:0;
}

@media(max-width:991px){

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.social-links{
    justify-content:center;
}

}

/* Login Page */

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/login-bg.jpg");
    background-size:cover;
    background-position:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.login-card h1{
    text-align:center;
    color:#ff7300;
    margin-bottom:10px;
    font-size:38px;
}

.login-card p{
    text-align:center;
    color:#777;
    margin-bottom:35px;
}

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.input-group input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.input-group input:focus{
    border-color:#ff7300;
    box-shadow:0 0 5px rgba(255,115,0,.3);
}

.login-btn1{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background:#ff7300;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-btn1:hover{
    background:#e56700;
}

.error{
    background:#ffe8e8;
    color:#c62828;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
    text-align:center;
}

@media (max-width:768px){

    .login-card h1{
        font-size:25px;
    }

}

/* ---------------- HERO ---------------- */

.about-hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/about-hero.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

.hero-content1{
    color: #ffffff;
}

.btn2{
    display:inline-block;
    background:#ff7300;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn2:hover{
    background:#e56500;
    transform:translateY(-3px);
}

/* ---------------- ABOUT ---------------- */

.about-us{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:100px 8%;
    background:#fff;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-text h2{
    font-size:45px;
    margin-bottom:25px;
    color:#4f4f4f;
}

.about-text p{
    font-size:18px;
    color:#3a3a3a;
    line-height:1.9;
    margin-bottom:20px;
}

/* ---------------- SOLD CARS ---------------- */

.sold-cars{
    padding:100px 8%;
    background:#f5f5f5;
}

.sold-cars h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#222;
}

.sold-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .sold-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sold-container {
        grid-template-columns: 1fr;
    }
}

.sold-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.sold-card:hover{
    transform:translateY(-10px);
}

.sold-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    object-position: top;
}

.sold-card h3{
    padding:20px;
    text-align:center;
    font-size:24px;
}

.sold-badge{
    position:absolute;
    bottom:90px;
    left:15px;
    background:#28a745;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
}

/* ---------------- CTA ---------------- */

.about-cta{
    background:#111;
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.about-cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.about-cta p{
    font-size:20px;
    color:#ccc;
    margin-bottom:40px;
}

.about-cta .btn{
    display:inline-block;
    background:#ff7300;
    color:#fff;
    padding:16px 40px;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.about-cta .btn:hover{
    background:#e56500;
    transform:translateY(-3px);
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:900px){

.about-us{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:45px;
}

.hero-content p{
    font-size:18px;
}

.about-text{
    text-align:center;
}

}

.contact-section{
    background:#fff;
    padding:80px 8%;
}

.contact-container{
    max-width:1200px;
    margin:auto;
}

.contact-title{
    text-align:center;
    margin-bottom:60px;
}

.contact-title h1{
    font-size:42px;
    color:#111;
    margin-bottom:15px;
    margin-top: 55px;
}

.contact-title p{
    color:#666;
    font-size:18px;
}

.contact-content{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:50px;
}

.contact-info{
    background:#111;
    color:#fff;
    padding:40px;
    border-radius:12px;
}

.contact-info h2{
    color:#ff7300;
    margin-bottom:35px;
}

.contact-info a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-info a:hover{
    color:#ff7a00;
}

.info-box{
    display:flex;
    gap:18px;
    margin-bottom:30px;
    align-items:flex-start;
}

.info-box i{
    color:#ff7300;
    font-size:22px;
    margin-top:4px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ff7300;
}

.contact-form button{
    background:#ff7300;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.contact-form button:hover{
    background:#e86500;
}

@media(max-width:900px){

.contact-content{
    grid-template-columns:1fr;
}

}

.car-image7 #mainImage{
    width:100%;
    border-radius:10px;
    object-fit:cover;
}

.gallery-thumbs{
    display:flex;
    gap:12px;
    margin-top:15px;
    flex-wrap:wrap;
}

.gallery-thumbs .thumb{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid #ddd;
    transition:.3s;
}

.gallery-thumbs .thumb:hover{
    border-color:#ff7300;
    transform:scale(1.05);
}
