/* ============================================================
   BATTERYFLY.AE — MAIN STYLESHEET
   Brand Colors: Magenta #CC0099 | Navy #1A237E | Yellow #FFB300
   ============================================================ */

:root {
  --magenta: #CC0099;
  --magenta-dark: #9F007A;
  --navy: #1A237E;
  --navy-dark: #0D1557;
  --yellow: #FFB300;
  --yellow-dark: #E6A000;
  --white: #FFFFFF;
  --grey-light: #F5F5F5;
  --grey: #E0E0E0;
  --dark: #1A1A1A;
  --text: #444444;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
button { font-family: var(--font); cursor: pointer; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.75rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); }

/* ============ LAYOUT ============ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--grey { background: var(--grey-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--magenta { background: var(--magenta); color: var(--white); }
.section--magenta h1, .section--magenta h2, .section--magenta h3 { color: var(--white); }
.section--yellow { background: var(--yellow); color: var(--dark); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title p { font-size: 1.1rem; margin-top: 0.5rem; opacity: 0.8; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }

/* ============ DIVIDER ============ */
.divider { width: 56px; height: 4px; background: var(--magenta); border-radius: 2px; margin: 1rem 0; }
.divider--center { margin: 1rem auto; }

/* ============ BADGE ============ */
.badge { display: inline-block; background: var(--magenta); color: var(--white); padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.badge--yellow { background: var(--yellow); color: var(--dark); }
.badge--navy { background: var(--navy); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; line-height: 1;
}
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,35,126,0.3); }
.btn--yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,179,0,0.4); }
.btn--magenta { background: var(--magenta); color: var(--white); border-color: var(--magenta); }
.btn--magenta:hover { background: var(--magenta-dark); border-color: var(--magenta-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,24,91,0.35); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ============ NAVIGATION ============ */
.nav { background: #FFFFFF; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.10); border-bottom: 3px solid var(--magenta); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo img { height: 50px; width: auto; border-radius: 0; object-fit: contain; }
.nav__logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: 0px; line-height: 1; display: flex; flex-direction: column; }
.nav__logo-text .brand-bat { color: var(--magenta); }
.nav__logo-text .brand-fly { color: var(--navy); text-shadow: none; }
.nav__logo-tagline { font-size: 0.6rem; font-weight: 500; color: rgba(0,0,0,0.4); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link { color: var(--navy); padding: 0.5rem 0.8rem; border-radius: 6px; font-weight: 500; font-size: 0.88rem; transition: all var(--transition); }
.nav__link:hover, .nav__link.active { color: var(--magenta); background: rgba(204,0,153,0.08); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.nav__phone { color: var(--magenta); font-weight: 600; font-size: 0.9rem; transition: color var(--transition); }
.nav__phone:hover { color: var(--navy); }
.nav__phone i { margin-right: 4px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.5rem; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav__mobile { display: none; background: var(--navy-dark); padding: 0.5rem 0 1rem; }
.nav__mobile.open { display: block; }
.nav__mobile .nav__link { display: block; padding: 0.75rem 0; font-size: 1rem; border-radius: 0; }
.nav__mobile-cta { padding: 1rem 0 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============ HERO ============ */
.hero { position: relative; background: var(--navy-dark); min-height: 100vh; padding: 6rem 0 5rem; overflow: hidden; display: flex; align-items: center; }
.hero__media { position: absolute; inset: 0; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; }
.hero__slide--active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,21,87,0.88) 0%, rgba(13,21,87,0.60) 52%, rgba(13,21,87,0.18) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.hero__sub { color: rgba(255,255,255,0.92); font-size: 1.15rem; margin-bottom: 0; }
.hero__tagline { display: inline-block; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero__stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.page-hero { background: var(--navy); padding: 4rem 0 3rem; color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ============ SERVICE CARDS ============ */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img { width: 100%; height: 210px; object-fit: cover; }
.card__body { padding: 1.6rem; }
.card__icon { width: 52px; height: 52px; background: var(--magenta); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--white); font-size: 1.4rem; }
.card h3 { color: var(--dark); margin-bottom: 0.6rem; }
.card p { font-size: 0.93rem; color: var(--text); margin-bottom: 1.25rem; }
.card .price-tag { display: inline-block; background: var(--yellow); color: var(--dark); padding: 0.3rem 0.875rem; border-radius: 6px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }

/* ============ FEATURES / WHY US ============ */
.features-list { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-item__icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 1.15rem; }
.feature-item__text h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--white); }
.feature-item__text p { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin: 0; }

/* ============ HOW IT WORKS / STEPS ============ */
.step-list { counter-reset: steps; display: flex; flex-direction: column; gap: 0.875rem; }
.step-item { display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.1rem 1.25rem; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.step-item::before { counter-increment: steps; content: counter(steps); min-width: 36px; height: 36px; background: var(--magenta); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.step-item p { margin: 0; font-size: 0.95rem; }
.step-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.15rem; }

/* ============ SERVICE SECTIONS (inner page) ============ */
.service-block { padding: 4rem 0; border-bottom: 1px solid var(--grey); }
.service-block:last-child { border-bottom: none; }
.service-block__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 320px; object-fit: cover; }
.service-h3-group { margin-top: 2rem; }
.service-h3-group h3 { color: var(--magenta); margin-bottom: 0.6rem; border-left: 3px solid var(--magenta); padding-left: 0.75rem; }
.price-banner { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--yellow); color: var(--dark); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 1.2rem; margin: 1rem 0; }
.price-banner i { font-size: 1.1rem; }

/* ============ BRANDS ============ */
.brands-flex { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem; }
.brand-chip { background: var(--grey-light); border: 1.5px solid var(--grey); padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 600; font-size: 0.92rem; color: var(--dark); transition: all var(--transition); }
.brand-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============ SERVICE AREAS ============ */
.areas-flex { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.area-tag { background: var(--white); border: 1.5px solid var(--grey); padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.88rem; font-weight: 500; color: var(--text); }

/* ============ FLEET FEATURES ============ */
.fleet-feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.fleet-feature i { color: var(--magenta); font-size: 1.3rem; margin-top: 2px; min-width: 24px; }
.fleet-feature h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.fleet-feature p { font-size: 0.9rem; color: var(--text); margin: 0; }
.fleet-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ FAQ ACCORDION ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--grey); overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.faq-q { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-size: 0.98rem; font-weight: 600; color: var(--dark); transition: background var(--transition); }
.faq-q:hover { background: var(--grey-light); }
.faq-q.open { background: var(--magenta); color: var(--white); }
.faq-q .faq-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a.open { max-height: 600px; }
.faq-a-inner { padding: 1.25rem 1.5rem; font-size: 0.95rem; line-height: 1.75; color: var(--text); border-top: 1px solid var(--grey); }

/* ============ CONTACT FORM ============ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white); }
.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 1.15rem; }
.contact-item__text h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
.contact-item__text a, .contact-item__text p { color: var(--white); font-weight: 600; font-size: 0.98rem; margin: 0; }
.contact-item__text a:hover { color: var(--yellow); }
.form-box { background: var(--grey-light); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-box h3 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--grey); border-radius: var(--radius); font-family: var(--font); font-size: 0.95rem; color: var(--dark); background: var(--white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(194,24,91,0.08); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ MAP ============ */
.map-frame { width: 100%; height: 400px; border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__img { width: 100%; height: 220px; object-fit: cover; }
.blog-card__body { padding: 1.6rem; }
.blog-card__meta { font-size: 0.8rem; font-weight: 600; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card h3 a:hover { color: var(--magenta); }
.blog-card p { font-size: 0.9rem; color: var(--text); margin-bottom: 1.25rem; }
.read-more { color: var(--magenta); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.read-more:hover { gap: 0.6rem; }

/* Blog post content */
.blog-header { background: var(--navy); padding: 4rem 0 3rem; }
.blog-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.blog-meta { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 0.35rem; }
.blog-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; }
.blog-content h2 { color: var(--navy); margin: 2.5rem 0 1rem; padding-top: 0.5rem; border-top: 1px solid var(--grey); }
.blog-content h3 { color: var(--dark); margin: 2rem 0 0.75rem; }
.blog-content p, .blog-content li { font-size: 1.05rem; line-height: 1.85; }
.blog-content ul { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.blog-content ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.blog-content ul li::before { content: "→"; position: absolute; left: 0; color: var(--magenta); font-weight: 700; }
.blog-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-content ol li { margin-bottom: 0.6rem; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1.75rem 0; font-size: 0.95rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-content th { background: var(--navy); color: var(--white); padding: 0.875rem 1.25rem; text-align: left; }
.blog-content td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--grey); }
.blog-content tr:last-child td { border-bottom: none; }
.blog-content tr:nth-child(even) td { background: var(--grey-light); }
.blog-cta-box { background: var(--magenta); color: var(--white); border-radius: var(--radius-lg); padding: 2rem 2.5rem; margin: 2.5rem 0; text-align: center; }
.blog-cta-box p { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.blog-cta-box a { color: var(--yellow); font-weight: 700; }
.blog-cta-box a:hover { text-decoration: underline; }
.faq-inline { background: var(--grey-light); border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 1.25rem; }
.faq-inline h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.faq-inline p { margin: 0; font-size: 0.95rem; }

/* ============ CTA BANNER ============ */
.cta-banner { background: var(--magenta); padding: 5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.3rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 0; }

/* ============ FOOTER ============ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.72); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__logo img { height: 44px; width: auto; border-radius: 6px; object-fit: contain; background: white; padding: 4px 10px; }
.footer__logo-text { font-size: 1.4rem; font-weight: 800; line-height: 1; display: flex; flex-direction: column; }
.footer__logo-text .brand-bat { color: var(--magenta); }
.footer__logo-text .brand-fly { color: #FFFFFF; text-shadow: none; }
.footer__logo-tagline { font-size: 0.55rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 2px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact p { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; }
.footer__contact i { color: var(--yellow); margin-top: 3px; min-width: 14px; }
.footer__contact a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer__tagline { color: var(--yellow); font-weight: 800; letter-spacing: 2px; font-size: 0.9rem; }
.footer__license { opacity: 0.55; }

/* ============ ARABIC HERO LINE ============ */
.hero__arabic {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.75rem;
  direction: rtl;
  font-family: 'Arial', sans-serif;
}

/* ============ DUBAI HEAT BANNER ============ */
.heat-banner {
  background: #fff3e0;
  border-left: 5px solid var(--magenta);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.heat-banner__icon { font-size: 2rem; color: #e65100; flex-shrink: 0; }
.heat-banner__text { flex: 1; font-size: 0.97rem; line-height: 1.6; }

/* ============ FLOATING BUTTONS ============ */
.float-wa { position: fixed; bottom: 104px; right: 24px; z-index: 9999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.5); color: var(--white); font-size: 1.6rem; transition: transform var(--transition), box-shadow var(--transition); }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 6px 26px rgba(37,211,102,0.65); }
.float-call { position: fixed; bottom: 32px; right: 24px; z-index: 9999; width: 58px; height: 58px; background: var(--magenta); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(194,24,91,0.5); color: var(--yellow); font-size: 1.4rem; transition: transform var(--transition); }
.float-call:hover { transform: scale(1.12); }

/* Reviews side tab */
.float-reviews {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9998;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 10px 0 0 10px;
  padding: 1rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  box-shadow: -3px 4px 18px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-reviews i { font-size: 1.15rem; }
.float-reviews:hover {
  transform: translateY(-50%) translateX(-5px);
  box-shadow: -5px 6px 24px rgba(0,0,0,0.22);
}
@media (max-width: 480px) {
  .float-reviews { padding: 0.75rem 0.55rem; font-size: 0.55rem; }
  .float-reviews i { font-size: 0.95rem; }
}

.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990; background: var(--magenta); color: var(--yellow); text-align: center; padding: 0.95rem; font-weight: 700; font-size: 1rem; box-shadow: 0 -4px 16px rgba(0,0,0,0.2); }
.mobile-call-bar i { margin-right: 6px; }

/* ============ STATS ROW ============ */
.stats-row { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2.6rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ============ TESTIMONIAL ============ */
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.88); margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; color: var(--yellow); font-size: 0.9rem; }

/* ============ NOTICE / ALERT ============ */
.notice { background: var(--yellow); color: var(--dark); padding: 1rem 1.5rem; border-radius: var(--radius); display: flex; align-items: center; gap: 0.75rem; font-weight: 600; margin-bottom: 1.5rem; }
.notice i { font-size: 1.2rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .fleet-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-2 .order-first { order: -1; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 5rem 0 3rem; flex-direction: row; }
  .hero__media { position: absolute; inset: 0; width: auto; aspect-ratio: unset; }
  .hero__slide { background-size: cover; background-position: center 40%; background-repeat: no-repeat; }
  .hero__overlay { display: block; }
  .hero > .container { position: relative; z-index: 1; padding: 1.5rem 1rem 2rem; background: transparent; }
  .hero__content { max-width: 100%; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
  .stat-item { text-align: center; background: rgba(255,255,255,0.1); border-radius: 10px; padding: 0.75rem; }
  .mobile-call-bar { display: block; }
  .float-wa { bottom: 76px; }
  .float-call { bottom: 76px; right: 90px; }
  .btn-group { flex-direction: column; gap: 0.75rem; }
  .btn-group .btn { width: 100%; text-align: center; justify-content: center; min-height: 52px; font-size: 1rem; }
  .btn { min-height: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 0; }
  .cta-banner .grid-2 > div:first-child { display: none; }
  .cta-banner .grid-2 > div:last-child { text-align: center; }
  .cta-banner .grid-2 > div:last-child .btn-group { align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .blog-content { padding: 2rem 1rem; }
  .section-title { margin-bottom: 2rem; }
  .nav__logo-text { font-size: 1.3rem; }
  .grid-2 img[style] { height: 280px !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero { padding: 2.5rem 0 2rem; }
  h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  h2 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
  .card__img { height: 200px; }
  .service-block__img { height: 220px; }
  .hero__stats { gap: 1rem; }
  .stats-row { gap: 1.25rem; }
  .hero__stat-num { font-size: 1.6rem; }
  .faq-q { font-size: 0.93rem; padding: 1rem 1.1rem; }
  .brands-flex { gap: 0.5rem; }
  .brand-chip { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .area-tag { font-size: 0.82rem; padding: 0.4rem 0.9rem; }
  .nav__inner { height: 66px; }
  .nav__logo img { height: 40px; width: auto; }
  .nav__logo-text { font-size: 1.15rem; }
  .nav__logo-tagline { display: none; }
}
