/* ============================================================
   HOME — Mamun Rent A Car
   ============================================================ */

/* ---------- HERO ---------- */
.hero-section { background: var(--color-ink); color: var(--color-light); padding: 70px 0 80px; position: relative; overflow: hidden; }
.hero-section::before {
    content: ""; position: absolute; top: -20%; right: -10%; width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(226,28,36,.28), rgba(226,28,36,0) 68%);
}
.hero-section .wrap { gap: 56px; align-items: center; position: relative; }
.hero-left { flex: 1; max-width: 620px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 9px; background: rgba(226,28,36,.14); border: 1px solid rgba(226,28,36,.45);
    color: #ff6a6f; font-weight: 600; font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; padding: 8px 16px; border-radius: 999px;
}
.hero-left h1 { color: var(--color-light); font-size: 60px; line-height: 1.06; margin: 22px 0 20px; }
.hero-left h1 .red { color: var(--color-red); }
.hero-lede { color: #c7cbd2; font-size: 18px; line-height: 1.6; max-width: 520px; }
.hero-buttons { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .ht-item { display: flex; flex-direction: column; }
.hero-trust .ht-item strong { font-family: var(--font-display); font-size: 26px; color: var(--color-red); line-height: 1; }
.hero-trust .ht-item span { font-size: 13px; color: var(--color-muted); margin-top: 5px; }
.hero-trust .ht-sep { width: 1px; height: 40px; background: rgba(255,255,255,.14); }

/* hero car slider (Owl) */
.hero-slider-wrap { flex: 0 0 640px; max-width: 640px; }
.hero-slide img { width: 100%; border-radius: 16px; }
.hero-slider-wrap .owl-dots { text-align: center; margin-top: 16px; }
.hero-slider-wrap .owl-dot span { width: 9px; height: 9px; background: rgba(255,255,255,.3); display: inline-block; border-radius: 50%; margin: 0 4px; transition: background .2s ease, width .2s ease; }
.hero-slider-wrap .owl-dot.active span { background: var(--color-red); width: 26px; border-radius: 6px; }

/* ---------- ABOUT / LOW COST ---------- */
.about-section { background: var(--color-light); padding: 100px 0; }
.about-section .wrap { gap: 70px; align-items: center; }
.about-media { flex: 0 0 620px; max-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.about-content { flex: 1; }
.about-content h2 { margin: 14px 0 20px; }
.about-content p { color: var(--color-body); font-size: 16.5px; line-height: 1.8; margin-bottom: 18px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 24px 0 30px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--color-ink); font-size: 15px; }
.about-list li svg { width: 20px; height: 20px; fill: var(--color-red); flex: 0 0 auto; }

/* ---------- SERVICES ---------- */
.services-section { background: var(--color-surface); padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 14px; padding: 32px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(16,24,45,.3); border-color: transparent; }
.service-card .sc-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(226,28,36,.10); color: var(--color-red); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-card .sc-icon svg { width: 30px; height: 30px; fill: currentColor; }
.service-card h3 { font-size: 20px; margin: 0 0 10px; }
.service-card p { font-size: 14.5px; color: var(--color-body); line-height: 1.6; margin: 0; }

/* ---------- FLEET (Owl carousel of cards) ---------- */
.fleet-section { background: var(--color-light); padding: 100px 0; }
.fleet-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 46px; }
.fleet-card { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; }
.fleet-photo { aspect-ratio: 16 / 11; overflow: hidden; background: var(--color-surface); }
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fleet-card:hover .fleet-photo img { transform: scale(1.05); }
.fleet-body { padding: 24px; }
.fleet-body h3 { font-size: 21px; margin: 0 0 14px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 20px; }
.fleet-specs li { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--color-body); }
.fleet-specs svg { width: 16px; height: 16px; fill: var(--color-red); flex: 0 0 auto; }
.fleet-actions { display: flex; gap: 10px; }
.fleet-actions .btn { flex: 1; }

