/* General */
body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
}

/* Header */
header{
    background:#FFC107; /* Swift Drive Yellow */
    color:#000;
    padding:25px;
    text-align:center;
}

header h1{
    margin:0;
    font-size:42px;
}

header p{
    margin-top:8px;
    font-size:18px;
}

/* Navigation */
nav{
    background:#111;
    padding:15px;
    text-align:center;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-size:17px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#FFC107;
}

/* Main Content */
section{
    padding:60px;
    text-align:center;
}

section h2{
    font-size:38px;
}

section p{
    font-size:18px;
    color:#555;
}

/* Button */
button{
    background:#FFC107;
    color:#000;
    border:none;
    padding:15px 35px;
    font-size:18px;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#000;
    color:#FFC107;
}.hero{
    padding:70px;
    text-align:center;
}

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:50px;
    flex-wrap:wrap;
}

.card{
    width:240px;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#FFC107;
}/* LOGIN PAGE */

.login-page{

background:#111;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.login-box{

background:white;

width:380px;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 20px 40px rgba(0,0,0,.4);

}

.login-box h1{

color:#FFC107;

font-size:40px;

margin-bottom:10px;

}

.login-box p{

margin-bottom:30px;

color:#666;

}

.login-box input{

width:100%;

padding:15px;

margin-bottom:20px;

border-radius:10px;

border:1px solid #ccc;

font-size:16px;

box-sizing:border-box;

}

.login-box button{

width:100%;

padding:15px;

font-size:18px;

}.card h1{
    font-size:50px;
    margin:15px 0;
    color:#111;
}.logo{
    width:300px;
    height:auto;
    display:block;
    margin:20px auto;
}body{

    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#FFC107;

}

.page-title{

    text-align:center;
    font-size:45px;
    margin:40px 0;
    color:#111;

}

