/* ============================================
   CLASS NAKLİYAT — v3 PREMIUM
   Playfair Display + Inter kombinasyonu
   Mobil-first, temiz, kurumsal
   ============================================ */

:root {
  --orange: #e8551a;
  --orange-2: #f26d35;
  --orange-pale: #fef3ee;
  --orange-pale2: #fde4d3;
  --white: #ffffff;
  --bg: #f9f8f6;
  --bg2: #f2f0ed;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --ink: #1e1e1e;
  --ink2: #3d3d3d;
  --ink3: #717171;
  --ink4: #a8a8a8;
  --line: #e4e1dc;
  --line2: #d0ccc6;
  --line-o: rgba(232,85,26,.2);
  --r4: 4px; --r8: 8px; --r12: 12px; --r16: 16px;
  --r20: 20px; --r24: 24px; --r32: 32px; --rpill: 999px;
  --sh-sm: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.05);
  --sh: 0 2px 8px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.08);
  --sh-lg: 0 8px 24px rgba(0,0,0,.07), 0 32px 72px rgba(0,0,0,.11);
  --sh-o: 0 4px 18px rgba(232,85,26,.32);
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .26s var(--ease);
}

/* ─── RESET ─── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color:inherit; text-decoration:none; }
button { font-family:inherit; }
img,svg { display:block; max-width:100%; }

/* ─── LAYOUT ─── */
.container { width:100%; max-width:1160px; margin:0 auto; padding:0 24px; }
.section { padding:88px 0; position:relative; }

/* ─── TYPOGRAPHY ─── */
.display-xl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--ink);
}
.display-lg {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.8px; color: var(--ink);
}
.body-lg { font-size:17px; line-height:1.75; color:var(--ink3); font-weight:400; }
.gradient-text {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-2) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position:fixed; top:0; left:0; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  z-index:9900; width:0; pointer-events:none;
}


/* ─── LOGO SVG ─── */
.class-logo-svg { height:48px; width:auto; display:block; }
.nav-logo .class-logo-svg { height:44px; }
.footer-logo .class-logo-svg { height:44px; }
.overlay-logo { margin-bottom:28px; display:flex; justify-content:center; }
.overlay-logo svg { height:52px; width:auto; }

/* ─── LOADER update ─── */
.loader-logo { justify-content:center; }
.loader-name { display:none; }
.loader-icon { display:none; }

/* ─── LOADER ─── */
.loader {
  position:fixed; inset:0; background:var(--white); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition: opacity .5s var(--ease), visibility .5s;
}
.loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-wrap { text-align:center; }
.loader-logo {
  display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:28px;
}
.loader-icon {
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg,var(--orange),var(--orange-2));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px; animation:iconPulse 1.2s ease infinite;
}
@keyframes iconPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(.9)} }
.loader-name {
  font-family:'Playfair Display',Georgia,serif; font-size:22px; font-weight:800; color:var(--ink);
}
.loader-bar {
  width:180px; height:2px; background:var(--bg2); border-radius:99px; overflow:hidden; margin:0 auto;
}
.loader-fill {
  height:100%; background:linear-gradient(90deg,var(--orange),var(--orange-2));
  border-radius:99px; animation:fillBar 1.8s var(--ease) forwards;
}
@keyframes fillBar { from{width:0} to{width:100%} }

