/* ===================================
   ZAPCOFAST WEBSITE V3
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f8fc;
    color:#222;
}

/* ================= NAVBAR ================= */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:rgba(255,107,0,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 18px rgba(0,0,0,.12);

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:55px;

}

.logo h2{

    color:white;

    font-size:30px;

    font-weight:700;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#ffe4c4;

}

/* ================= HERO ================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:120px 20px 80px;

    background:

    linear-gradient(rgba(255,107,0,.82),

    rgba(255,107,0,.82)),

    url("images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

}

.hero-content{

    max-width:850px;

}

.hero h1{

    font-size:64px;

    margin-bottom:25px;

    line-height:1.2;

}

.hero p{

    font-size:21px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    padding:17px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:white;

    color:#ff6b00;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:#ff6b00;

}

/* ================= SECTION TITLE ================= */

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-size:45px;

    color:#ff6b00;

    margin-bottom:15px;

}

.section-heading p{

    color:#666;

    font-size:18px;

}

.light h2,
.light p{

    color:white;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.navbar{

flex-direction:column;

gap:15px;

}

.nav-links{

gap:18px;

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

}
/* ===================================
   SERVICES
=================================== */

.services{

    padding:100px 8%;

    background:#f8f9fc;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(255,107,0,.20);

}

.card .icon{

    font-size:60px;

    margin-bottom:20px;

}

.card h3{

    font-size:25px;

    margin-bottom:15px;

}

.card p{

    color:#666;

    line-height:1.7;

}

/* ===================================
   STATISTICS
=================================== */

.stats{

    background:linear-gradient(135deg,#ff6b00,#ff8c32);

    padding:100px 8%;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:20px;

    padding:40px;

    text-align:center;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.22);

}

.stat-card h2{

    font-size:48px;

    color:#fff;

    margin-bottom:10px;

}

.stat-card p{

    color:#fff;

    font-size:18px;

}
/* ===================================
WHY CHOOSE US
=================================== */

.why{

padding:100px 8%;

background:#f7f8fc;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:60px;

}

.why-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(255,107,0,.22);

}

.why-card{

font-size:60px;

}

.why-card h3{

margin-top:20px;

font-size:24px;

color:#222;

}
/* ===================================
CONTACT SECTION
=================================== */

.contact{

    padding:100px 8%;

    text-align:center;

    background:#ffffff;

}

.contact h2{

    font-size:48px;

    color:#ff6b00;

    margin-bottom:20px;

}

.contact p{

    font-size:18px;

    color:#666;

    margin-bottom:35px;

}

/* ===================================
FOOTER
=================================== */

footer{

    background:#1f2937;

    color:#ffffff;

    text-align:center;

    padding:25px;

    font-size:16px;

}
/* ===================================
BOOKING SECTION
=================================== */

.booking{

    padding:100px 8%;

    background:#ffffff;

}

.booking-container{

    max-width:750px;

    margin:auto;

}

.booking form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    display:grid;

    gap:20px;

}

.booking input,
.booking select{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.booking input:focus,
.booking select:focus{

    border-color:#ff6b00;

    box-shadow:0 0 8px rgba(255,107,0,.2);

}

.booking button{

    border:none;

    cursor:pointer;

    font-size:18px;

}
.action-btn{
    border:none;
    padding:6px 12px;
    margin:2px;
    border-radius:6px;
    cursor:pointer;
    color:white;
    font-size:13px;
    font-weight:bold;
}

.accept{
    background:#28a745;
}

.pickup{
    background:#ff9800;
}

.delivered{
    background:#2196f3;
}
.action-btn{
    border:none;
    padding:6px 12px;
    margin:3px;
    border-radius:6px;
    cursor:pointer;
    color:#fff;
    font-weight:bold;
}

.accept{
    background:#28a745;
}

.pickup{
    background:#ff9800;
}

.delivered{
    background:#2196f3;
}

.action-btn:hover{
    opacity:0.9;
}
table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

th,td{
    border:1px solid #ddd;
    padding:12px;
    text-align:center;
    vertical-align:middle;
}

th{
    background:#ff6b00;
    color:#fff;
}

td{
    white-space:nowrap;
}

.admin-container{
    width:95%;
    max-width:1400px;
    margin:auto;
    overflow-x:auto;
}
/* ================= NAVBAR SCROLL EFFECT ================= */

.navbar{
    transition: all 0.3s ease;
}

.navbar.scrolled{
    padding:14px 8%;
    background:rgba(30,30,30,.95);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}
/* ===================================
   PREMIUM HERO SECTION
=================================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding:120px 8% 80px;

    background:
    linear-gradient(135deg,#ff6b00,#ff8c32);

    overflow:hidden;

}

.hero-left{

    flex:1;

    color:#fff;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.35);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

    font-weight:600;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.rider-image{

    width:100%;

    max-width:700px;

    animation:floatRider 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.30));

    z-index:2;

}
@keyframes floatRider{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0px);
}

}
/* ===================================
   HERO STATS
=================================== */

.hero-stats{

    display:flex;

    gap:25px;

    margin-top:50px;

    flex-wrap:wrap;

}

.hero-stat{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:18px;

    padding:20px 28px;

    min-width:130px;

    text-align:center;

}

.hero-stat h2{

    color:#fff;

    font-size:30px;

    margin-bottom:5px;

}

.hero-stat span{

    color:#fff;

    font-size:
        font-weight:500;
}

/* ===================================
   FLOATING CARDS
=================================== */

.floating-card{

    position:absolute;

    background:#ffffff;

    color:#222;

    padding:14px 22px;

    border-radius:14px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    animation:floatCard 4s ease-in-out infinite;

    z-index:3;

}

.card1{

    top:12%;

    left:5%;

}

.card2{

    top:45%;

    right:-5%;

}

.card3{

    bottom:10%;

    left:10%;

}

@keyframes floatCard{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

/* ===================================
   RESPONSIVE HERO
=================================== */

@media(max-width:992px){

.hero{

flex-direction:column;

text-align:center;

padding-top:140px;

}

.hero-left,
.hero-right{

width:100%;

}

.hero h1{

font-size:48px;

}

.hero p{

font-size:18px;

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.floating-card{

display:none;

}

.rider-image{

max-width:420px;

margin-top:30px;

}

}
/* ===================================
   PREMIUM SERVICE BUTTON
=================================== */

.service-btn{

display:inline-block;

margin-top:20px;

padding:12px 24px;

background:#ff6b00;

color:#fff;

text-decoration:none;

border-radius:30px;

font-weight:600;

transition:.3s;

}

.service-btn:hover{

background:#222;

transform:translateY(-3px);

box-shadow:0 10px 20px rgba(0,0,0,.20);

}

.service-grid{

margin-top:50px;

}

.card{

overflow:hidden;

position:relative;

}

.card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#ff6b00,#ff9a3c);

}
/* ===================================
   HOW IT WORKS
=================================== */

.how-it-works{

padding:100px 8%;

background:#ffffff;

}

.steps{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:20px;

margin-top:60px;

}

.step{

flex:1;

min-width:180px;

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.step:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(255,107,0,.18);

}

.step-icon{

font-size:55px;

margin-bottom:20px;

}

.step h3{

margin-bottom:10px;

font-size:24px;

}

.step p{

color:#666;

line-height:1.7;

}

.step-arrow{

font-size:40px;

color:#ff6b00;

font-weight:bold;

}

@media(max-width:992px){

.steps{

flex-direction:column;

}

.step-arrow{

transform:rotate(90deg);

}

}
/* ===================================
   CUSTOMER REVIEWS
=================================== */

.reviews{

padding:100px 8%;

background:#f8f9fc;

}

.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:50px;

}

.review-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

text-align:center;

}

