/*==================================================
AUZ AUTOMOTIVE LLC
STYLE.CSS
==================================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#080808;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:#fff;
}

ul{
list-style:none;
}

section{
padding:90px 8%;
}

/*====================
HEADER
====================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
display:flex;
justify-content:center;
align-items:center;
padding:0 8%;
background:rgba(0,0,0,.45);
backdrop-filter:blur(10px);
z-index:1000;
transition:.3s;
}

nav ul{
display:flex;
gap:35px;
align-items:center;
}

nav a{
font-size:16px;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#0b84ff;
}

/*====================
HERO
====================*/

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1.2s;
}

.slide.active{
opacity:1;
}

.slide::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:linear-gradient(90deg,rgba(0,0,0,.80),rgba(0,0,0,.25));
}

.hero-content{
position:absolute;
z-index:5;
top:50%;
left:8%;
transform:translateY(-50%);
max-width:700px;
}

.hero-content h1{
font-size:62px;
line-height:1.15;
margin-bottom:25px;
}

.hero-content p{
font-size:20px;
line-height:1.8;
color:#ddd;
margin-bottom:35px;
}

.buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:15px 35px;
border-radius:40px;
font-weight:bold;
transition:.35s;
}

.primary-btn{
background:#0b84ff;
}

.primary-btn:hover{
background:#0562be;
}

.secondary-btn{
border:2px solid #fff;
}

.secondary-btn:hover{
background:#fff;
color:#000;
}

/*====================
SLIDER BUTTONS
====================*/

.slider{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border:none;
border-radius:50%;
background:rgba(255,255,255,.2);
color:#fff;
font-size:18px;
cursor:pointer;
z-index:20;
transition:.3s;
}

.slider:hover{
background:#0b84ff;
}

.prev{
left:25px;
}

.next{
right:25px;
}

.dots{
position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
z-index:30;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
background:#fff;
opacity:.5;
cursor:pointer;
transition:.3s;
}

.dot.active{
opacity:1;
background:#0b84ff;
}

/*====================
COMMON SECTIONS
====================*/

.container{
width:100%;
max-width:1400px;
margin:auto;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:15px;
}

.section-text{
text-align:center;
color:#bdbdbd;
margin-bottom:50px;
line-height:1.8;
}


/*====================
CARDS
====================*/

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#131313;
border-radius:15px;
padding:30px;
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,123,255,.15);
}

.card img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.card h3{
margin-bottom:12px;
font-size:24px;
}

.card p{
color:#cfcfcf;
line-height:1.7;
}


/*====================
BUTTON
====================*/

.center{
text-align:center;
margin-top:40px;
}


/*====================
FORMS
====================*/

form{
display:grid;
gap:20px;
}

input,
textarea,
select{
width:100%;
padding:15px;
background:#161616;
border:none;
outline:none;
border-radius:8px;
color:#fff;
font-size:15px;
}

textarea{
resize:none;
height:170px;
}


/*====================
FOOTER
====================*/

footer{
padding:35px 8%;
background:#050505;
text-align:center;
color:#bdbdbd;
}


/*====================
TABLET
====================*/

@media(max-width:992px){

header{
padding:0 5%;
}

nav ul{
gap:20px;
}

.hero-content{
left:5%;
right:5%;
max-width:600px;
}

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:18px;
}

.grid{
grid-template-columns:repeat(2,1fr);
}

}


/*====================
MOBILE
====================*/

@media(max-width:768px){

header{
height:75px;
}

nav ul{
gap:12px;
flex-wrap:wrap;
justify-content:center;
}

nav a{
font-size:13px;
}

.hero-content{
left:5%;
right:5%;
max-width:100%;
}

.hero-content h1{
font-size:36px;
}

.hero-content p{
font-size:16px;
}

.buttons{
flex-direction:column;
width:220px;
}

.btn{
text-align:center;
}

.slider{
width:42px;
height:42px;
font-size:15px;
}

.grid{
grid-template-columns:1fr;
}

.section-title{
font-size:32px;
}

}


/*====================
SMALL PHONES
====================*/

@media(max-width:480px){

header{
height:70px;
}

nav{
display:none;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:14px;
line-height:1.7;
}

.buttons{
width:100%;
}

.btn{
width:100%;
}

.prev{
left:10px;
}

.next{
right:10px;
}

}