/* Owl shared controls */
.owl-carousel .owl-nav { margin-top: 0; }
.owl-nav-row { display: flex; gap: 10px; }
.owl-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--color-border); background: var(--color-light); color: var(--color-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.owl-btn:hover { background: var(--color-red); border-color: var(--color-red); color: var(--color-light); }
.owl-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- WHY CHOOSE ---------- */
.why-section { background: var(--color-ink); color: var(--color-light); padding: 100px 0; }
.why-section .section-head h2 { color: var(--color-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 34px 30px; text-align: center; }
.why-card .wc-icon { width: 66px; height: 66px; border-radius: 50%; background: var(--color-red); color: var(--color-light); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.why-card .wc-icon svg { width: 32px; height: 32px; fill: currentColor; }
.why-card h3 { color: var(--color-light); font-size: 19px; margin: 0 0 10px; }
.why-card p { color: var(--color-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- VIDEO ---------- */
.video-section { background: var(--color-surface); padding: 100px 0; }
.video-frame { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(16,24,45,.5); max-width: 1000px; margin: 0 auto; background: var(--color-ink); }
.video-frame video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- COVERAGE (64 districts) ---------- */
.coverage-section { background: var(--color-red); color: var(--color-light); padding: 66px 0; }
.coverage-section .wrap { gap: 40px; flex-wrap: wrap; }
.coverage-left { display: flex; align-items: center; gap: 22px; }
.coverage-left .cov-badge { width: 82px; height: 82px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.coverage-left h2 { color: var(--color-light); font-size: 34px; margin: 0 0 6px; }
.coverage-left p { color: rgba(255,255,255,.9); margin: 0; font-size: 16px; }
.coverage-section .btn { background: var(--color-light); color: var(--color-red); }
.coverage-section .btn:hover { background: var(--color-ink); color: var(--color-light); }

/* ---------- TESTIMONIALS ---------- */
.testi-section { background: var(--color-light); padding: 100px 0; }
.testi-card { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 16px; padding: 34px; margin: 6px; }
.testi-card .stars { margin-bottom: 18px; }
.testi-card p { font-size: 16px; line-height: 1.7; color: var(--color-ink); margin: 0 0 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: var(--color-surface); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author .ta-name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--color-ink); }
.testi-author .ta-role { font-size: 13px; color: var(--color-body); }
.testi-section .owl-dots { text-align: center; margin-top: 30px; }
.testi-section .owl-dot span { width: 9px; height: 9px; background: var(--color-border); display: inline-block; border-radius: 50%; margin: 0 4px; transition: background .2s ease, width .2s ease; }
.testi-section .owl-dot.active span { background: var(--color-red); width: 26px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--color-surface); padding: 100px 0; }
.faq-section .wrap { gap: 70px; align-items: flex-start; }
.faq-intro { flex: 0 0 440px; }
.faq-intro h2 { margin: 14px 0 18px; }
.faq-intro p { color: var(--color-body); font-size: 16px; line-height: 1.7; margin-bottom: 26px; }
.faq-list { flex: 1; }
.faq-item { background: var(--color-light); border: 1px solid var(--color-border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-item[open] { border-color: var(--color-red); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--color-ink); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--color-red); flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.7; color: var(--color-body); }

/* ---------- MAP ---------- */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.2); }

/* ---------- CTA ---------- */
.cta-section { background: var(--color-ink); color: var(--color-light); padding: 84px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; left: -8%; bottom: -40%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(226,28,36,.3), rgba(226,28,36,0) 68%); }
.cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: var(--color-light); font-size: 44px; margin-bottom: 16px; }
.cta-inner p { color: var(--color-muted); font-size: 17px; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   HOME RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-section .wrap { flex-direction: column; align-items: stretch; }
    .hero-slider-wrap { flex: 0 0 auto; max-width: 100%; }
    .about-section .wrap, .faq-section .wrap { flex-direction: column; }
    .about-media, .faq-intro { flex: 0 0 auto; width: 100%; max-width: 100%; }
    .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-section .wrap { flex-direction: column; text-align: center; }
    .coverage-left { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    h1, .hero-left h1 { font-size: 40px; letter-spacing: -.5px; }
    h2 { font-size: 30px; }
    .services-grid, .why-grid { grid-template-columns: 1fr; }
    .about-list { grid-template-columns: 1fr; }
    .fleet-head { display: block; }
    .fleet-head .owl-nav-row { margin-top: 20px; }
    .cta-inner h2 { font-size: 32px; }
    .coverage-left h2 { font-size: 26px; }
}