.review-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(255,107,0,.20);

}

.stars{

font-size:24px;

margin-bottom:20px;

}

.review-card p{

color:#555;

line-height:1.8;

font-style:italic;

margin-bottom:20px;

}

.review-card h4{

color:#ff6b00;

font-size:18px;

}
/* ===================================
   FAQ SECTION
=================================== */

.faq{

padding:100px 8%;

background:#ffffff;

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq details{

background:#fff;

margin-bottom:18px;

padding:20px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.faq details:hover{

transform:translateY(-4px);

box-shadow:0 15px 30px rgba(255,107,0,.15);

}

.faq summary{

cursor:pointer;

font-size:18px;

font-weight:600;

list-style:none;

}

.faq summary::-webkit-details-marker{

display:none;

}

.faq p{

margin-top:15px;

color:#555;

line-height:1.8;

}
/* ===================================
   PREMIUM CONTACT
=================================== */

.contact{

padding:100px 8%;

background:#f8f9fc;

text-align:center;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:60px;

}

.contact-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(255,107,0,.18);

}

.contact-icon{

font-size:55px;

margin-bottom:20px;

}

.contact-card h3{

margin-bottom:10px;

font-size:24px;

color:#222;

}

.contact-card p{

color:#666;

line-height:1.8;

}
/* ===================================
   PREMIUM FOOTER
=================================== */

.footer{

background:#1f2937;

color:#ffffff;

padding:70px 8% 25px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

}

.footer-box h2,
.footer-box h3{

margin-bottom:20px;

color:#ff6b00;

}

.footer-box p{

line-height:1.8;

color:#ddd;

}

.footer-box ul{

list-style:none;

padding:0;

}

.footer-box ul li{

margin-bottom:12px;

color:#ddd;

}

.footer-box ul li a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer-box ul li a:hover{

color:#ff6b00;

padding-left:6px;

}

.footer hr{

margin:40px 0 20px;

border:none;

height:1px;

background:#444;

}

.footer-bottom{

text-align:center;

color:#aaa;

font-size:15px;

}
/* Status Badges */

.status{
    padding:6px 14px;
    border-radius:20px;
    color:white;
    font-size:13px;
    font-weight:600;
    display:inline-block;
}

.status.pending{
    background:#f39c12;
}

.status.assigned{
    background:#3498db;
}

.status.accepted{
    background:#2980b9;
}

.status.pickup,
.status.pickedup{
    background:#8e44ad;
}

.status.delivered{
    background:#27ae60;
}

.status.cancelled{
    background:#e74c3c;
}

.dashboard-cards .card h1{
    color:#ff6b00;
    font-size:42px;
}
/* ===============================
   ADMIN DASHBOARD
================================ */

.dashboard-cards{
    width:95%;
    max-width:1400px;
    margin:30px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.dashboard-cards .card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.dashboard-cards .card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,107,0,.18);
}

.dashboard-cards .card h3{
    color:#555;
    font-size:22px;
    margin-bottom:15px;
}

.dashboard-cards .card h1{
    color:#ff6b00;
    font-size:42px;
}
/* ===========================
   Rider Orders Table
=========================== */

.booking-container{
    width:100%;
    overflow-x:auto;
}

.booking-container table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
    background:#fff;
}

.booking-container th{
    background:#ff6b00;
    color:#fff;
    padding:12px;
    font-size:15px;
}

.booking-container td{
    padding:10px;
    border:1px solid #ddd;
    text-align:center;
    vertical-align:middle;
    word-break:break-word;
}

.booking-container td:nth-child(2),
.booking-container td:nth-child(3){
    max-width:250px;
    white-space:normal;
    line-height:1.4;
}