/* ============================================================
   RAFIQ AL-SAHRA — Heavy Trucks & Spare Parts Import
   Premium Automotive Design System
   ============================================================ */

/* ============ Variables ============ */
:root {
    --primary: #0A0F1A;
    --primary-mid: #111827;
    --primary-light: #1F2937;
    --red: #DC2626;
    --red-light: #EF4444;
    --red-dark: #B91C1C;
    --white: #FFFFFF;
    --text: #0F172A;
    --text-sec: #64748B;
    --text-muted: #94A3B8;
    --bg: #FFFFFF;
    --bg-warm: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-dark: #0A0F1A;
    --shadow-sm: 0 2px 8px rgba(10,15,26,.06);
    --shadow-md: 0 8px 24px rgba(10,15,26,.08);
    --shadow-lg: 0 16px 48px rgba(10,15,26,.1);
    --shadow-xl: 0 24px 64px rgba(10,15,26,.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Inter', sans-serif;
    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --ease-smooth: cubic-bezier(.4,0,.2,1);
    --red-grad: linear-gradient(135deg, #DC2626, #EF4444, #F87171);
    --dark-grad: linear-gradient(135deg, #0A0F1A, #111827, #1F2937);
}

/* ============ Reset ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body { font-family:var(--font-ar); background:var(--bg); color:var(--text); line-height:1.7; overflow-x:hidden; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }

/* ============ Preloader ============ */
.preloader { position:fixed; inset:0; background:var(--white); display:flex; align-items:center; justify-content:center; z-index:99999; transition:opacity .8s var(--ease-out), visibility .8s; }
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner { text-align:center; }
.preloader-icon { width:64px; height:64px; margin:0 auto 1.25rem; color:var(--red); opacity:0; animation:preReveal 1s var(--ease-out) forwards; }
.preloader-icon svg { width:100%; height:100%; }
@keyframes preReveal { from { opacity:0; transform:scale(.6); } to { opacity:1; transform:scale(1); } }
.preloader-name { font-size:1.2rem; font-weight:800; color:var(--primary); letter-spacing:2px; margin-bottom:1.25rem; opacity:0; animation:preFadeUp .8s var(--ease-out) .4s forwards; }
@keyframes preFadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.preloader-dots { display:flex; justify-content:center; gap:6px; }
.preloader-dots span { width:5px; height:5px; border-radius:50%; background:var(--red); opacity:.2; animation:dotPulse 1.4s ease-in-out infinite; }
.preloader-dots span:nth-child(2) { animation-delay:.15s; }
.preloader-dots span:nth-child(3) { animation-delay:.3s; }
@keyframes dotPulse { 0%,80%,100% { opacity:.2; transform:scale(.8); } 40% { opacity:1; transform:scale(1.3); } }

/* ============ Navbar ============ */
.navbar { position:fixed; top:0; left:0; width:100%; padding:1rem 0; z-index:1000; transition:all .5s var(--ease-smooth); }
.navbar.scrolled { background:rgba(255,255,255,.97); backdrop-filter:blur(20px) saturate(180%); padding:.65rem 0; box-shadow:0 1px 20px rgba(10,15,26,.06); border-bottom:1px solid rgba(10,15,26,.04); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.nav-brand { display:flex; align-items:center; gap:.85rem; z-index:10; }
.brand-icon { width:44px; height:44px; border-radius:12px; background:var(--red); display:flex; align-items:center; justify-content:center; color:var(--white); transition:all .4s; box-shadow:0 4px 16px rgba(220,38,38,.3); }
.brand-icon svg { width:22px; height:22px; }
.brand-text { display:flex; flex-direction:column; gap:.05rem; }
.brand-name { font-weight:900; font-size:1.1rem; color:var(--white); letter-spacing:.5px; transition:color .4s; }
.brand-sub { font-size:.62rem; color:rgba(255,255,255,.45); transition:color .4s; font-weight:500; }
.navbar.scrolled .brand-name { color:var(--primary); }
.navbar.scrolled .brand-sub { color:var(--text-muted); }
.nav-menu { display:flex; align-items:center; gap:.35rem; }
.nav-link { padding:.5rem .9rem; font-size:.85rem; font-weight:600; color:rgba(255,255,255,.65); border-radius:var(--radius-full); transition:all .3s; position:relative; }
.nav-link::after { content:''; position:absolute; bottom:3px; left:50%; transform:translateX(-50%) scaleX(0); width:16px; height:2.5px; background:var(--red-grad); border-radius:3px; transition:transform .35s var(--ease-smooth); }
.nav-link:hover { color:var(--white); }
.nav-link.active { color:var(--white); }
.nav-link.active::after { transform:translateX(-50%) scaleX(1); }
.navbar.scrolled .nav-link { color:var(--text-sec); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color:var(--text); }
.navbar.scrolled .nav-link.active::after { background:var(--red-grad); }
.nav-end { display:flex; align-items:center; gap:.75rem; }
.nav-phone { display:none; align-items:center; gap:.5rem; background:rgba(220,38,38,.1); border:1px solid rgba(220,38,38,.2); color:var(--red-light); padding:.4rem 1rem; border-radius:var(--radius-full); font-size:.8rem; font-weight:700; transition:all .3s; }
.nav-phone svg { width:14px; height:14px; }
.nav-phone:hover { background:var(--red); color:var(--white); border-color:var(--red); }
.navbar.scrolled .nav-phone { display:inline-flex; }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:100; }
.nav-toggle span { width:22px; height:2px; background:var(--white); border-radius:4px; transition:all .35s var(--ease-smooth); }
.navbar.scrolled .nav-toggle span { background:var(--text); }
.nav-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============ Buttons ============ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-family:inherit; font-weight:700; border:none; border-radius:var(--radius-full); cursor:pointer; transition:all .4s var(--ease-smooth); text-decoration:none; }
.btn svg { width:18px; height:18px; flex-shrink:0; }
.btn-primary { background:var(--red-grad); color:var(--white); box-shadow:0 4px 20px rgba(220,38,38,.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(220,38,38,.45); }
.btn-outline { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.2); }
.btn-outline:hover { background:rgba(255,255,255,.08); transform:translateY(-2px); }
.btn-lg { padding:.85rem 2rem; font-size:.92rem; }

/* ============ Hero ============ */
.hero { position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-img-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.hero-gradient { position:absolute; inset:0; background:linear-gradient(160deg, rgba(10,15,26,.95) 0%, rgba(10,15,26,.88) 40%, rgba(17,24,39,.82) 70%, rgba(10,15,26,.94) 100%); }
.hero-pattern { position:absolute; inset:0; background-image:radial-gradient(rgba(220,38,38,.03) 1px, transparent 1px); background-size:48px 48px; }
.hero-content { position:relative; z-index:2; padding-top:8rem; }
.hero-badge { display:inline-flex; align-items:center; gap:.5rem; background:rgba(220,38,38,.08); border:1px solid rgba(220,38,38,.15); color:var(--red-light); padding:.4rem 1.1rem; border-radius:var(--radius-full); font-size:.76rem; font-weight:600; margin-bottom:1.5rem; }
.hero-badge svg { width:14px; height:14px; }
.hero-title { margin-bottom:1.5rem; }
.hero-line { display:block; font-weight:900; line-height:1.15; }
.line-1, .line-2 { font-size:2.8rem; color:var(--white); }
.line-accent { font-size:3.4rem; background:var(--red-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-desc { max-width:580px; color:rgba(255,255,255,.5); font-size:.95rem; line-height:1.9; margin-bottom:2rem; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3.5rem; }
.hero-stats { display:flex; align-items:center; gap:2rem; }
.hero-stat { text-align:center; }
.hs-num { font-size:2rem; font-weight:900; color:var(--red); display:inline; font-family:var(--font-en); }
.hs-plus { font-size:1.2rem; font-weight:700; color:var(--red); }
.hs-label { display:block; font-size:.75rem; color:rgba(255,255,255,.35); margin-top:.15rem; }
.hero-stat-divider { width:1px; height:36px; background:rgba(255,255,255,.08); }

/* ============ Section Common ============ */
.section-label { display:flex; align-items:center; gap:.75rem; margin-bottom:1rem; }
.section-label.center { justify-content:center; }
.label-line { width:28px; height:2px; background:var(--red-grad); border-radius:2px; }
.section-label span { font-size:.78rem; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:2px; }
.section-title { font-size:2.1rem; font-weight:900; color:var(--text); line-height:1.35; margin-bottom:1rem; }
.section-title.center { text-align:center; }
.section-desc { font-size:.92rem; color:var(--text-sec); line-height:1.8; }
.section-desc.center { text-align:center; max-width:580px; margin:0 auto; }

/* ============ About ============ */
.about { padding:7rem 0; background:var(--bg-warm); }
.about-layout { display:grid; grid-template-columns:1.1fr 1fr; gap:4rem; align-items:center; }
.about-text { color:var(--text-sec); font-size:.95rem; line-height:1.9; margin-bottom:2rem; }
.about-cards { display:flex; flex-direction:column; gap:1rem; }
.about-card { display:flex; align-items:flex-start; gap:1rem; padding:1.25rem; background:var(--bg-card); border-radius:var(--radius-md); border:1px solid rgba(10,15,26,.04); transition:all .35s; }
.about-card:hover { box-shadow:var(--shadow-md); transform:translateX(-4px); }
.ac-icon { width:44px; height:44px; min-width:44px; border-radius:12px; background:rgba(220,38,38,.06); display:flex; align-items:center; justify-content:center; }
.ac-icon svg { width:20px; height:20px; stroke:var(--red); }
.about-card h4 { font-size:.9rem; font-weight:700; color:var(--text); margin-bottom:.2rem; }
.about-card p { font-size:.8rem; color:var(--text-sec); line-height:1.5; }

/* About Image Grid */
.about-img-grid { display:grid; grid-template-columns:1.4fr 1fr; grid-template-rows:1fr 1fr; gap:.75rem; }
.aig-main { grid-row:span 2; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.aig-main img { width:100%; height:100%; object-fit:cover; }
.aig-side { border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); }
.aig-side img { width:100%; height:100%; object-fit:cover; }
.about-img-grid img { transition:transform .6s var(--ease); }
.about-img-grid div:hover img { transform:scale(1.04); }

/* ============ Fleet Gallery ============ */
.fleet { padding:7rem 0; background:var(--bg); }
.fleet-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:240px; gap:.75rem; margin-top:3rem; }
.fleet-card { position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; }
.fleet-card.fleet-lg { grid-column:span 2; }
.fleet-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.fleet-card:hover img { transform:scale(1.06); }
.fleet-overlay { position:absolute; inset:0; background:linear-gradient(180deg, transparent 30%, rgba(10,15,26,.88) 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:1.5rem; transition:all .4s; }
.fleet-tag { display:inline-block; background:var(--red-grad); color:var(--white); font-size:.65rem; font-weight:700; padding:.2rem .65rem; border-radius:var(--radius-full); margin-bottom:.4rem; width:fit-content; letter-spacing:.3px; }
.fleet-overlay h4 { color:var(--white); font-size:.95rem; font-weight:800; }
.fleet-overlay p { color:rgba(255,255,255,.6); font-size:.78rem; margin-top:.25rem; line-height:1.5; }

/* Fleet Hidden & Show More */
.fleet-card.fleet-hidden { display:none; }
.fleet-grid.fleet-expanded .fleet-card.fleet-hidden { display:block; }
.fleet-more-wrap { text-align:center; margin-top:2rem; }
.fleet-more-btn { display:inline-flex; align-items:center; gap:.5rem; background:var(--bg-warm); border:1.5px solid rgba(10,15,26,.08); color:var(--text); padding:.75rem 2rem; border-radius:var(--radius-full); font-family:inherit; font-size:.88rem; font-weight:700; cursor:pointer; transition:all .4s var(--ease-smooth); }
.fleet-more-btn svg { width:18px; height:18px; transition:transform .4s; }
.fleet-more-btn:hover { background:var(--red); color:var(--white); border-color:var(--red); box-shadow:0 4px 20px rgba(220,38,38,.25); }
.fleet-more-btn:hover svg { stroke:var(--white); }
.fleet-more-btn.expanded svg { transform:rotate(180deg); }

/* ============ Services ============ */
.services { padding:7rem 0; background:var(--bg-warm); }
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3rem; }
.service-card { background:var(--bg-card); border:1px solid rgba(10,15,26,.05); border-radius:var(--radius-lg); padding:2.25rem 2rem; position:relative; transition:all .5s var(--ease); overflow:hidden; }
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); }
.service-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--red-grad); transform:scaleX(0); transition:transform .5s var(--ease-out); transform-origin:left; }
.service-card:hover::after { transform:scaleX(1); }
.sc-featured { border-color:rgba(220,38,38,.1); }
.sc-featured::before { content:''; position:absolute; top:0; right:0; width:150px; height:150px; background:radial-gradient(circle, rgba(220,38,38,.04), transparent 70%); pointer-events:none; }
.sc-num { font-family:var(--font-en); font-size:2.5rem; font-weight:900; color:rgba(220,38,38,.06); position:absolute; top:.75rem; right:1.25rem; line-height:1; }
.sc-icon { width:52px; height:52px; border-radius:14px; background:rgba(220,38,38,.06); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.sc-icon svg { width:24px; height:24px; stroke:var(--red); }
.service-card h3 { font-size:1.05rem; font-weight:800; color:var(--text); margin-bottom:.6rem; }
.service-card p { font-size:.83rem; color:var(--text-sec); line-height:1.7; margin-bottom:1rem; }
.sc-tags { display:flex; flex-wrap:wrap; gap:.35rem; }
.sc-tags span { font-size:.7rem; font-weight:600; color:var(--red); background:rgba(220,38,38,.06); padding:.25rem .7rem; border-radius:var(--radius-full); border:1px solid rgba(220,38,38,.1); }

/* ============ Info Banner ============ */
.info-banner { padding:4rem 0; background:var(--primary); position:relative; overflow:hidden; }
.info-banner::before { content:''; position:absolute; inset:0; background-image:radial-gradient(rgba(220,38,38,.04) 1px, transparent 1px); background-size:36px 36px; }
.info-banner-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; position:relative; z-index:1; }
.ib-item { text-align:center; }
.ib-icon { width:52px; height:52px; margin:0 auto .75rem; border-radius:14px; background:rgba(220,38,38,.12); display:flex; align-items:center; justify-content:center; }
.ib-icon svg { width:26px; height:26px; }
.ib-label { font-size:.72rem; color:rgba(255,255,255,.35); font-weight:500; margin-bottom:.25rem; letter-spacing:.5px; }
.ib-val { font-size:.92rem; font-weight:700; color:var(--white); }

