/*
Theme Name: Bosta Drivers
Theme URI: https://bostacer.com
Author: Mohammed
Description: قالب احترافي لتوظيف السائقين (Lead Generation)
Version: 3.0
*/

/* =====================
   Variables
===================== */
:root{
--primary:#1e3a8a;
--accent:#22c55e;
--bg:#f8fafc;
--text:#111827;
--soft:#eef2ff;
}

/* =====================
   Reset
===================== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Tahoma, Arial;
background:var(--bg);
color:var(--text);
line-height:1.7;
}

/* =====================
   Layout
===================== */
.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

/* =====================
   Header
===================== */
.site-header{
background:#020617;
color:white;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,0.3);
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
max-width:1100px;
margin:auto;
}

.logo{
font-size:20px;
font-weight:bold;
}

.logo span{
color:var(--accent);
}

.header-btn{
background:var(--accent);
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.header-btn:hover{
background:#16a34a;
}

/* =====================
   Hero
===================== */
.hero{
background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7') center/cover;
color:#fff;
text-align:center;
padding:120px 20px;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
max-width:600px;
margin:auto;
}

/* CTA */
.apply-btn{
display:inline-block;
margin-top:25px;
background:var(--accent);
color:white;
padding:16px 35px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
font-size:18px;
transition:0.3s;
}

.apply-btn:hover{
background:#16a34a;
}

/* =====================
   Sections
===================== */
.section{
padding:80px 20px;
text-align:center;
}

.section h2{
font-size:30px;
margin-bottom:10px;
}

/* Services */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
margin-top:40px;
}

.service{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.service:hover{
transform:translateY(-6px);
}

/* Why */
.why{
background:var(--soft);
}

/* Stats */
.stats{
display:flex;
justify-content:center;
gap:50px;
margin-top:40px;
flex-wrap:wrap;
}

.stat h2{
font-size:40px;
color:var(--primary);
}

/* Apply box */
.apply-box{
background:white;
padding:35px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
margin-top:30px;
}

/* Trust */
.trust{
background:#ecfeff;
}

.trust p{
font-size:18px;
margin:10px 0;
}

/* Partners */
.partners-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:25px;
margin-top:40px;
}

.partner{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
font-weight:bold;
}

/* Contact */
.contact{
background:var(--primary);
color:white;
}

/* =====================
   Sticky Button
===================== */
.sticky-apply{
position:fixed;
bottom:15px;
right:15px;
background:var(--accent);
color:#fff;
padding:14px 20px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.3);
}

/* =====================
   Popup
===================== */
#live-popup{
position:fixed;
bottom:20px;
left:20px;
background:#020617;
color:white;
padding:12px 18px;
border-radius:10px;
font-size:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
z-index:9999;
display:none;
}

/* =====================
   Responsive
===================== */
@media(max-width:768px){

.hero{
padding:90px 20px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.header-container{
flex-direction:row;
}

}