/*========== MOBILE MENU ==========*/

.menu-btn{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
z-index:1002;
transition:.3s;
}

.menu-btn:hover{
color:#0b84ff;
}

@media(max-width:768px){

header{
justify-content:space-between;
padding:0 25px;
}

.menu-btn{
display:block;
}

nav{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#0b0b0b;
display:flex;
justify-content:center;
align-items:center;
transition:.4s;
box-shadow:-10px 0 30px rgba(0,0,0,.4);
z-index:1001;
}

nav.active{
right:0;
}

nav ul{
flex-direction:column;
gap:30px;
}

nav a{
font-size:18px;
}
}
/*==================================================
ABOUT PAGE
==================================================*/

.page-banner{
height:45vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
url("uploads/hero1.jpg");
background-size:cover;
background-position:center;
}

.banner-content h1{
font-size:55px;
margin-bottom:15px;
}

.banner-content p{
font-size:18px;
color:#ddd;
}


.about-section,
.owner-section,
.mission-section,
.why-section,
.cta-section{
padding:90px 8%;
}


.about-section h2,
.owner-section h2,
.mission-section h2,
.why-section h2,
.cta-section h2{
font-size:40px;
text-align:center;
margin-bottom:25px;
}


.about-section p,
.owner-section p,
.mission-section p,
.cta-section p{
max-width:950px;
margin:auto;
font-size:18px;
line-height:1.9;
color:#d5d5d5;
text-align:center;
margin-bottom:20px;
}


.why-section .grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:45px;
}


.why-section .card{
background:#111;
padding:35px;
border-radius:15px;
text-align:center;
transition:.35s;
border:1px solid rgba(255,255,255,.05);
}


.why-section .card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(11,132,255,.20);
}


.why-section .card i{
font-size:45px;
color:#0b84ff;
margin-bottom:20px;
}


.why-section .card h3{
font-size:24px;
margin-bottom:15px;
}


.why-section .card p{
font-size:16px;
line-height:1.8;
color:#ccc;
margin:0;
}


.cta-section{
text-align:center;
background:#101010;
}


.cta-section .btn{
margin-top:30px;
display:inline-block;
}


nav a.active{
color:#0b84ff;
}


/*====================
TABLET
====================*/

@media(max-width:992px){

.banner-content h1{
font-size:42px;
}

.about-section h2,
.owner-section h2,
.mission-section h2,
.why-section h2,
.cta-section h2{
font-size:34px;
}

.why-section .grid{
grid-template-columns:1fr;
}

}


/*====================
MOBILE
====================*/

@media(max-width:768px){

.page-banner{
height:35vh;
padding:0 20px;
}

.banner-content h1{
font-size:34px;
}

.banner-content p{
font-size:16px;
}

.about-section,
.owner-section,
.mission-section,
.why-section,
.cta-section{
padding:70px 25px;
}

.about-section p,
.owner-section p,
.mission-section p,
.cta-section p{
font-size:16px;
}

.why-section .card{
padding:25px;
}

}

/*==================================================
SERVICES PAGE
==================================================*/


.services-section{

padding:90px 8%;

}


.services-section h2{

font-size:40px;
text-align:center;
margin-bottom:45px;

}


.services-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}


.service-card{

background:#111;
padding:35px 25px;
border-radius:15px;
text-align:center;
border:1px solid rgba(255,255,255,.05);
transition:.35s;

}


.service-card:hover{

transform:translateY(-10px);
box-shadow:0 15px 35px rgba(11,132,255,.20);

}


.service-card i{

font-size:45px;
color:#0b84ff;
margin-bottom:20px;

}


.service-card h3{

font-size:22px;
margin-bottom:30px;

}


.service-card .btn{

display:inline-block;

}



/* TABLET */

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}



/* MOBILE */

@media(max-width:768px){

.services-section{

padding:70px 25px;

}


.services-section h2{

font-size:34px;

}


.services-grid{

grid-template-columns:1fr;

}

}

/*====================
BOOKING PAGE
====================*/


.booking-section{

padding:90px 8%;

}


.booking-section h2{

text-align:center;
font-size:40px;
margin-bottom:40px;

}



.booking-form{

max-width:700px;
margin:auto;
background:#111;
padding:40px;
border-radius:15px;

}



.booking-form input,
.booking-form textarea{

background:#161616;
border:1px solid rgba(255,255,255,.05);

}