/* ============ Why Us ============ */
.why-us { padding:7rem 0; background:var(--bg); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }
.why-card { background:var(--bg-warm); border:1px solid rgba(10,15,26,.04); border-radius:var(--radius-lg); padding:2rem 1.5rem; text-align:center; transition:all .5s var(--ease); position:relative; overflow:hidden; }
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); background:var(--bg-card); }
.why-card::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:50px; height:3px; background:var(--red-grad); border-radius:0 0 3px 3px; opacity:0; transition:opacity .4s; }
.why-card:hover::before { opacity:1; }
.wc-icon { width:52px; height:52px; border-radius:14px; background:rgba(220,38,38,.06); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.wc-icon svg { width:24px; height:24px; stroke:var(--red); }
.why-card h3 { font-size:.95rem; font-weight:800; color:var(--text); margin-bottom:.4rem; }
.why-card p { font-size:.8rem; color:var(--text-sec); line-height:1.7; }

/* ============ CTA Banner ============ */
.cta-banner { padding:6rem 0; position:relative; overflow:hidden; }
.cta-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.cta-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,15,26,.92), rgba(10,15,26,.85)); }
.cta-content { position:relative; z-index:1; text-align:center; }
.cta-content h2 { font-size:2rem; font-weight:900; color:var(--white); margin-bottom:.75rem; }
.cta-content > p { color:rgba(255,255,255,.5); max-width:500px; margin:0 auto 2rem; font-size:.92rem; line-height:1.7; }
.cta-phone-btn { display:inline-flex; align-items:center; gap:.75rem; background:var(--red-grad); color:var(--white); padding:.85rem 2.5rem; border-radius:var(--radius-full); font-weight:800; font-size:1.1rem; transition:all .4s; box-shadow:0 4px 24px rgba(220,38,38,.3); font-family:var(--font-en); }
.cta-phone-btn svg { width:20px; height:20px; }
.cta-phone-btn:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 8px 40px rgba(220,38,38,.45); }