/* ─── BUTTONS ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:var(--rpill);
  font-family:'Inter',sans-serif; font-size:14px; font-weight:600;
  border:none; cursor:pointer; transition:var(--t);
  white-space:nowrap; text-decoration:none; position:relative; overflow:hidden;
}
.btn-lg { padding:15px 32px; font-size:15px; }
.btn-sm { padding:9px 18px; font-size:13px; }
.btn-full { width:100%; }
.btn-orange {
  background:linear-gradient(135deg,var(--orange),var(--orange-2)); color:#fff; box-shadow:var(--sh-o);
}
.btn-orange:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(232,85,26,.4); }
.btn-orange:active { transform:translateY(0); }
.btn-ghost {
  background:transparent; color:var(--ink); border:1.5px solid var(--line2);
}
.btn-ghost:hover { border-color:var(--orange); color:var(--orange); background:var(--orange-pale); }
.btn-wa {
  background:#25D366; color:#fff; box-shadow:0 4px 16px rgba(37,211,102,.28);
}
.btn-wa:hover { background:#1db954; transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.4); }

/* ─── TAG ─── */
.tag {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--orange-pale); border:1px solid var(--orange-pale2);
  color:var(--orange); padding:5px 13px; border-radius:var(--rpill);
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
}
.tag-dot {
  width:6px; height:6px; background:var(--orange); border-radius:50%;
  animation:dotBlink 2s ease infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ─── SECTION HEADER ─── */
.sec-head { text-align:center; margin-bottom:56px; }
.sec-head .tag { margin-bottom:16px; }
.sec-head .display-lg { margin-bottom:12px; }
.sec-head .body-lg { max-width:480px; margin:0 auto; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:800;
  padding:15px 0; transition:var(--t);
}
.navbar.solid {
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  padding:11px 0; box-shadow:0 1px 16px rgba(0,0,0,.06);
}
.nav-wrap { display:flex; align-items:center; gap:8px; }
.nav-logo {
  display:flex; align-items:center; gap:10px; margin-right:auto; flex-shrink:0;
}
.nav-logo-icon { display:none; }
.nav-logo-main {
  font-family:'Playfair Display',Georgia,serif;
  font-size:15px; font-weight:800; color:var(--ink); letter-spacing:.2px; display:block;
}
.nav-logo-sub {
  font-size:8px; font-weight:600; color:var(--ink4);
  letter-spacing:1.8px; text-transform:uppercase; display:block; margin-top:1px;
}
.nav-menu {
  display:flex; align-items:center; gap:2px; list-style:none;
}
.nav-menu a {
  display:block; padding:8px 13px; border-radius:var(--rpill);
  font-size:13px; font-weight:500; color:var(--ink2); transition:var(--t);
}
.nav-menu a:hover, .nav-menu a.active {
  color:var(--orange); background:var(--orange-pale);
}
.nav-actions { display:flex; align-items:center; gap:8px; }
.nav-phone {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:var(--ink2);
  padding:7px 13px; border-radius:var(--rpill);
  border:1.5px solid var(--line2); transition:var(--t);
}
.nav-phone:hover { color:var(--orange); border-color:var(--orange); background:var(--orange-pale); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px; border-radius:var(--r8);
}
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--ink); border-radius:2px; transition:var(--t);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display:none;
  position:fixed; inset:0; z-index:799;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center; gap:4px;
  transform:translateX(100%); transition:transform .4s var(--ease);
}
.nav-overlay.open { transform:translateX(0); }
.nav-overlay a {
  font-family:'Playfair Display',Georgia,serif;
  font-size:26px; font-weight:800; color:var(--ink);
  padding:12px 40px; border-radius:var(--r12); transition:color .2s; display:block;
}
.nav-overlay a:hover { color:var(--orange); }
.nav-overlay .overlay-cta {
  margin-top:20px; font-family:'Inter',sans-serif;
  font-size:15px !important; padding:14px 36px !important;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  min-height:100svh; display:flex; align-items:center;
  background:var(--white); padding:100px 0 72px; overflow:hidden; position:relative;
}
.hero-orb1 {
  position:absolute; top:-160px; right:-80px;
  width:560px; height:560px; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(232,85,26,.07) 0%,transparent 70%);
}
.hero-orb2 {
  position:absolute; bottom:-200px; left:-100px;
  width:480px; height:480px; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(232,85,26,.04) 0%,transparent 70%);
}
.hero-grid-bg {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(var(--line) 1px,transparent 1px),
    linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:48px 48px; opacity:.35;
  mask-image:radial-gradient(ellipse 80% 80% at 70% 50%,black 20%,transparent 75%);
}
.hero-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
}
.hero-text .tag { margin-bottom:22px; }
.hero-text .display-xl { margin-bottom:18px; }
.hero-text .body-lg { margin-bottom:34px; max-width:440px; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }
.hero-trust {
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  padding-top:28px; border-top:1px solid var(--line);
}
.trust-pill { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:500; color:var(--ink3); }
.trust-pill-icon {
  width:28px; height:28px; border-radius:7px; font-size:13px;
  background:var(--orange-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* Hero right panel */
.hero-card-wrap { display:flex; flex-direction:column; gap:13px; }
.hero-main-card {
  background:var(--dark); border-radius:var(--r24); overflow:hidden;
  position:relative; padding:28px 28px 24px; box-shadow:var(--sh-lg);
}
.hmc-glow {
  position:absolute; top:-60px; right:-60px; width:240px; height:240px;
  border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(232,85,26,.22) 0%,transparent 65%);
}
.hmc-tag {
  font-size:9px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,.3); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.hmc-tag::before { content:''; display:block; width:16px; height:1.5px; background:var(--orange); }
.hmc-truck { display:flex; justify-content:center; margin-bottom:24px; }
.hmc-truck svg {
  width:160px; height:auto;
  filter:drop-shadow(0 6px 20px rgba(232,85,26,.45));
  animation:truckFloat 3.5s ease-in-out infinite;
}
@keyframes truckFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hmc-stats {
  display:grid; grid-template-columns:1fr 1px 1fr 1px 1fr;
  border-top:1px solid rgba(255,255,255,.08); padding-top:18px;
}
.hmc-stat { text-align:center; padding:0 6px; }
.hmc-stat strong {
  display:block; font-family:'Playfair Display',Georgia,serif;
  font-size:22px; font-weight:800; color:#fff; line-height:1.1;
}
.hmc-stat span { font-size:10px; color:rgba(255,255,255,.35); margin-top:2px; display:block; }
.hmc-divider { background:rgba(255,255,255,.08); }

.hero-mini-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.mini-card {
  background:var(--white); border:1px solid var(--line); border-radius:var(--r16);
  padding:14px 15px; display:flex; align-items:center; gap:11px;
  box-shadow:var(--sh-sm); transition:var(--t);
}
.mini-card:hover { border-color:var(--line-o); box-shadow:var(--sh); transform:translateY(-2px); }
.mini-icon {
  width:36px; height:36px; border-radius:9px; flex-shrink:0;
  background:var(--orange-pale); display:flex; align-items:center; justify-content:center; font-size:16px;
}
.mini-card b { display:block; font-size:12px; font-weight:700; color:var(--ink); line-height:1.2; }
.mini-card small { font-size:11px; color:var(--ink4); margin-top:1px; display:block; }

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services { background:var(--bg); }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.svc-card {
  background:var(--white); border:1px solid var(--line); border-radius:var(--r20);
  padding:26px 22px; transition:var(--t); position:relative; overflow:hidden; box-shadow:var(--sh-sm);
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.svc-card:hover::before { transform:scaleX(1); }
.svc-card:hover { border-color:var(--line-o); box-shadow:var(--sh); transform:translateY(-5px); }
.svc-icon-box {
  width:50px; height:50px; border-radius:13px;
  background:var(--orange-pale); display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:16px; transition:var(--t);
}
.svc-card:hover .svc-icon-box { background:var(--orange); transform:scale(1.07); }
.svc-card:hover .svc-icon { filter:brightness(0) invert(1); }
.svc-card h3 {
  font-family:'Playfair Display',Georgia,serif; font-size:16px; font-weight:700;
  color:var(--ink); margin-bottom:7px;
}
.svc-card p { font-size:13px; color:var(--ink3); line-height:1.65; }
.svc-more {
  display:inline-flex; align-items:center; gap:5px; margin-top:14px;
  font-size:12px; font-weight:600; color:var(--orange);
  opacity:0; transform:translateY(4px); transition:var(--t);
}
.svc-card:hover .svc-more { opacity:1; transform:translateY(0); }

/* ════════════════════════════
   WHY US
════════════════════════════ */
.why { background:var(--dark); overflow:hidden; }
.why-glow {
  position:absolute; top:-200px; right:-150px; width:600px; height:600px;
  border-radius:50%; pointer-events:none;
  background:radial-gradient(circle,rgba(232,85,26,.1) 0%,transparent 70%);
}
.why-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.why-left .tag {
  background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12); color:#fff; margin-bottom:16px;
}
.why-left .display-lg { color:#fff; margin-bottom:12px; }
.why-left .body-lg { color:rgba(255,255,255,.5); margin-bottom:26px; }
.why-list { display:flex; flex-direction:column; gap:11px; margin-bottom:32px; }
.why-item {
  display:flex; align-items:center; gap:11px;
  font-size:14px; color:rgba(255,255,255,.6);
}
.why-check {
  width:21px; height:21px; border-radius:6px; flex-shrink:0;
  background:rgba(232,85,26,.15); border:1px solid rgba(232,85,26,.3);
  display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:10px; font-weight:700;
}
.stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.stat-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  border-radius:var(--r20); padding:24px 20px; transition:var(--t); position:relative; overflow:hidden;
}
.stat-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.stat-card:hover::after { transform:scaleX(1); }
.stat-card:hover { background:rgba(255,255,255,.06); transform:translateY(-3px); }
.stat-emoji { font-size:20px; margin-bottom:10px; }
.stat-num {
  font-family:'Playfair Display',Georgia,serif; font-size:32px; font-weight:800;
  color:var(--orange); line-height:1; display:block; margin-bottom:4px;
}
.stat-title { font-size:13px; font-weight:600; color:#fff; margin-bottom:3px; }
.stat-sub { font-size:11px; color:rgba(255,255,255,.35); }

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testimonials { background:var(--bg2); }

/* Rating bar */
.rating-bar {
  display:grid; grid-template-columns:auto 1fr auto;
  gap:32px; align-items:center;
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r24); padding:28px 32px;
  margin-bottom:32px; box-shadow:var(--sh-sm);
}
.rating-score { text-align:center; }
.rating-num {
  font-family:'Playfair Display',Georgia,serif;
  font-size:52px; font-weight:800; color:var(--orange);
  line-height:1; display:block;
}
.rating-stars { font-size:18px; color:#f59e0b; letter-spacing:2px; margin:6px 0 4px; }
.rating-count { font-size:12px; color:var(--ink4); font-weight:500; }

.rating-breakdown { display:flex; flex-direction:column; gap:8px; }
.rb-row {
  display:flex; align-items:center; gap:10px;
  font-size:12px; color:var(--ink3); font-weight:500;
}
.rb-row span:first-child { width:28px; text-align:right; flex-shrink:0; }
.rb-track {
  flex:1; height:6px; background:var(--bg2);
  border-radius:var(--rpill); overflow:hidden;
}
.rb-fill { height:100%; background:linear-gradient(90deg,var(--orange),var(--orange-2)); border-radius:var(--rpill); }
.rb-row span:last-child { width:28px; color:var(--ink4); flex-shrink:0; }

.rating-badges { display:flex; flex-direction:column; gap:10px; }
.r-badge {
  display:flex; align-items:center; gap:8px;
  background:var(--orange-pale); border:1px solid var(--orange-pale2);
  border-radius:var(--r12); padding:8px 14px;
  font-size:13px; font-weight:600; color:var(--ink2);
}

/* Cards grid */
.t-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.t-card {
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r20); padding:24px 22px;
  display:flex; flex-direction:column;
  box-shadow:var(--sh-sm); transition:var(--t);
  position:relative; overflow:hidden;
}
.t-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.t-card:hover::before { transform:scaleX(1); }
.t-card:hover { border-color:var(--line-o); box-shadow:var(--sh); transform:translateY(-4px); }
.t-featured {
  border-color:var(--line-o);
  background:linear-gradient(135deg,#fff 0%,#fef9f7 100%);
}
.t-quote-icon {
  font-family:'Playfair Display',Georgia,serif;
  font-size:48px; line-height:1; color:var(--orange-pale2);
  margin-bottom:-8px; font-weight:900;
}
.t-stars { font-size:14px; color:#f59e0b; letter-spacing:1px; margin-bottom:10px; }
.t-text {
  font-size:14px; color:var(--ink2); line-height:1.7;
  flex:1; margin-bottom:18px; font-style:italic;
}
.t-footer {
  display:flex; align-items:center; gap:10px;
  padding-top:14px; border-top:1px solid var(--line);
}
.t-avatar {
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700;
}
.t-av1 { background:#fde4d3; color:#e8551a; }
.t-av2 { background:#dbeafe; color:#1d4ed8; }
.t-av3 { background:#d1fae5; color:#065f46; }
.t-av4 { background:#ede9fe; color:#6d28d9; }
.t-av5 { background:#fef9c3; color:#92400e; }
.t-av6 { background:#fce7f3; color:#be185d; }
.t-name { font-size:13px; font-weight:700; color:var(--ink); }
.t-loc { font-size:11px; color:var(--ink4); margin-top:1px; }
.t-date { font-size:11px; color:var(--ink4); margin-left:auto; white-space:nowrap; flex-shrink:0; }

/* ════════════════════════════
   QUOTE / FORM
════════════════════════════ */
.quote { background:var(--bg); }
.quote-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.quote-left .tag { margin-bottom:16px; }
.quote-left .display-lg { margin-bottom:12px; }
.quote-left .body-lg { margin-bottom:26px; }
.q-checks { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.q-check { display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; color:var(--ink2); }
.q-check-icon {
  width:21px; height:21px; border-radius:6px; flex-shrink:0;
  background:var(--orange-pale); border:1px solid var(--orange-pale2);
  display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:10px; font-weight:700;
}
.form-card {
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r32); padding:32px 28px; box-shadow:var(--sh);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label {
  font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--ink3);
}
.form-group input,
.form-group textarea {
  background:var(--bg); border:1.5px solid var(--line);
  border-radius:var(--r12); padding:11px 13px;
  font-family:'Inter',sans-serif; font-size:14px; color:var(--ink);
  outline:none; transition:var(--t); resize:vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--ink4); }
.form-group input:focus,
.form-group textarea:focus {
  border-color:var(--orange); background:var(--white);
  box-shadow:0 0 0 4px rgba(232,85,26,.08);
}
.form-gap { display:flex; flex-direction:column; gap:13px; }

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact { background:var(--bg2); }
.contact-inner { display:grid; grid-template-columns:1fr 1.5fr; gap:24px; }
.contact-cards { display:flex; flex-direction:column; gap:9px; }
.c-card {
  display:flex; align-items:center; gap:13px;
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r16); padding:14px 16px;
  box-shadow:var(--sh-sm); transition:var(--t);
}
a.c-card:hover { border-color:var(--line-o); transform:translateX(4px); box-shadow:var(--sh); }
.c-icon {
  width:40px; height:40px; border-radius:10px; flex-shrink:0;
  background:var(--orange-pale); display:flex; align-items:center; justify-content:center; font-size:18px;
}
.c-label { font-size:10px; color:var(--ink4); text-transform:uppercase; letter-spacing:1px; display:block; margin-bottom:2px; }
.c-val { font-size:14px; font-weight:600; color:var(--ink); display:block; }
.c-arr { color:var(--orange); margin-left:auto; font-size:15px; opacity:0; transition:var(--t); }
a.c-card:hover .c-arr { opacity:1; }
.map-wrap {
  border-radius:var(--r24); overflow:hidden; border:1px solid var(--line);
  min-height:400px; box-shadow:var(--sh);
}
.map-wrap iframe { width:100%; height:100%; min-height:400px; border:none; display:block; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer { background:var(--dark2); padding:60px 0 28px; }
.footer-top {
  display:grid; grid-template-columns:1.4fr 1fr; gap:64px;
  padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:24px;
}
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo-icon {
  width:36px; height:36px; border-radius:9px; flex-shrink:0;
  background:linear-gradient(135deg,var(--orange),var(--orange-2));
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:13px; font-weight:800;
}
.footer-logo-main {
  font-family:'Playfair Display',Georgia,serif; font-size:15px; font-weight:800; color:#fff; display:block;
}
.footer-logo-sub { font-size:8px; font-weight:600; color:rgba(255,255,255,.3); letter-spacing:2px; text-transform:uppercase; display:block; }
.footer-desc { font-size:13px; color:rgba(255,255,255,.36); line-height:1.8; max-width:300px; margin-bottom:22px; }
.footer-socials { display:flex; gap:8px; }
.soc-btn {
  width:36px; height:36px; border-radius:9px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09);
  display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.36); transition:var(--t);
}
.soc-btn:hover { background:var(--orange); border-color:var(--orange); color:#fff; transform:translateY(-2px); }
.footer-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.footer-col h5 {
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(255,255,255,.38); margin-bottom:14px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col ul li a, .footer-col ul li span { font-size:13px; color:rgba(255,255,255,.36); transition:color .2s; }
.footer-col ul li a:hover { color:var(--orange); }
.footer-bot {
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;
}
.footer-bot p { font-size:12px; color:rgba(255,255,255,.22); }

/* ════════════════════════════
   WHATSAPP FLOAT
════════════════════════════ */
.wa-float {
  position:fixed; bottom:22px; right:22px; z-index:700;
  width:52px; height:52px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45); transition:var(--t);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 8px 32px rgba(37,211,102,.55); }
.wa-tip {
  position:absolute; right:60px;
  background:var(--dark); color:#fff; font-size:12px; font-weight:500;
  padding:7px 12px; border-radius:8px; white-space:nowrap;
  opacity:0; transform:translateX(6px); transition:var(--t); pointer-events:none;
}
.wa-float:hover .wa-tip { opacity:1; transform:translateX(0); }

/* ════════════════════════════
   MODAL
════════════════════════════ */
.modal-wrap {
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  backdrop-filter:blur(8px); z-index:3000;
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; visibility:hidden; transition:var(--t);
}
.modal-wrap.show { opacity:1; visibility:visible; }
.modal-box {
  background:var(--white); border-radius:var(--r32); padding:40px 32px;
  text-align:center; max-width:380px; width:100%;
  transform:scale(.93) translateY(16px); transition:var(--t); box-shadow:var(--sh-lg);
}
.modal-wrap.show .modal-box { transform:scale(1) translateY(0); }
.modal-icon {
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
  background:linear-gradient(135deg,var(--orange),var(--orange-2));
  display:flex; align-items:center; justify-content:center; font-size:24px; color:#fff;
}
.modal-box h3 {
  font-family:'Playfair Display',Georgia,serif; font-size:22px; font-weight:800; color:var(--ink); margin-bottom:10px;
}
.modal-box p { font-size:14px; color:var(--ink3); line-height:1.7; margin-bottom:24px; }

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
[data-anim] {
  opacity:0; transform:translateY(24px);
  transition:opacity .65s var(--ease), transform .65s var(--ease);
}
[data-anim="right"] { transform:translateX(-24px); }
[data-anim="left"]  { transform:translateX(24px); }
[data-anim].in { opacity:1; transform:translate(0,0); }
[data-delay="1"] { transition-delay:.1s; }
[data-delay="2"] { transition-delay:.2s; }
[data-delay="3"] { transition-delay:.3s; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
════════════════════════════════════════ */
@media (max-width:1024px) {
  .section { padding:72px 0; }
  .hero { padding:88px 0 60px; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; gap:40px; text-align:center; }
  .hero-text .tag { justify-content:center; }
  .hero-text .body-lg { margin-left:auto; margin-right:auto; }
  .hero-btns { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-card-wrap { max-width:500px; margin:0 auto; }
  .svc-grid { grid-template-columns:repeat(2,1fr); }
  .why-inner { grid-template-columns:1fr; gap:48px; }
  .rating-bar { grid-template-columns:1fr; gap:20px; text-align:center; }
  .rating-breakdown { max-width:320px; margin:0 auto; }
  .rating-badges { flex-direction:row; flex-wrap:wrap; justify-content:center; }
  .t-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .quote-inner { grid-template-columns:1fr; gap:44px; }
  .contact-inner { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
════════════════════════════════════════ */
@media (max-width:768px) {
  .container { padding:0 16px; }
  .section { padding:56px 0; }
  .sec-head { margin-bottom:40px; }

  /* Nav */
  .nav-menu { display:none; }
  .nav-phone { display:none; }
  .nav-actions .btn:not(.hamburger) { display:none; }
  .hamburger { display:flex; }
  .nav-overlay { display:flex; }

  /* Hero */
  .hero { padding:76px 0 48px; min-height:auto; }
  .hero-inner { gap:32px; }
  .display-xl { font-size:30px; letter-spacing:-.8px; }
  .display-lg { font-size:24px; letter-spacing:-.4px; }
  .body-lg { font-size:15px; }
  .hero-btns { flex-direction:column; align-items:stretch; gap:10px; }
  .hero-btns .btn { width:100%; }
  .hero-trust { gap:12px; justify-content:center; }
  .trust-pill { font-size:12px; }
  .trust-pill-icon { width:26px; height:26px; font-size:12px; }

  /* Hero card */
  .hmc-truck svg { width:120px; }
  .hmc-stat strong { font-size:18px; }
  .hmc-stat span { font-size:9px; }
  .hero-mini-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .mini-card { padding:11px 12px; gap:9px; }
  .mini-icon { width:32px; height:32px; font-size:14px; }
  .mini-card b { font-size:11px; }
  .mini-card small { font-size:10px; }

  /* Services */
  .svc-grid { grid-template-columns:1fr; gap:10px; }
  .svc-card { padding:20px 18px; }
  .svc-icon-box { width:44px; height:44px; font-size:20px; }
  .svc-card h3 { font-size:15px; }

  /* Why */
  .why-inner { gap:36px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .stat-card { padding:18px 14px; }
  .stat-num { font-size:26px; }
  .stat-title { font-size:12px; }

  /* Testimonials */
  .rating-bar { padding:20px 16px; }
  .rating-num { font-size:40px; }
  .t-grid { grid-template-columns:1fr; gap:10px; }

  /* Quote */
  .quote-inner { gap:36px; }
  .form-card { padding:22px 16px; border-radius:var(--r20); }
  .form-row { grid-template-columns:1fr; gap:11px; }
  .form-gap { gap:11px; }

  /* Contact */
  .map-wrap, .map-wrap iframe { min-height:250px; }

  /* Footer */
  .footer { padding:44px 0 24px; }
  .footer-top { gap:28px; padding-bottom:32px; }
  .footer-cols { grid-template-columns:1fr 1fr; gap:16px; }
  .footer-bot { flex-direction:column; gap:4px; text-align:center; }

  /* Modal */
  .modal-box { padding:32px 20px; }

  /* WhatsApp */
  .wa-tip { display:none; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL ≤ 420px
════════════════════════════════════════ */
@media (max-width:420px) {
  .container { padding:0 14px; }
  .section { padding:48px 0; }
  .display-xl { font-size:26px; }
  .display-lg { font-size:21px; }
  .hero { padding:72px 0 44px; }
  .hero-trust { flex-direction:column; align-items:center; gap:8px; }
  .hmc-stats { grid-template-columns:1fr; gap:10px; border-top:none; padding-top:0; }
  .hmc-divider { display:none; }
  .hmc-stat { border-top:1px solid rgba(255,255,255,.08); padding-top:12px; }
  .hmc-stat:first-child { border-top:none; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .footer-cols { grid-template-columns:1fr; }
  .t-grid { grid-template-columns:1fr; }
}