/* ============================================================
   AP Travel & Rental — Premium Design System
   Author: Codvex / Sayed Shoaib
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:      #0F172A;
  --blue:      #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light:#3B82F6;
  --amber:     #F59E0B;
  --amber-dark:#D97706;
  --bg:        #F8FAFC;
  --bg2:       #F1F5F9;
  --white:     #FFFFFF;
  --text:      #1E293B;
  --text-soft: #64748B;
  --text-muted:#94A3B8;
  --border:    rgba(15,23,42,.08);
  --glass-bg:  rgba(255,255,255,0.07);
  --glass-bd:  rgba(255,255,255,0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-xl: 0 25px 80px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-h: 72px;
}

/* Dark mode */
[data-theme="dark"] {
  --bg:        #0A0F1E;
  --bg2:       #0F172A;
  --white:     #0F172A;
  --text:      #E2E8F0;
  --text-soft: #94A3B8;
  --text-muted:#475569;
  --border:    rgba(255,255,255,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
}

/* ─── RESET ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
  transition:background var(--transition),color var(--transition);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ─── PROGRESS BAR ────────────────────────────────────────── */
#progress-bar{
  position:fixed;top:0;left:0;z-index:9999;
  height:3px;width:0%;
  background:linear-gradient(90deg,var(--amber),var(--blue));
  transition:width .1s linear;
}

/* ─── LOADER ──────────────────────────────────────────────── */
#page-loader{
  position:fixed;inset:0;z-index:9998;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;gap:20px;
  transition:opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden{opacity:0;visibility:hidden}
.loader-logo{
  font-family:var(--font-display);
  font-size:2.5rem;font-weight:800;
  color:var(--white);letter-spacing:-1px;
}
.loader-logo span{color:var(--amber)}
.loader-bar{
  width:160px;height:3px;background:rgba(255,255,255,.15);
  border-radius:99px;overflow:hidden;
}
.loader-bar-fill{
  height:100%;width:0%;background:var(--amber);
  border-radius:99px;
  animation:loaderFill 1.4s ease forwards;
}
@keyframes loaderFill{to{width:100%}}

/* ─── SKIP LINK ───────────────────────────────────────────── */
.skip-link{
  position:absolute;top:-100%;left:16px;
  background:var(--blue);color:#fff;
  padding:8px 20px;border-radius:0 0 var(--radius-sm) var(--radius-sm);
  font-size:.875rem;font-weight:600;z-index:10000;
}
.skip-link:focus{top:0}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--nav-h);
  display:flex;align-items:center;
  padding:0 max(24px,5vw);
  transition:background var(--transition),box-shadow var(--transition),backdrop-filter var(--transition);
}
.navbar.scrolled{
  background:rgba(15,23,42,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 2px 30px rgba(0,0,0,.3);
}
.navbar-inner{
  width:100%;max-width:1320px;margin:0 auto;
  display:flex;align-items:center;gap:32px;
}
.nav-brand{
  display:flex;align-items:center;gap:10px;
  flex-shrink:0;text-decoration:none;
}
.brand-badge{
  width:40px;height:40px;border-radius:10px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:1rem;
  font-weight:800;color:#fff;letter-spacing:-.5px;
  flex-shrink:0;
}
.brand-text{
  font-family:var(--font-display);
  font-size:1.05rem;font-weight:700;
  color:#fff;line-height:1.1;
}
.brand-text small{
  display:block;font-size:.65rem;font-weight:400;
  color:rgba(255,255,255,.55);letter-spacing:.5px;
}
.nav-links{
  display:flex;align-items:center;gap:4px;margin-left:auto;
}
.nav-links a{
  font-size:.85rem;font-weight:500;
  color:rgba(255,255,255,.75);
  padding:6px 12px;border-radius:var(--radius-sm);
  transition:color var(--transition),background var(--transition);
  white-space:nowrap;
}
.nav-links a:hover,.nav-links a.active{
  color:#fff;background:rgba(255,255,255,.1);
}
.nav-cta-group{
  display:flex;align-items:center;gap:8px;margin-left:8px;flex-shrink:0;
}
.btn-nav-call{
  display:flex;align-items:center;gap:6px;
  background:var(--amber);color:var(--navy);
  font-size:.8rem;font-weight:700;
  padding:8px 16px;border-radius:var(--radius-sm);
  transition:background var(--transition),transform var(--transition);
}
.btn-nav-call:hover{background:var(--amber-dark);transform:translateY(-1px)}
.dark-toggle{
  width:36px;height:36px;border-radius:var(--radius-sm);
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:1rem;
  transition:background var(--transition);
  border:none;
}
.dark-toggle:hover{background:rgba(255,255,255,.2)}
.hamburger{
  display:none;
  width:38px;height:38px;border-radius:var(--radius-sm);
  background:rgba(255,255,255,.1);
  flex-direction:column;align-items:center;justify-content:center;
  gap:5px;border:none;
}
.hamburger span{
  display:block;width:20px;height:2px;
  background:#fff;border-radius:2px;
  transition:all var(--transition);
}
.hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0;transform:translateX(-8px)}
.hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ─── HERO ────────────────────────────────────────────────── */
.hero{
  position:relative;min-height:100svh;
  display:flex;align-items:center;
  overflow:hidden;
  background:var(--navy);
}
.hero-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
  opacity:.35;
  transition:opacity 1s ease;
}
.hero-bg.loaded{opacity:.38}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    135deg,
    rgba(15,23,42,.96) 0%,
    rgba(15,23,42,.8) 40%,
    rgba(37,99,235,.15) 100%
  );
}
.hero-grid-lines{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(37,99,235,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(37,99,235,.06) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at 50% 50%,black 30%,transparent 80%);
}
.hero-content{
  position:relative;z-index:2;
  width:100%;max-width:1320px;
  margin:0 auto;
  padding:calc(var(--nav-h) + 60px) max(24px,5vw) 80px;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(37,99,235,.15);
  border:1px solid rgba(37,99,235,.3);
  border-radius:99px;
  padding:6px 16px;
  font-size:.75rem;font-weight:600;
  color:var(--blue-light);letter-spacing:1px;
  text-transform:uppercase;margin-bottom:24px;
}
.hero-eyebrow::before{
  content:'';width:6px;height:6px;
  border-radius:50%;background:var(--blue-light);
  animation:blink 2s ease infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}