/* ============ Contact ============ */
.contact { padding:7rem 0; background:var(--bg-warm); }
.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.contact-card { background:var(--bg-card); border:1px solid rgba(10,15,26,.04); border-radius:var(--radius-lg); padding:2.25rem 2rem; text-align:center; transition:all .4s var(--ease); }
.contact-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.cc-icon { width:52px; height:52px; border-radius:14px; background:rgba(220,38,38,.06); display:flex; align-items:center; justify-content:center; margin:0 auto 1.25rem; }
.cc-icon svg { width:24px; height:24px; stroke:var(--red); }
.contact-card h4 { font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:.5rem; }
.contact-card a, .contact-card p { font-size:.88rem; color:var(--text-sec); line-height:1.6; display:block; transition:color .3s; }
.contact-card a:hover { color:var(--red); }

/* ============ Footer ============ */
.footer { background:var(--primary); padding:4rem 0 0; color:rgba(255,255,255,.65); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.06); }
.footer-brand .brand-icon { margin-bottom:1rem; }
.footer-brand h3 { color:var(--white); font-size:1.1rem; font-weight:800; margin-bottom:.25rem; }
.footer-brand p { font-size:.82rem; opacity:.5; line-height:1.6; }
.footer-links h4, .footer-contact h4 { color:var(--red-light); font-size:.85rem; font-weight:700; margin-bottom:1rem; letter-spacing:.5px; }
.footer-links a, .footer-contact a, .footer-contact p { display:block; font-size:.82rem; color:rgba(255,255,255,.45); padding:.25rem 0; transition:all .3s; }
.footer-links a:hover, .footer-contact a:hover { color:var(--red-light); padding-right:.5rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:1.5rem 0; flex-wrap:wrap; gap:.75rem; }
.footer-bottom p { font-size:.78rem; opacity:.4; }
.footer-credits { display:flex; align-items:center; gap:.35rem; font-size:.78rem; }
.footer-credits span { opacity:.35; }
.footer-credits a { color:var(--red-light); font-weight:700; opacity:.6; transition:opacity .3s; }
.footer-credits a:hover { opacity:1; }