.service-box{

background:#161616;
padding:15px;
border-radius:8px;

}



.service-box label{

color:#0b84ff;
font-weight:bold;

}



.service-box p{

color:#ccc;
margin-top:10px;

}



.booking-form button{

border:none;
cursor:pointer;
width:100%;
}



@media(max-width:768px){

.booking-section{

padding:70px 25px;

}

.booking-form{

padding:25px;

}

.booking-section h2{

font-size:32px;

}

}

/* DATE & TIME ICON */

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator{

filter: invert(1);
cursor:pointer;

}

.booking-form input::placeholder,
.booking-form textarea::placeholder{

color:#fff;
opacity:1;

}

/*====================
CONFIRMATION PAGE
====================*/


.confirmation-section{

padding:90px 8%;
display:flex;
justify-content:center;

}



.confirmation-box{

background:#111;
padding:45px;
border-radius:20px;
max-width:650px;
width:100%;
text-align:center;
border:1px solid rgba(255,255,255,.05);

}



.confirmation-box i{

font-size:70px;
color:#0b84ff;
margin-bottom:20px;

}



.confirmation-box h2{

font-size:38px;
margin-bottom:30px;

}



.booking-details{

text-align:left;
background:#161616;
padding:25px;
border-radius:12px;
margin-bottom:30px;

}



.booking-details p{

color:#fff;
font-size:17px;
margin-bottom:15px;

}



.booking-details strong{

color:#0b84ff;

}



@media(max-width:768px){

.confirmation-section{

padding:70px 25px;

}


.confirmation-box{

padding:30px 20px;

}

}

/*====================
MY BOOKINGS PAGE
====================*/


.bookings-section{

padding:90px 8%;

}



.bookings-section h2{

text-align:center;
font-size:40px;
margin-bottom:45px;

}



.booking-card{

max-width:700px;
margin:auto;
background:#111;
padding:35px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);

}



.booking-info h3{

font-size:25px;
margin-bottom:25px;

}



.booking-info p{

color:#ddd;
font-size:17px;
margin-bottom:15px;

}



.booking-info strong{

color:#0b84ff;

}



.status{

background:#333;
padding:6px 18px;
border-radius:20px;
color:#fff;

}



@media(max-width:768px){

.bookings-section{

padding:70px 25px;

}


.booking-card{

padding:25px;

}


.bookings-section h2{

font-size:32px;

}

}

/*==================================================
REVIEWS PAGE
==================================================*/

.reviews-section{

padding:90px 8%;

}

.reviews-section h2{

font-size:40px;
text-align:center;
margin-bottom:40px;

}

.reviews-box{

max-width:700px;
margin:auto;
background:#111;
padding:50px;
border-radius:18px;
text-align:center;
border:1px solid rgba(255,255,255,.05);

}

.reviews-box i{

font-size:70px;
color:#0b84ff;
margin-bottom:25px;

}

.reviews-box h3{

font-size:30px;
margin-bottom:20px;

}

.reviews-box p{

font-size:17px;
color:#d5d5d5;
line-height:1.8;
margin-bottom:35px;

}

.reviews-box .btn{

display:inline-block;

}

@media(max-width:768px){

.reviews-section{

padding:70px 25px;

}

.reviews-box{

padding:35px 25px;

}

.reviews-section h2{

font-size:32px;

}

}

/*==================================================
CONTACT PAGE
==================================================*/

.contact-section{

padding:90px 8%;

}

.contact-section h2{

font-size:40px;
text-align:center;
margin-bottom:40px;

}

.contact-form{

max-width:750px;
margin:auto;
display:grid;
gap:22px;

}

.contact-form input,
.contact-form textarea{

width:100%;
padding:18px;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:10px;
color:#fff;
font-size:16px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

color:#fff;
opacity:1;

}

.contact-form textarea{

height:180px;
resize:none;

}

.contact-form button{

justify-self:center;
margin-top:10px;

}

@media(max-width:768px){

.contact-section{

padding:70px 25px;

}

.contact-section h2{

font-size:32px;

}

}

/*==================================================
CARS PAGE
==================================================*/

.cars-section{

padding:90px 8%;

}

.cars-section h2{

font-size:40px;
text-align:center;
margin-bottom:15px;

}