.hero h1{
  font-family:var(--font-display);
  font-size:clamp(2.4rem,5.5vw,4rem);
  font-weight:800;
  color:#fff;line-height:1.1;letter-spacing:-1.5px;
  max-width:800px;margin-bottom:20px;
}
.hero h1 .accent{
  background:linear-gradient(90deg,var(--amber),#FCD34D);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub{
  font-size:clamp(1rem,1.8vw,1.2rem);
  color:rgba(255,255,255,.65);
  max-width:600px;margin-bottom:40px;line-height:1.7;
}
.hero-buttons{
  display:flex;flex-wrap:wrap;gap:12px;margin-bottom:72px;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-size:.9rem;font-weight:600;
  padding:14px 28px;border-radius:var(--radius-sm);
  transition:all var(--transition);cursor:pointer;
  text-decoration:none;white-space:nowrap;
}
.btn-primary{
  background:var(--blue);color:#fff;
  box-shadow:0 0 0 0 rgba(37,99,235,.4);
}
.btn-primary:hover{
  background:var(--blue-dark);transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(37,99,235,.4);
}
.btn-amber{
  background:var(--amber);color:var(--navy);
  box-shadow:0 0 0 0 rgba(245,158,11,.4);
}
.btn-amber:hover{
  background:var(--amber-dark);transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(245,158,11,.4);
}
.btn-ghost{
  background:rgba(255,255,255,.08);
  color:#fff;border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
}
.btn-ghost:hover{
  background:rgba(255,255,255,.15);transform:translateY(-2px);
}
.btn-outline{
  background:transparent;color:var(--blue);
  border:2px solid var(--blue);
}
.btn-outline:hover{background:var(--blue);color:#fff;transform:translateY(-2px)}
.btn svg{width:18px;height:18px;flex-shrink:0}

.hero-stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:rgba(255,255,255,.08);
  border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  max-width:700px;
}
.stat-item{
  padding:20px 24px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(12px);
  transition:background var(--transition);
}
.stat-item:hover{background:rgba(255,255,255,.08)}
.stat-num{
  font-family:var(--font-display);
  font-size:1.8rem;font-weight:800;
  color:#fff;line-height:1;
}
.stat-num .plus{color:var(--amber)}
.stat-label{
  font-size:.7rem;font-weight:500;
  color:rgba(255,255,255,.5);
  text-transform:uppercase;letter-spacing:.8px;margin-top:4px;
}

/* ─── SECTION BASE ────────────────────────────────────────── */
.section{
  padding:100px max(24px,5vw);
}
.section-inner{
  max-width:1320px;margin:0 auto;
}
.section-tag{
  display:inline-block;
  font-size:.72rem;font-weight:700;
  color:var(--blue);letter-spacing:1.5px;
  text-transform:uppercase;margin-bottom:12px;
}
.section-title{
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:800;color:var(--text);
  letter-spacing:-1px;line-height:1.15;
  margin-bottom:16px;
}
.section-title .hl{
  background:linear-gradient(90deg,var(--blue),var(--blue-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.section-sub{
  font-size:1.05rem;color:var(--text-soft);
  max-width:560px;line-height:1.7;
}
.section-header{
  margin-bottom:56px;
}
.section-header.centered{text-align:center}
.section-header.centered .section-sub{margin:0 auto}

/* ─── SERVICES ────────────────────────────────────────────── */
.services{background:var(--bg)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:24px;
}
.svc-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px 32px;
  transition:all var(--transition);
  position:relative;overflow:hidden;
  cursor:default;
}
.svc-card::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  opacity:0;
  transition:opacity var(--transition);
}
.svc-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-xl);
  border-color:transparent;
}
.svc-card:hover::before{opacity:1}
.svc-card:hover .svc-icon,
.svc-card:hover .svc-title,
.svc-card:hover .svc-desc,
.svc-card:hover .svc-link{
  color:#fff;
}
.svc-card:hover .svc-icon{background:rgba(255,255,255,.15)}
.svc-icon{
  position:relative;z-index:1;
  width:56px;height:56px;border-radius:14px;
  background:rgba(37,99,235,.08);
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;margin-bottom:20px;
  transition:all var(--transition);
}
.svc-title{
  position:relative;z-index:1;
  font-family:var(--font-display);
  font-size:1.15rem;font-weight:700;
  color:var(--text);margin-bottom:10px;
  transition:color var(--transition);
}
.svc-desc{
  position:relative;z-index:1;
  font-size:.9rem;color:var(--text-soft);
  line-height:1.6;margin-bottom:20px;
  transition:color var(--transition);
}
.svc-link{
  position:relative;z-index:1;
  display:inline-flex;align-items:center;gap:6px;
  font-size:.82rem;font-weight:700;
  color:var(--blue);letter-spacing:.3px;
  transition:color var(--transition);
}
.svc-link svg{width:14px;height:14px;transition:transform var(--transition)}
.svc-card:hover .svc-link{color:rgba(255,255,255,.9)}
.svc-card:hover .svc-link svg{transform:translateX(4px)}