/* ============ Scroll Reveal ============ */
.reveal { opacity:0; transform:translateY(30px); transition:all .8s var(--ease-out); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============ Responsive ============ */
@media(max-width:1024px) {
    .line-1, .line-2 { font-size:2.2rem; }
    .line-accent { font-size:2.6rem; }
    .about-layout { grid-template-columns:1fr; gap:3rem; }
    .services-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:repeat(2,1fr); }
    .contact-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
    .fleet-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; }
    .fleet-card.fleet-lg { grid-column:span 1; }
    .info-banner-grid { grid-template-columns:1fr; gap:1.5rem; }
    .nav-menu { position:fixed; top:0; right:-100%; width:85%; max-width:340px; height:100vh; background:var(--white); flex-direction:column; align-items:stretch; padding:5rem 1.5rem 2rem; transition:right .4s var(--ease-smooth); box-shadow:-10px 0 60px rgba(0,0,0,.1); gap:.15rem; z-index:99; }
    .nav-menu.active { right:0; }
    .nav-link { color:var(--text); padding:.8rem 1.2rem; border-radius:var(--radius-sm); font-size:.95rem; border-right:3px solid transparent; }
    .nav-link:hover, .nav-link.active { background:rgba(220,38,38,.04); color:var(--red); border-right-color:var(--red); }
    .nav-link::after { display:none; }
    .nav-toggle { display:flex; }
    .nav-phone { display:none !important; }
    .hero-stats { gap:1.5rem; flex-wrap:wrap; }
}
@media(max-width:768px) {
    .container { padding:0 1.25rem; }
    .line-1, .line-2 { font-size:1.8rem; }
    .line-accent { font-size:2.1rem; }
    .section-title { font-size:1.7rem; }
    .why-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; text-align:center; }
    .cta-content h2 { font-size:1.5rem; }
    .hero-stats { gap:1rem; }
    .hs-num { font-size:1.6rem; }
    .fleet-grid { grid-template-columns:1fr; grid-auto-rows:200px; }
    .info-banner-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
    .line-1, .line-2 { font-size:1.5rem; }
    .line-accent { font-size:1.7rem; }
    .hero-actions { flex-direction:column; align-items:stretch; }
    .btn-lg { padding:.75rem 1.5rem; font-size:.88rem; }
    .cta-phone-btn { font-size:.95rem; padding:.75rem 2rem; }
}