.cars-text{

max-width:750px;
margin:auto;
text-align:center;
color:#cfcfcf;
font-size:18px;
line-height:1.8;
margin-bottom:50px;

}

.cars-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}


/*====================
CAR CARD PLACEHOLDER
====================*/

.car-placeholder{

background:#111;
border-radius:18px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
transition:.35s;

}

.car-placeholder:hover{

transform:translateY(-10px);
box-shadow:0 15px 35px rgba(11,132,255,.20);

}

.placeholder-image{

height:240px;
background:#1a1a1a;
display:flex;
justify-content:center;
align-items:center;
font-size:20px;
font-weight:bold;
color:#7a7a7a;
border-bottom:1px solid rgba(255,255,255,.08);

}

.placeholder-content{

padding:25px;

}

.placeholder-content h3{

font-size:24px;
margin-bottom:18px;

}

.placeholder-content p{

font-size:16px;
margin-bottom:12px;
color:#cfcfcf;

}

.placeholder-content .btn{

display:inline-block;
margin-top:15px;

}


/*====================
TABLET
====================*/

@media(max-width:992px){

.cars-grid{

grid-template-columns:repeat(2,1fr);

}

}


/*====================
MOBILE
====================*/

@media(max-width:768px){

.cars-section{

padding:70px 25px;

}

.cars-section h2{

font-size:32px;

}

.cars-text{

font-size:16px;

}

.cars-grid{

grid-template-columns:1fr;

}

.placeholder-image{

height:220px;

}

.placeholder-content{

padding:20px;

}

.placeholder-content h3{

font-size:22px;

}

}

/*==================================================
CAR DETAILS PAGE
==================================================*/

.vehicle-section{

padding:90px 8%;

}

.vehicle-details{

display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:start;

}

.main-image{

height:500px;
background:#181818;
border-radius:18px;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:bold;
color:#666;

}

.gallery-images{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:15px;
margin-top:20px;

}

.thumb{

height:90px;
background:#181818;
border-radius:10px;
display:flex;
justify-content:center;
align-items:center;
color:#666;
cursor:pointer;
transition:.3s;

}

.thumb:hover{

border:2px solid #0b84ff;

}

.vehicle-info{

background:#111;
padding:35px;
border-radius:18px;

}

.vehicle-info h2{

font-size:36px;
margin-bottom:15px;

}

.vehicle-price{

font-size:34px;
color:#0b84ff;
margin-bottom:30px;

}

.vehicle-features{

display:grid;
gap:18px;
margin-bottom:35px;

}

.vehicle-features p{

font-size:17px;
color:#ddd;

}

.vehicle-features i{

color:#0b84ff;
width:28px;

}

.vehicle-description{

padding:90px 8%;

}

.vehicle-description h2{

text-align:center;
font-size:40px;
margin-bottom:25px;

}

.vehicle-description p{

max-width:900px;
margin:auto;
text-align:center;
font-size:18px;
line-height:1.9;
color:#d0d0d0;

}

.vehicle-contact{

padding:90px 8%;
background:#101010;
text-align:center;

}

.vehicle-contact h2{

font-size:40px;
margin-bottom:20px;

}

.vehicle-contact p{

font-size:18px;
color:#ccc;
margin-bottom:35px;

}

.vehicle-contact .buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}


/*====================
TABLET
====================*/

@media(max-width:992px){

.vehicle-details{

grid-template-columns:1fr;

}

.gallery-images{

grid-template-columns:repeat(5,1fr);

}

}


/*====================
MOBILE
====================*/

@media(max-width:768px){

.vehicle-section,
.vehicle-description,
.vehicle-contact{

padding:70px 25px;

}

.main-image{

height:320px;

}

.gallery-images{

grid-template-columns:repeat(2,1fr);

}

.vehicle-info{

padding:25px;

}

.vehicle-info h2{

font-size:28px;

}

.vehicle-price{

font-size:28px;

}

.vehicle-description h2,
.vehicle-contact h2{

font-size:32px;

}

.vehicle-contact .buttons{

flex-direction:column;

}

.vehicle-contact .btn{

width:100%;

}

}

/*==================================================
REVIEWS PAGE
==================================================*/

.reviews-section{

padding:90px 8%;

}

.reviews-text{

max-width:700px;
margin:auto;
text-align:center;
color:#cfcfcf;
font-size:18px;
line-height:1.8;
margin-bottom:45px;

}