/* ─── FLEET ───────────────────────────────────────────────── */
.fleet{background:var(--bg2)}
.fleet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:28px;
}
.fleet-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  transition:all var(--transition);
}
.fleet-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-xl);
}
.fleet-img-wrap{
  position:relative;height:220px;overflow:hidden;
  background:linear-gradient(135deg,var(--navy),#1E3A5F);
}
.fleet-placeholder{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;gap:12px;
}
.fleet-placeholder-icon{font-size:4rem;opacity:.5}
.fleet-placeholder-label{
  font-size:.8rem;font-weight:600;
  color:rgba(255,255,255,.5);letter-spacing:1px;text-transform:uppercase;
}
.fleet-badge{
  position:absolute;top:16px;right:16px;
  background:var(--amber);color:var(--navy);
  font-size:.72rem;font-weight:700;
  padding:5px 12px;border-radius:99px;letter-spacing:.5px;
}
.fleet-body{padding:24px 28px}
.fleet-name{
  font-family:var(--font-display);
  font-size:1.2rem;font-weight:700;
  color:var(--text);margin-bottom:4px;
}
.fleet-cap{
  font-size:.82rem;font-weight:600;
  color:var(--blue);margin-bottom:16px;
}
.fleet-features{
  display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px;
}
.fleet-tag{
  background:var(--bg2);
  font-size:.73rem;font-weight:600;
  color:var(--text-soft);
  padding:4px 12px;border-radius:99px;
  border:1px solid var(--border);
}
[data-theme="dark"] .fleet-tag{background:rgba(255,255,255,.06)}
.fleet-actions{display:flex;gap:10px}
.fleet-actions .btn{flex:1;justify-content:center;padding:11px 16px;font-size:.82rem}

/* ─── WHY US ──────────────────────────────────────────────── */
.why{background:var(--navy);position:relative;overflow:hidden}
.why::before{
  content:'';position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.12) 0%,transparent 70%);
}
.why .section-title,.why .section-tag{color:#fff}
.why .section-sub{color:rgba(255,255,255,.55)}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
.why-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:all var(--transition);
  backdrop-filter:blur(10px);
}
.why-card:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(37,99,235,.3);
  transform:translateY(-4px);
}
.why-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:18px;
}
.why-title{
  font-family:var(--font-display);
  font-size:1.05rem;font-weight:700;
  color:#fff;margin-bottom:8px;
}
.why-desc{font-size:.875rem;color:rgba(255,255,255,.5);line-height:1.6}