.vehicle-card{

    width:92%;
    max-width:1400px;

    margin:50px auto;

    background:#111;

    border-radius:20px;

    display:flex;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.vehicle-gallery{

    width:60%;
    padding:25px;

}

.main-photo{

    width:100%;
    height:500px;

    object-fit:contain;
    background:#000;
    border-radius:15px;

}

.thumbs{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;

    margin-top:20px;

}

.thumbs img{

    width:100%;

    height:110px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.thumbs img:hover{

    transform:scale(1.06);

    border:3px solid #FFC107;

}

.vehicle-info{

    width:40%;

    color:white;

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.status{

    background:#28a745;

    color:white;

    padding:8px 18px;

    border-radius:20px;

    width:max-content;

    font-weight:bold;

}

.vehicle-info h2{

    font-size:40px;

    color:#FFC107;

    margin:20px 0 10px;

}

.vehicle-info h3{

    font-size:30px;

    margin-bottom:25px;

}

.vehicle-info ul{

    list-style:none;

    padding:0;

}

.vehicle-info ul li{

    margin:12px 0;

    font-size:20px;

}

.vehicle-info button{

    margin-top:30px;

    background:#FFC107;

    color:black;

    border:none;

    padding:18px;

    font-size:20px;

    font-weight:bold;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.vehicle-info button:hover{

    background:white;

}/* BOOKING PAGE */

.booking-container{

    background:#FFC107;
    min-height:100vh;
    padding:40px 20px;

}

.booking-header{

    text-align:center;
    margin-bottom:30px;

}

.booking-logo{

    width:220px;
    height:auto;
    margin-bottom:15px;

}

.booking-header h1{

    color:#111;
    font-size:42px;
    margin:0;

}

.booking-header p{

    color:#333;
    font-size:18px;
    margin-top:8px;

}

.booking-form{

    max-width:700px;
    margin:auto;

    background:#111;

    padding:40px;

    border-radius:20px;

    color:white;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.booking-form h2{

    text-align:center;

    color:#FFC107;

    margin-bottom:30px;

}

.booking-form label{

    display:block;

    margin-top:18px;

    font-weight:bold;

}

.booking-form input,
.booking-form select,
.booking-form textarea{

    width:100%;

    padding:15px;

    margin-top:8px;

    border:none;

    border-radius:10px;

    font-size:16px;

    box-sizing:border-box;

    outline:none;

}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{

    border:2px solid #FFC107;

}

.booking-form button{

    width:100%;

    margin-top:30px;

    padding:18px;

    background:#FFC107;

    color:#111;

    font-size:20px;

    font-weight:bold;

    border:none;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.booking-form button:hover{

    background:white;

}/* ==============================
   BOOKING CONFIRMATION PAGE
================================= */

.confirmation-container{

    background:#FFC107;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.confirmation-logo{

    width:220px;

    margin-bottom:25px;

}

.confirmation-card{

    width:700px;

    background:#111;

    color:white;

    border-radius:20px;

    padding:50px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.success-icon{

    width:100px;

    height:100px;

    margin:auto;

    background:#28a745;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:55px;

    color:white;

    font-weight:bold;

}

.confirmation-card h1{

    color:#FFC107;

    margin-top:25px;

    font-size:38px;

}

.confirmation-card p{

    font-size:18px;

    line-height:1.8;

}

.booking-details{

    background:#1d1d1d;

    margin:30px auto;

    padding:25px;

    border-radius:12px;

}

.booking-details h2{

    color:#FFC107;

}

.booking-details h3{

    font-size:34px;

    letter-spacing:3px;

    color:white;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

}

.buttons button{

    padding:16px 35px;

    border:none;

    border-radius:10px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.home-btn{

    background:#FFC107;

    color:black;

}

.home-btn:hover{

    background:white;

}

.fleet-btn{

    background:white;

    color:black;

}

.fleet-btn:hover{

    background:#FFC107;

}/* ===============================
   LEASING SECTION
================================*/

.leasing{

    background:#FFC107;
    padding:70px 40px;
    text-align:center;

}

.leasing h2{

    color:#111;
    font-size:42px;
    margin-bottom:50px;

}

.leasing-container{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;

}

.lease-card{

    width:270px;
    background:#111;
    color:white;
    border-radius:18px;
    padding:35px;
    transition:.3s;
    box-shadow:0 15px 30px rgba(0,0,0,.3);

}

.lease-card:hover{

    transform:translateY(-10px);
    background:#fff;
    color:#111;
    cursor:pointer;

}

.lease-card h3{

    color:#FFC107;
    font-size:26px;
    margin-bottom:15px;

}

.lease-card:hover h3{

    color:#111;

}

.lease-card h1{

    font-size:40px;
    margin:15px 0;
    color:white;

}

.lease-card:hover h1{

    color:#111;

}

.lease-card p{

    color:#ddd;
    line-height:1.8;

}

.lease-card:hover p{

    color:#333;

}

/* ===============================
   FOOTER
================================*/

footer{

    background:#111;
    color:white;
    text-align:center;
    padding:50px;

}

footer h2{

    color:#FFC107;
    font-size:36px;
    margin-bottom:20px;

}

footer p{

    color:white;
    font-size:18px;
    line-height:1.8;

}/* =======================
ADMIN DASHBOARD
======================= */

.admin-header{

background:#FFC107;

padding:20px;

text-align:center;

}

.admin-nav{

background:#111;

padding:15px;

display:flex;

justify-content:center;

gap:30px;

}

.admin-nav a{

color:white;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.admin-nav a:hover{

color:#FFC107;

}

.dashboard{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

padding:40px;

background:#FFC107;

}

.stat-card{

background:#111;

color:white;

padding:30px;

border-radius:15px;

text-align:center;

transition:.3s;

}

.stat-card:hover{

background:white;

color:#111;

}

.stat-card h1{

font-size:42px;

margin:10px 0;

}

.admin-section{

width:90%;

margin:30px auto;

background:#111;

padding:30px;

border-radius:20px;

color:white;

}

.admin-section h2{

color:#FFC107;

margin-bottom:20px;

}

table{

width:100%;

border-collapse:collapse;

}

table th{

background:#FFC107;

color:black;

padding:15px;

}

table td{

padding:15px;

border-bottom:1px solid #444;

}

.available{

background:#28a745;

padding:8px 15px;

border-radius:20px;

}

.quick-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.quick-buttons button{

padding:15px 30px;

background:#FFC107;

color:black;

border:none;

border-radius:10px;

font-weight:bold;

cursor:pointer;

}

.quick-buttons button:hover{

background:white;

}.card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.card-link .card{
    cursor:pointer;
}

.card-link:hover .card{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}/* ===========================================
   SWIFT DRIVE PAYMENT SYSTEM
   PAYMENT.CSS (PART 1)
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#FFC107;
    color:#fff;
}

/* ================= HEADER ================= */

.payment-header{

    background:#111;

    text-align:center;

    padding:25px;

    border-bottom:5px solid #FFC107;

}

.logo{

    width:220px;

    height:auto;

    display:block;

    margin:0 auto 15px;

}

.payment-header h1{

    color:#FFC107;

    font-size:42px;

    letter-spacing:2px;

}

.payment-header p{

    color:white;

    font-size:18px;

    margin-top:8px;

}

/* ================= MAIN ================= */

.container{

    width:92%;

    max-width:950px;

    margin:40px auto;

}

.container h2{

    color:#111;

    text-align:center;

    font-size:34px;

    margin-bottom:25px;

}

/* ================= PAYMENT FORM ================= */

.paymentBox{

    background:#111;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.paymentBox input,
.paymentBox select{

    width:100%;

    padding:16px;

    margin:12px 0;

    border:none;

    border-radius:10px;

    background:white;

    color:#111;

    font-size:16px;

}

.paymentBox input:focus,
.paymentBox select:focus{

    outline:none;

    border:3px solid #FFC107;

}

.paymentBox button{

    width:100%;

    padding:18px;

    margin-top:20px;

    background:#FFC107;

    color:#111;

    border:none;

    border-radius:10px;

    font-size:19px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.paymentBox button:hover{

    background:white;

    color:#111;

}

/* ================= RECEIPT ================= */

.receipt{

    display:none;

    margin-top:40px;

    background:#111;

    color:white;

    border:3px solid #FFC107;

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 40px rgba(0,0,0,.45);

}

.receipt-header{

    text-align:center;

    margin-bottom:25px;

}

.receipt-logo{

    width:150px;

    margin-bottom:15px;

}

.receipt-header h1{

    color:#FFC107;

    font-size:34px;

    margin-bottom:5px;

}

.receipt-header p{

    color:white;

    margin:4px 0;

}

.receipt-header h2{

    background:#FFC107;

    color:#111;

    padding:12px;

    margin-top:20px;

    border-radius:10px;

}

.receipt hr{

    border:none;

    height:2px;

    background:#FFC107;

    margin:20px 0;

}

.receipt h3{

    background:#FFC107;

    color:#111;

    padding:10px;

    border-radius:8px;

    margin:20px 0 15px;

}

.receipt p{

    font-size:18px;

    margin:10px 0;

}

.receipt strong{

    color:#FFC107;

}

.paid{

    color:#00ff66;

    font-weight:bold;

    font-size:20px;

}