.reviews-box{

max-width:800px;
margin:auto;
background:#111;
padding:40px;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);

}

.reviews-box h3{

text-align:center;
margin-bottom:25px;

}

.input-box{

display:flex;
flex-direction:column;
margin-bottom:25px;

}

.input-box label{

color:#fff;
margin-bottom:10px;
font-weight:600;

}

.input-box input,
.input-box select,
.input-box textarea{

width:100%;
padding:15px;
background:#1a1a1a;
border:1px solid #333;
border-radius:10px;
color:#fff;
font-size:16px;
outline:none;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

border-color:#0b84ff;

}

.reviews-box button{

width:100%;

}

@media(max-width:768px){

.reviews-section{

padding:70px 25px;

}

.reviews-box{

padding:25px;

}

}



/*=========================================
ADMIN LOGIN PAGE
=========================================*/

.admin-login{

min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:40px;
background:#f5f7fa;

}

.login-box{

width:100%;
max-width:500px;
background:#fff;
padding:45px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
text-align:center;

}

.admin-logo{

width:90px;
height:90px;
margin:0 auto 25px;
background:#0b84ff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;

}

.admin-logo i{

font-size:42px;
color:#fff;

}

.login-box h1{

font-size:34px;
color:#111;
margin-bottom:10px;

}

.login-box p{

color:#666;
margin-bottom:35px;
line-height:1.7;

}

.login-box .input-box{

display:flex;
flex-direction:column;
margin-bottom:25px;
text-align:left;

}

.login-box label{

font-weight:600;
margin-bottom:10px;
color:#111;

}

.login-box input{

padding:15px;
border:1px solid #d8d8d8;
border-radius:10px;
font-size:16px;
outline:none;
transition:.3s;

}

.login-box input:focus{

border-color:#0b84ff;
box-shadow:0 0 10px rgba(11,132,255,.2);

}

.login-box button{

width:100%;
margin-top:10px;

}

@media(max-width:768px){

.login-box{

padding:30px 25px;

}

.login-box h1{

font-size:28px;

}

.admin-logo{

width:75px;
height:75px;

}

.admin-logo i{

font-size:34px;

}

}

/*=========================================
ADMIN DASHBOARD
=========================================*/

.admin-dashboard{

min-height:100vh;
background:#f5f7fa;
padding:60px 8%;

}

.dashboard-header{

text-align:center;
margin-bottom:60px;

}

.admin-avatar{

width:100px;
height:100px;
background:#0b84ff;
margin:auto;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:25px;
box-shadow:0 10px 25px rgba(11,132,255,.25);

}

.admin-avatar i{

font-size:45px;
color:#fff;

}

.dashboard-header h1{

font-size:40px;
color:#111;
margin-bottom:15px;

}

.dashboard-header p{

font-size:18px;
color:#666;
max-width:700px;
margin:auto;
line-height:1.8;

}

.dashboard-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.dashboard-card{

background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
text-decoration:none;
transition:.35s;
box-shadow:0 10px 25px rgba(0,0,0,.08);
border:1px solid #ececec;

}

.dashboard-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.dashboard-card i{

font-size:45px;
color:#0b84ff;
margin-bottom:20px;

}

.dashboard-card h3{

font-size:25px;
color:#111;
margin-bottom:12px;

}

.dashboard-card p{

font-size:16px;
line-height:1.8;
color:#666;

}

.logout-card{

background:#fff5f5;
border:1px solid #ffd7d7;

}

.logout-card i{

color:#e53935;

}

.logout-card:hover{

background:#ffecec;

}

@media(max-width:768px){

.admin-dashboard{

padding:40px 25px;

}

.dashboard-header h1{

font-size:32px;

}

.dashboard-header p{

font-size:16px;

}

.admin-avatar{

width:80px;
height:80px;

}

.admin-avatar i{

font-size:36px;

}

.dashboard-card{

padding:25px;

}

.dashboard-card h3{

font-size:22px;

}

}

/*=========================================
MANAGE CARS PAGE
=========================================*/

.manage-cars{

padding:60px 8%;
background:#f5f7fa;
min-height:100vh;

}

.manage-header{

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
margin-bottom:40px;

}

.manage-header h1{

font-size:40px;
color:#111;
margin-bottom:10px;

}

.manage-header p{

color:#666;
font-size:17px;

}