/* ─── CARGO ───────────────────────────────────────────────── */
.cargo{background:var(--bg)}
.cargo-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
}
.cargo-visual{
  position:relative;
  border-radius:var(--radius-xl);overflow:hidden;
  background:linear-gradient(135deg,#0F172A,#1E3A5F);
  aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
}
.cargo-visual-inner{
  text-align:center;color:rgba(255,255,255,.6);
}
.cargo-visual-inner .big-icon{font-size:5rem;margin-bottom:16px}
.cargo-visual-inner p{font-size:.85rem;font-weight:500;letter-spacing:.5px;text-transform:uppercase}
.cargo-accent{
  position:absolute;bottom:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,var(--amber),var(--blue));
}
.cargo-types{display:flex;flex-direction:column;gap:16px;margin-top:36px}
.cargo-type-item{
  display:flex;align-items:center;gap:16px;
  padding:20px 24px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all var(--transition);
}
.cargo-type-item:hover{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(37,99,235,.08);
  transform:translateX(4px);
}
.cargo-type-icon{
  font-size:1.6rem;flex-shrink:0;
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(37,99,235,.08);
  border-radius:12px;
}
.cargo-type-title{
  font-weight:700;font-size:.95rem;
  color:var(--text);margin-bottom:2px;
}
.cargo-type-desc{font-size:.82rem;color:var(--text-soft)}

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews{background:var(--bg2)}
.reviews-slider-wrap{position:relative;overflow:hidden}
.reviews-track{
  display:flex;gap:24px;
  transition:transform .5s cubic-bezier(0.4,0,0.2,1);
}
.review-card{
  flex:0 0 calc(33.333% - 16px);
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  transition:box-shadow var(--transition);
}
.review-card:hover{box-shadow:var(--shadow-lg)}
.review-stars{
  display:flex;gap:3px;color:var(--amber);
  font-size:1rem;margin-bottom:16px;
}
.review-text{
  font-size:.9rem;color:var(--text-soft);
  line-height:1.7;margin-bottom:20px;
  font-style:italic;
}
.reviewer{display:flex;align-items:center;gap:12px}
.reviewer-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:1rem;
  font-weight:700;color:#fff;flex-shrink:0;
}
.reviewer-name{font-size:.9rem;font-weight:700;color:var(--text)}
.reviewer-role{font-size:.75rem;color:var(--text-muted)}
.slider-controls{
  display:flex;align-items:center;justify-content:center;
  gap:12px;margin-top:40px;
}
.slider-btn{
  width:44px;height:44px;border-radius:50%;
  background:var(--white);border:2px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text);font-size:1rem;
  transition:all var(--transition);cursor:pointer;
}
.slider-btn:hover{
  background:var(--blue);border-color:var(--blue);color:#fff;
}
.slider-dots{display:flex;gap:6px}
.dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--border);
  transition:all var(--transition);cursor:pointer;
  border:none;
}
.dot.active{width:24px;border-radius:4px;background:var(--blue)}

/* ─── COVERAGE ────────────────────────────────────────────── */
.coverage{background:var(--bg)}
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:16px;
}
.coverage-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px 20px;
  text-align:center;
  transition:all var(--transition);
  cursor:default;
}
.coverage-card:hover{
  background:var(--navy);border-color:transparent;
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.coverage-card:hover .cov-icon,
.coverage-card:hover .cov-city,
.coverage-card:hover .cov-note{color:#fff}
.cov-icon{font-size:1.8rem;margin-bottom:10px;transition:color var(--transition)}
.cov-city{
  font-family:var(--font-display);font-size:1rem;font-weight:700;
  color:var(--text);margin-bottom:4px;transition:color var(--transition);
}
.cov-note{font-size:.75rem;color:var(--text-muted);transition:color var(--transition)}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq{background:var(--bg2)}
.faq-layout{
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:80px;align-items:start;
}
.faq-sticky{position:sticky;top:calc(var(--nav-h) + 24px)}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;transition:border-color var(--transition);
}
.faq-item.open{border-color:var(--blue)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;gap:16px;
  cursor:pointer;
  font-size:.95rem;font-weight:600;color:var(--text);
  line-height:1.4;
}
.faq-chevron{
  flex-shrink:0;width:24px;height:24px;border-radius:6px;
  background:rgba(37,99,235,.08);
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;color:var(--blue);
  transition:all var(--transition);
}
.faq-item.open .faq-chevron{background:var(--blue);color:#fff;transform:rotate(180deg)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease,padding .3s ease;
}
.faq-item.open .faq-a{max-height:400px}
.faq-a-inner{
  padding:0 24px 20px;
  font-size:.875rem;color:var(--text-soft);line-height:1.7;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact{background:var(--navy);position:relative;overflow:hidden}
.contact::before{
  content:'';position:absolute;
  bottom:-300px;left:-200px;
  width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(245,158,11,.06) 0%,transparent 70%);
}
.contact .section-title,.contact .section-tag{color:#fff}
.contact .section-sub{color:rgba(255,255,255,.55)}
.contact-layout{
  display:grid;grid-template-columns:1.2fr 1fr;
  gap:60px;align-items:start;
}
.contact-info{display:flex;flex-direction:column;gap:24px;margin-top:36px}
.contact-info-item{
  display:flex;align-items:flex-start;gap:16px;
}
.ci-icon{
  width:46px;height:46px;border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;flex-shrink:0;
}
.ci-label{font-size:.72rem;font-weight:600;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.8px;margin-bottom:4px}
.ci-value{font-size:.95rem;font-weight:600;color:#fff}
.ci-value a{color:rgba(255,255,255,.85);transition:color var(--transition)}
.ci-value a:hover{color:var(--amber)}
.contact-form-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:36px;
  backdrop-filter:blur(20px);
}
.form-title{
  font-family:var(--font-display);
  font-size:1.3rem;font-weight:700;
  color:#fff;margin-bottom:24px;
}
.form-group{margin-bottom:16px}
.form-label{
  display:block;font-size:.78rem;font-weight:600;
  color:rgba(255,255,255,.6);margin-bottom:6px;letter-spacing:.3px;
}
.form-input,.form-select,.form-textarea{
  width:100%;padding:12px 16px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-sm);
  color:#fff;font-family:var(--font-body);font-size:.875rem;
  transition:border-color var(--transition),box-shadow var(--transition);
  outline:none;
  -webkit-appearance:none;appearance:none;
}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(255,255,255,.3)}
.form-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:40px;cursor:pointer}
.form-select option{background:var(--navy);color:#fff}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(37,99,235,.2);
}
.form-textarea{resize:vertical;min-height:110px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-status{
  margin-top:12px;padding:12px 16px;
  border-radius:var(--radius-sm);
  font-size:.85rem;font-weight:500;
  display:none;
}
.form-status.success{
  background:rgba(16,185,129,.15);
  border:1px solid rgba(16,185,129,.3);
  color:#34D399;display:block;
}
.form-status.error{
  background:rgba(239,68,68,.15);
  border:1px solid rgba(239,68,68,.3);
  color:#F87171;display:block;
}
.map-embed{
  margin-top:36px;border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(255,255,255,.1);height:220px;
}
.map-embed iframe{width:100%;height:100%;border:0;filter:grayscale(20%);}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer{
  background:rgb(5,10,20);
  border-top:1px solid rgba(255,255,255,.05);
}
.footer-main{
  max-width:1320px;margin:0 auto;
  padding:72px max(24px,5vw) 48px;
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:48px;
}
.footer-brand-col .brand-badge-lg{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:1.3rem;
  font-weight:800;color:#fff;margin-bottom:16px;
}
.footer-brand-name{
  font-family:var(--font-display);font-size:1.3rem;font-weight:800;
  color:#fff;margin-bottom:4px;
}
.footer-brand-tagline{font-size:.82rem;color:rgba(255,255,255,.4);margin-bottom:20px;line-height:1.5}
.footer-social{display:flex;gap:8px}
.social-btn{
  width:36px;height:36px;border-radius:var(--radius-sm);
  background:rgba(255,255,255,.07);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);font-size:.85rem;
  transition:all var(--transition);border:1px solid rgba(255,255,255,.08);
}
.social-btn:hover{background:var(--blue);border-color:var(--blue);color:#fff}
.footer-col h4{
  font-family:var(--font-display);font-size:.8rem;font-weight:700;
  color:#fff;letter-spacing:1px;text-transform:uppercase;
  margin-bottom:20px;
}
.footer-col a{
  display:block;font-size:.82rem;
  color:rgba(255,255,255,.45);
  padding:4px 0;
  transition:color var(--transition);
}
.footer-col a:hover{color:rgba(255,255,255,.9)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.05);
  padding:20px max(24px,5vw);
  max-width:1320px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.footer-copy{font-size:.78rem;color:rgba(255,255,255,.3)}
.footer-badges{display:flex;gap:8px}
.footer-badge{
  background:rgba(255,255,255,.06);
  font-size:.7rem;font-weight:600;
  color:rgba(255,255,255,.35);
  padding:4px 10px;border-radius:99px;
  border:1px solid rgba(255,255,255,.08);
}

/* ─── FLOATING BUTTONS ────────────────────────────────────── */
.float-group{
  position:fixed;bottom:28px;right:28px;
  display:flex;flex-direction:column;gap:12px;
  z-index:900;
}
.float-btn{
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:1.3rem;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  transition:all var(--transition);text-decoration:none;
}
.float-btn:hover{transform:scale(1.12);box-shadow:0 8px 30px rgba(0,0,0,.35)}
.float-wa{background:#25D366}
.float-call{background:var(--blue)}
.float-top{
  width:44px;height:44px;border-radius:50%;
  background:rgba(15,23,42,.8);
  border:1px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:.9rem;
  transition:all var(--transition);
  opacity:0;pointer-events:none;cursor:pointer;
  backdrop-filter:blur(10px);
  align-self:flex-end;
}
.float-top.visible{opacity:1;pointer-events:all}
.float-top:hover{background:var(--blue);border-color:var(--blue);transform:translateY(-2px)}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity .65s ease,transform .65s ease;
}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-28px);transition:opacity .65s ease,transform .65s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(28px);transition:opacity .65s ease,transform .65s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}