.manage-header .btn{

display:flex;
align-items:center;
gap:10px;

}

.cars-table{

background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cars-table table{

width:100%;
border-collapse:collapse;

}

.cars-table thead{

background:#0b84ff;
color:#fff;

}

.cars-table th{

padding:20px;
font-size:17px;
font-weight:600;
text-align:center;

}

.cars-table td{

padding:18px;
text-align:center;
border-bottom:1px solid #eee;
font-size:16px;
color:#444;

}

.table-image{

width:70px;
height:70px;
background:#ececec;
border-radius:12px;
margin:auto;
display:flex;
justify-content:center;
align-items:center;

}

.table-image i{

font-size:28px;
color:#888;

}

.status{

padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:bold;

}

.available{

background:#d8f7df;
color:#198754;

}

.sold{

background:#ffe1e1;
color:#dc3545;

}

.edit-btn,
.delete-btn{

width:42px;
height:42px;
display:inline-flex;
justify-content:center;
align-items:center;
border-radius:50%;
text-decoration:none;
margin:0 5px;
transition:.3s;

}

.edit-btn{

background:#0b84ff;
color:#fff;

}

.edit-btn:hover{

background:#0867c4;

}

.delete-btn{

background:#dc3545;
color:#fff;

}

.delete-btn:hover{

background:#b42330;

}

@media(max-width:992px){

.cars-table{

overflow-x:auto;

}

.cars-table table{

min-width:800px;

}

}

@media(max-width:768px){

.manage-cars{

padding:40px 20px;

}

.manage-header{

flex-direction:column;
align-items:flex-start;

}

.manage-header h1{

font-size:32px;

}

.manage-header .btn{

width:100%;
justify-content:center;

}

}

/*=========================================
ADD CAR PAGE
=========================================*/

.add-car{

padding:60px 8%;
background:#f5f7fa;
min-height:100vh;

}

.add-car-container{

max-width:1100px;
margin:auto;
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.add-car-container h1{

font-size:38px;
color:#111;
margin-bottom:10px;

}

.add-car-container p{

color:#666;
margin-bottom:35px;
font-size:17px;

}

.form-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;

}

.input-box{

display:flex;
flex-direction:column;

}

.input-box label{

font-weight:600;
margin-bottom:10px;
color:#111;

}

.input-box input,
.input-box select,
.input-box textarea{

padding:15px;
border:1px solid #dcdcdc;
border-radius:10px;
font-size:16px;
outline:none;
transition:.3s;
font-family:inherit;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

border-color:#0b84ff;
box-shadow:0 0 10px rgba(11,132,255,.15);

}

textarea{

resize:vertical;

}

.full-width{

grid-column:1/3;

}

input[type=file]{

padding:12px;
background:#fafafa;

}

.buttons{

grid-column:1/3;
display:flex;
justify-content:flex-end;
gap:15px;
margin-top:15px;

}

.secondary-btn{

background:#6c757d;
color:#fff;
text-decoration:none;
padding:14px 28px;
border-radius:10px;
display:inline-flex;
align-items:center;
gap:8px;
transition:.3s;

}

.secondary-btn:hover{

background:#555;

}

@media(max-width:768px){

.add-car{

padding:40px 20px;

}

.add-car-container{

padding:25px;

}

.add-car-container h1{

font-size:30px;

}

.form-grid{

grid-template-columns:1fr;

}

.full-width{

grid-column:1;

}

.buttons{

grid-column:1;
flex-direction:column;

}

.buttons .btn,
.buttons .secondary-btn{

width:100%;
justify-content:center;

}

}

/*=========================================
MANAGE CARS
=========================================*/

.manage-cars{

min-height:100vh;
padding:60px 8%;
background:#f5f7fa;

}

.manage-header{

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
margin-bottom:50px;

}

.manage-header h1{

font-size:38px;
color:#111;

}

.manage-header p{

color:#666;
margin-top:8px;

}

.empty-cars{

background:#fff;
padding:70px 40px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.empty-icon{

width:120px;
height:120px;
background:#eef5ff;
border-radius:50%;
margin:auto;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:30px;

}

.empty-icon i{

font-size:55px;
color:#0b84ff;

}

.empty-cars h2{

font-size:32px;
margin-bottom:15px;
color:#111;

}

.empty-cars p{

max-width:650px;
margin:auto;
color:#666;
line-height:1.8;
margin-bottom:35px;

}

@media(max-width:768px){

.manage-header{

flex-direction:column;
align-items:flex-start;
gap:20px;

}

.manage-header .btn{

width:100%;
justify-content:center;

}

.empty-cars{

padding:50px 25px;

}

.empty-cars h2{

font-size:26px;

}

}

/*==============================
Cars Page
==============================*/

.cars-section{

background:#0f0f0f;
padding:80px 8%;
min-height:70vh;

}

.cars-section .container{

max-width:1200px;
margin:auto;

}

.cars-section h2{

color:#fff;
font-size:42px;
text-align:center;
margin-bottom:15px;

}

.cars-text{

text-align:center;
color:#bdbdbd;
font-size:17px;
margin-bottom:50px;

}

.no-cars{

background:#181818;
border:1px solid #2a2a2a;
border-radius:20px;
padding:70px 40px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.no-cars-icon{

width:120px;
height:120px;
margin:auto;
margin-bottom:30px;
border-radius:50%;
background:rgba(0,119,255,.12);

display:flex;
justify-content:center;
align-items:center;

}

.no-cars-icon i{

font-size:55px;
color:#0b84ff;

}

.no-cars h3{

color:#fff;
font-size:36px;
margin-bottom:20px;

}

.no-cars p{

color:#bdbdbd;
font-size:17px;
line-height:1.8;
max-width:650px;
margin:auto;
margin-bottom:35px;

}

.cars-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.secondary-btn{

background:transparent;
border:2px solid #0b84ff;
color:#0b84ff;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
transition:.3s;

}

.secondary-btn:hover{

background:#0b84ff;
color:#fff;

}

@media(max-width:768px){

.cars-section{

padding:60px 20px;

}

.cars-section h2{

font-size:32px;

}

.no-cars{

padding:45px 25px;

}

.no-cars h3{

font-size:28px;

}

.cars-buttons{

flex-direction:column;

}

.cars-buttons .btn,
.cars-buttons .secondary-btn{

width:100%;

}

}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-image-box {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    background: #111;
}

.preview-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ================================
   CARS PAGE - SAME STYLE AS ABOUT
================================ */

body:has(.cars-section) {
    background: #000 !important;
    color: #fff;
}

/* Hero */
body:has(.cars-section) .page-banner {
    min-height: 520px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.55)
        ),
        url("uploads/hero1.jpg") !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    color: #fff !important;
}

/* Hero text */
body:has(.cars-section) .page-banner .banner-content {
    text-align: center !important;
    color: #fff !important;
}

body:has(.cars-section) .page-banner h1 {
    color: #fff !important;
}

body:has(.cars-section) .page-banner p {
    color: #fff !important;
}

/* الجزء اللي بعد الـ Hero */
body:has(.cars-section) .cars-section {
    background: #000 !important;
    color: #fff !important;
}

/* العناوين */
body:has(.cars-section) .cars-section h2,
body:has(.cars-section) .cars-section h3 {
    color: #fff !important;
}

/* النصوص */
body:has(.cars-section) .cars-section p {
    color: #ccc !important;
}

/* ==========================================
   MY MESSAGES
========================================== */

.customer-messages {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 0;
}


.message-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}


.message-header strong {
    font-size: 18px;
    color: #222;
}


.message-date {
    font-size: 13px;
    color: #888;
}


.customer-message,
.admin-reply {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
}


.customer-message {
    background: #f7f7f7;
}


.admin-reply {
    background: #eef7ff;
    border-left: 4px solid #168cff;
}


.customer-message h3,
.admin-reply h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #222;
}


.customer-message p,
.admin-reply p {
    margin: 0;
    line-height: 1.7;
    color: #555;
    white-space: normal;
    word-wrap: break-word;
}


.waiting {
    color: #999 !important;
    font-style: italic;
}


.message-contact {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}


.message-contact p {
    margin-bottom: 15px;
    color: #666;
}


.message-error {
    max-width: 900px;
    margin: 25px auto 0;
    padding: 15px 20px;
    border-radius: 10px;
    background: #fff1f1;
    color: #c0392b;
    text-align: center;
}


.customer-messages .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


@media (max-width: 768px) {

    .customer-messages {
        width: 100%;
    }

    .message-card {
        padding: 18px;
    }

    .message-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-message,
    .admin-reply {
        padding: 15px;
    }

}