[data-delay="1"]{transition-delay:.1s}
[data-delay="2"]{transition-delay:.2s}
[data-delay="3"]{transition-delay:.3s}
[data-delay="4"]{transition-delay:.4s}
[data-delay="5"]{transition-delay:.5s}
[data-delay="6"]{transition-delay:.6s}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms!important;transition-duration:.01ms!important}
}

/* ============================================================
   RESPONSIVE SYSTEM
   Breakpoints: 1024 → 768 → 576 → 425 → 375 → 320
   ============================================================ */

/* ─── GLOBAL OVERFLOW GUARD ───────────────────────────────── */
/* Prevents any element from causing horizontal scroll */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* All media embeds scale with their container */
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent grids from overflowing their containers */
.services-grid,
.fleet-grid,
.why-grid,
.coverage-grid,
.hero-stats,
.footer-main,
.contact-layout,
.cargo-layout,
.faq-layout,
.reviews-track,
.review-card {
  min-width: 0;
}

/* Constrain all inner wrappers to max content width */
.hero-content,
.section-inner,
.navbar-inner,
.footer-bottom {
  width: 100%;
  max-width: 1320px;
}

/* ─── BREAKPOINT: 1024px (Tablet landscape) ───────────────── */
/* Collapses two-column layouts, adjusts footer to 2-col grid */
@media (max-width: 1024px) {
  /* Hamburger nav: show menu on tablet and below */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 24px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Prevent nav overflow from causing horizontal scroll */
    max-width: 100vw;
    box-sizing: border-box;
  }
  .nav-links.open { display: flex }
  .nav-links a {
    font-size: 1rem;
    padding: 10px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .hamburger { display: flex }
  /* Hide call button text label to save space; keep icon */
  .nav-cta-group .btn-nav-call span { display: none }

  /* Hero padding reduction for tablet */
  .hero-content {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }

  /* Collapse two-column feature layouts to single column */
  .cargo-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* FAQ sidebar: stop being sticky when stacked */
  .faq-sticky { position: static }

  /* Cargo visual: reduce aspect ratio when full-width */
  .cargo-visual {
    aspect-ratio: 16 / 7;
    max-width: 600px;
  }

  /* Footer: 2-column on tablet */
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Hero text: allow full container width */
  .hero h1,
  .hero-sub {
    max-width: 100%;
  }
}

/* ─── BREAKPOINT: 768px (Tablet portrait / large mobile) ─── */
/* Single-column grids, stacked nav CTA, simplified footer */
@media (max-width: 768px) {
  /* Reduce nav height for mobile */
  :root { --nav-h: 60px }

  /* Tighten navbar padding */
  .navbar { padding: 0 16px }
  .navbar-inner { gap: 12px }

  /* Slightly shrink brand text to prevent overflow */
  .brand-text { font-size: 0.95rem }
  .brand-text small { font-size: 0.6rem }

  /* Section padding: reduce vertical and horizontal */
  .section { padding: 72px max(20px, 4vw) }

  /* Hero: allow natural height on mobile */
  .hero { min-height: auto }
  .hero-content {
    padding: calc(var(--nav-h) + 30px) 20px 50px;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
  }

  /* Stack hero CTA buttons vertically, full width */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero stats: 2 columns on mobile */
  .hero-stats { grid-template-columns: repeat(2, 1fr) }

  /* Service, fleet, why-us cards: single column */
  .services-grid,
  .fleet-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Coverage: keep 2-column for visual density */
  .coverage-grid { grid-template-columns: repeat(2, 1fr) }

  /* Reviews slider: full-width cards */
  .review-card { flex: 0 0 100% }

  /* Fleet card action buttons: stack vertically */
  .fleet-actions { flex-direction: column }
  .fleet-actions .btn {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  /* Contact form: stack name/phone row */
  .form-row { grid-template-columns: 1fr }
  .contact-form-card { padding: 24px }

  /* Footer: single column, bottom bar centred */
  .footer-main { grid-template-columns: 1fr }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Floating action buttons: move inward and slightly smaller */
  .float-group {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .float-top {
    width: 40px;
    height: 40px;
  }
}

/* ─── BREAKPOINT: 576px (Large phones) ───────────────────── */
/* Tighter section padding, hero adjustments */
@media (max-width: 576px) {
  .section { padding: 64px 18px }

  /* Hero h1: use clamp for fluid sizing without overflow */
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    letter-spacing: -0.5px;
    line-height: 1.15;
  }
  .hero-sub { font-size: 0.95rem }

  /* Stat items: tighter padding */
  .stat-item { padding: 18px 16px }

  /* Contact form card: minimal padding */
  .contact-form-card { padding: 20px }

  /* Map embed height reduction */
  .map-embed { height: 180px }

  /* Footer spacing */
  .footer-main { padding: 56px 18px 40px }
}

/* ─── BREAKPOINT: 425px (Standard mobile) ────────────────── */
/* Further compress layouts for common phone sizes */
@media (max-width: 425px) {
  :root { --nav-h: 56px }

  .navbar { padding: 0 14px }

  .section { padding: 56px 16px }

  /* Hero: tighter vertical padding */
  .hero-content {
    padding: calc(var(--nav-h) + 24px) 16px 40px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    letter-spacing: -0.5px;
  }
  .hero-sub { font-size: 0.9rem }
  .hero-buttons { margin-bottom: 36px }

  /* Hero stats: collapse to single column */
  .hero-stats { grid-template-columns: 1fr }

  /* Section title fluid sizing */
  .section-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
    letter-spacing: -0.5px;
  }

  /* Service cards: tighter inner padding */
  .svc-card { padding: 28px 22px }

  /* Fleet card body */
  .fleet-body { padding: 20px }

  /* Why cards */
  .why-card { padding: 24px 20px }

  /* Contact form */
  .contact-form-card { padding: 18px }

  /* FAQ question text */
  .faq-q { font-size: 0.88rem; padding: 16px 18px }
  .faq-a-inner { padding: 0 18px 16px }

  /* Buttons: ensure minimum touch target */
  .btn {
    min-height: 48px;
    padding: 12px 20px;
  }

  /* Floating buttons: compact on small phones */
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .float-top {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
  .float-group {
    bottom: 14px;
    right: 14px;
  }

  /* Footer */
  .footer-main { padding: 48px 16px 32px }
  .footer-bottom { padding: 16px }
}

/* ─── BREAKPOINT: 375px (iPhone SE / most iPhones) ─────────*/
/* Fine-tune for the most common small phone viewport */
@media (max-width: 375px) {
  .section { padding: 48px 14px }

  .hero-content {
    padding: calc(var(--nav-h) + 20px) 14px 36px;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
    letter-spacing: -0.3px;
  }
  .hero-sub { font-size: 0.875rem }

  /* Stat number: slightly smaller */
  .stat-num { font-size: 1.5rem }

  /* Review cards: tighter padding */
  .review-card { padding: 24px }

  /* Coverage: keep 2 columns but reduce card padding */
  .coverage-card { padding: 18px 12px }

  .btn {
    font-size: 0.85rem;
    padding: 11px 18px;
  }

  /* Footer */
  .footer-main { padding: 40px 14px 28px }

  /* Footer badges: wrap on very small screens */
  .footer-badges { flex-wrap: wrap; justify-content: center }
}

/* ─── BREAKPOINT: 320px (Minimum supported width) ──────────*/
/* Hide non-critical UI elements to prevent overflow */
@media (max-width: 320px) {
  /* Hide brand text; keep logo badge only */
  .brand-text { display: none }
  .brand-badge {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .hero h1 { font-size: 1.65rem }
  .hero-sub { font-size: 0.85rem }

  .section { padding: 44px 12px }

  .btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  /* Coverage: single column on the very smallest screens */
  .coverage-grid { grid-template-columns: 1fr }

  .float-btn { width: 42px; height: 42px }
  .float-group { bottom: 12px; right: 12px }
}

/* ─── GOOGLE REVIEWS SECTION ──────────────────────────────── */
.google-reviews-section {
  background: var(--bg2);
  padding: 72px max(24px, 5vw);
}

.google-reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.google-reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Google Review Card */
.google-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.google-review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

[data-theme="dark"] .google-review-card {
  background: #1a2235;
  border-color: rgba(255,255,255,.08);
}

.google-review-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

[data-theme="dark"] .google-icon-wrap {
  background: rgba(255,255,255,.06);
}

.google-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.google-review-card-meta {
  flex: 1;
}

.google-review-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.google-review-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-review-card-body {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.google-review-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
  align-self: flex-start;
}

.google-review-cta-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(37,99,235,.42);
  transform: translateY(-2px);
}

/* Section CTA side */
.google-reviews-cta-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  width: fit-content;
}

[data-theme="dark"] .google-reviews-badge {
  background: rgba(255,255,255,.05);
}

.google-reviews-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  flex-shrink: 0;
}

.google-reviews-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.google-reviews-heading .hl {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.google-reviews-desc {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
}

.google-review-big-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 18px rgba(37,99,235,.32);
  width: fit-content;
}

.google-review-big-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(37,99,235,.48);
  transform: translateY(-2px);
}

.google-review-big-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-reviews-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.google-reviews-trust-stars {
  color: #FBBF24;
  font-size: 0.9rem;
}

/* Also add review CTA inside existing reviews slider section */
.reviews-google-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.reviews-google-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.reviews-google-cta-btn:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,.32);
  transform: translateY(-2px);
}

.reviews-google-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .google-reviews-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .google-reviews-cta-side {
    order: -1;
  }

  .google-review-card {
    padding: 28px 22px;
  }

  .google-review-big-btn {
    width: 100%;
  }

  .google-reviews-section {
    padding: 52px 20px;
  }
}