/* ══════════════════════════════════════════════════════════════
   SRCC — Shri Ram Cargo Carriers
   Main Stylesheet — Premium Industrial Logistics Design
   ══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --rust:      #FF9500;
  --rust-dark: #E67E00;
  --rust-mid:  #FFB84D;
  --amber:     #FFA500;
  --amber-lt:  #FDF0D8;
  --charcoal:  #1A1A1A;
  --ink:       #2D2D2D;
  --mid:       #666;
  --muted:     #999;
  --border:    #E8E3DC;
  --surface:   #FAFAF9;
  --white:     #FFFFFF;

  /* Changed from Syne (too geometric) to Fraunces (warm, authoritative serif — ideal for industrial B2B) */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 60px);
  --nav-h: 72px;
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3 { text-transform: uppercase; }

/* ─── UTILITIES ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rust); background: rgba(255,149,0,.08); padding: 5px 14px; border-radius: 99px; margin-bottom: 16px; }
.section-tag--light { color: #fff; background: rgba(255,255,255,.15); }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 16px; text-transform: uppercase; }
.section-desc { font-size: 17px; color: var(--mid); max-width: 600px; margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 500; padding: 12px 24px; border-radius: var(--r-sm); transition: all .2s ease; white-space: nowrap; }
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,37,0,.35); }
.btn-outline { background: transparent; color: var(--rust); border: 1.5px solid var(--rust); }
.btn-outline:hover { background: var(--rust); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-cta { background: var(--amber); color: var(--charcoal); font-weight: 600; padding: 10px 20px; }
.btn-cta:hover { background: #e8960f; }
.btn-lg { font-size: 16px; padding: 14px 30px; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

/* ─── HEADER / NAV ────────────────────────────────────────────── */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border-bottom: 1px solid #E8E3DC; transition: background .3s; }
#site-header.scrolled { background: #FFFFFF; }
.nav-container { display: flex; align-items: center; height: 100%; gap: 32px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #1A1A1A; line-height: 1; }
.logo-sub { font-size: 10px; color: #FF9500; letter-spacing: .04em; line-height: 1.2; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { font-size: 14px; font-weight: 400; color: #666; padding: 8px 14px; border-radius: var(--r-sm); transition: all .15s; }
.nav-link:hover, .nav-link.active { color: #FF9500; background: rgba(255,149,0,.06); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #1A1A1A; border-radius: 2px; transition: .3s; }

/* ─── HERO ────────────────────────────────────────────────────── */
/* ─── HERO ────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: #FFFFFF; padding-top: var(--nav-h); }
.hero-bg { position: absolute; inset: 0; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.12; }
.hero-photo-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(255,255,255,.95) 0%, rgba(255,245,235,.88) 42%, rgba(255,255,255,.55) 100%), radial-gradient(ellipse at 70% 70%, rgba(255,149,0,.1) 0%, transparent 60%); }

/* animated map route dots */
.hero-route-anim { position: absolute; bottom: 60px; right: 0; width: 52%; height: 260px; z-index: 1; pointer-events: none; opacity: .18; }
.route-dot { animation: route-pulse 2.4s ease-in-out infinite; fill: var(--amber); }
.route-dot:nth-child(2) { animation-delay: .4s; }
.route-dot:nth-child(3) { animation-delay: .8s; }
.route-dot:nth-child(4) { animation-delay: 1.2s; }
.route-dot:nth-child(5) { animation-delay: 1.6s; }
@keyframes route-pulse { 0%,100%{opacity:.2;r:3} 50%{opacity:1;r:5} }
.route-truck { animation: truck-drive 5s linear infinite; }
@keyframes truck-drive { 0%{transform:translateX(-10px)} 100%{transform:translateX(10px)} }

/* hero 2-col */
.hero-content { position: relative; z-index: 2; padding: 80px 0; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.hero-left { display: flex; flex-direction: column; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,149,0,.1); border: 1px solid rgba(255,149,0,.3); color: #FF9500; font-size: 12px; font-weight: 500; letter-spacing: .06em; padding: 5px 14px; border-radius: 99px; margin-bottom: 24px; width: fit-content; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #FF9500; animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 68px); font-weight: 700; color: #1A1A1A; line-height: 1.05; margin-bottom: 20px; }
.title-accent { color: #FF9500; font-style: italic; }
.hero-desc { font-size: 16px; color: #666; max-width: 480px; margin-bottom: 28px; font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* mini stats strip */
.hero-stats { display: flex; gap: 0; border-top: 1px solid #E8E3DC; padding-top: 28px; }
.stat-item { text-align: left; padding: 0 24px 0 0; margin-right: 24px; border-right: 1px solid #E8E3DC; }
.stat-item:last-child { border-right: none; }
.stat-num { display: inline; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #1A1A1A; line-height: 1; }
.stat-plus { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #FF9500; }
.stat-label { display: block; font-size: 11px; color: #999; margin-top: 3px; letter-spacing: .04em; }
.stat-divider { display: none; }

/* hero form card */
.hero-form-card { background: rgba(255,255,255,.97); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: 0 24px 80px rgba(0,0,0,.4); backdrop-filter: blur(20px); animation: card-float 4s ease-in-out infinite; }
@keyframes card-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hero-form-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.hero-form-sub { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form .form-group { display: flex; flex-direction: column; gap: 5px; }
.hero-form label { font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: .03em; }
.hero-form input, .hero-form select { width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 10px 12px; font-size: 14px; color: var(--ink); transition: border-color .15s; background: var(--white); }
.hero-form input:focus, .hero-form select:focus { outline: none; border-color: var(--rust); }
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-submit { width: 100%; background: var(--rust); color: #fff; border: none; border-radius: var(--r-sm); padding: 13px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s; margin-top: 4px; font-family: var(--font-body); }
.hero-submit:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,37,0,.4); }
.hero-form-trust { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); justify-content: center; margin-top: 8px; }
.hero-form-trust svg { color: #22c55e; flex-shrink: 0; }
.hero-urgency { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--rust); background: rgba(139,37,0,.06); border: 1px solid rgba(139,37,0,.15); border-radius: 6px; padding: 5px 10px; margin-bottom: 14px; }
.hero-urgency-dot { width: 5px; height: 5px; border-radius: 50%; background: #ef4444; animation: pulse-dot 1.2s infinite; }

.hero-scroll-hint { position: absolute; bottom: 28px; left: var(--gutter); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #CCC; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, #DDD, transparent); animation: scroll-drop 1.5s ease-in-out infinite; }
@keyframes scroll-drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; overflow: hidden; }
.trust-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 20px; }
.client-logos { overflow: hidden; }
.logo-track { display: flex; gap: 12px; width: max-content; animation: scroll-logos 28s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.client-logo-pill { display: inline-flex; align-items: center; padding: 8px 20px; border: 1px solid var(--border); border-radius: 99px; font-size: 13px; font-weight: 500; color: var(--mid); white-space: nowrap; background: var(--white); }
@keyframes scroll-logos { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SERVICES ────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all .25s; position: relative; }
.service-card::after { content:''; position:absolute; inset:0; border-radius:var(--r-lg); border:2px solid transparent; transition:border-color .25s; pointer-events:none; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { border-color: var(--rust); }
.service-card--accent .service-img-wrap::after { background: linear-gradient(to bottom, rgba(139,37,0,.7) 0%, rgba(139,37,0,.85) 100%); }
.service-img-wrap { position: relative; height: 168px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; filter: grayscale(20%); }
.service-card:hover .service-img { transform: scale(1.06); filter: grayscale(0%); }
.service-img-wrap::after { content:''; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 100%); }
.service-img-badge { position:absolute; bottom:10px; left:12px; z-index:1; background:var(--rust); color:#fff; font-size:10px; font-weight:700; letter-spacing:.1em; padding:3px 9px; border-radius:4px; }
.service-body { display:flex; align-items:flex-start; gap:14px; padding:22px; flex:1; }
.service-icon { width:40px; height:40px; border-radius:var(--r-sm); background:rgba(139,37,0,.08); color:var(--rust); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.service-text { flex:1; display:flex; flex-direction:column; gap:6px; }
.service-text h3 { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--charcoal); line-height:1.25; text-transform: uppercase; }
.service-text p { font-size:13px; color:var(--mid); line-height:1.6; flex:1; }
.service-meta { font-size:11px; font-weight:700; color:var(--rust); letter-spacing:.05em; text-transform:uppercase; }
.service-arrow { font-size:18px; color:var(--rust); margin-left:auto; opacity:0; transform:translateX(-6px); transition:all .2s; align-self:center; flex-shrink:0; }
.service-card:hover .service-arrow { opacity:1; transform:translateX(0); }

/* ─── WHY SRCC ────────────────────────────────────────────────── */
.why-section { background: var(--surface); }
.why-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-feat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: all .2s; }
.why-feat-card:hover { border-color: var(--rust); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-feat-icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feat-icon--amber { background: rgba(245,166,35,.12); color: #d4880a; }
.why-feat-icon--green  { background: rgba(34,139,34,.1);  color: #228B22; }
.why-feat-icon--blue   { background: rgba(24,95,165,.1);  color: #185FA5; }
.why-feat-icon--red    { background: rgba(163,45,45,.1);  color: #A32D2D; }
.why-feat-icon--purple { background: rgba(103,58,183,.1); color: #673AB7; }
.why-feat-icon--teal   { background: rgba(0,150,136,.1);  color: #009688; }
.why-feat-body { display: flex; flex-direction: column; gap: 4px; }
.why-feat-body strong { font-size: 13px; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.why-feat-body span { font-size: 12px; color: var(--mid); line-height: 1.5; }
.why-process-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }
.why-process-header { margin-bottom: 28px; }
.why-process-header p { font-size: 14px; color: var(--mid); margin-top: 10px; }
.process-steps { position: relative; display: flex; flex-direction: column; gap: 0; }
.step-line { position: absolute; left: 20px; top: 24px; bottom: 24px; width: 2px; background: linear-gradient(to bottom, var(--rust), rgba(139,37,0,.1)); z-index: 0; }
.process-step { display: flex; gap: 20px; align-items: flex-start; padding: 14px 0; position: relative; z-index: 1; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 2px solid var(--rust); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--rust); flex-shrink: 0; }
.step-content { padding-top: 8px; display: flex; flex-direction: column; gap: 3px; }
.step-content strong { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.step-content span { font-size: 12px; color: var(--mid); }
/* Keep old why-grid for responsive fallback */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-content { display: flex; flex-direction: column; gap: 20px; }
.why-content p { font-size: 16px; color: var(--mid); }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon--amber { background: rgba(245,166,35,.12); color: var(--amber); }
.why-icon--green { background: rgba(34,139,34,.1); color: #228B22; }
.why-icon--blue  { background: rgba(24,95,165,.1); color: #185FA5; }
.why-icon--red   { background: rgba(163,45,45,.1); color: #A32D2D; }
.why-point div { display: flex; flex-direction: column; gap: 3px; }
.why-point strong { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.why-point span { font-size: 14px; color: var(--mid); }
.why-visual { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }

/* ─── INDUSTRIES ──────────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px 18px; display: flex; flex-direction: row; gap: 14px; align-items: flex-start; transition: all .2s; }
.industry-card:hover { border-color: var(--rust); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ind-icon-wrap { width: 46px; height: 46px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ind-icon--amber  { background: rgba(245,166,35,.12); color: #c67e0a; }
.ind-icon--blue   { background: rgba(24,95,165,.1);   color: #185FA5; }
.ind-icon--teal   { background: rgba(0,150,136,.1);   color: #007e76; }
.ind-icon--rust   { background: rgba(139,37,0,.1);    color: var(--rust); }
.ind-icon--green  { background: rgba(34,139,34,.1);   color: #228B22; }
.ind-icon--purple { background: rgba(103,58,183,.1);  color: #673AB7; }
.ind-body { display: flex; flex-direction: column; gap: 5px; }
.ind-body strong { font-size: 13px; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.ind-body span { font-size: 12px; color: var(--mid); line-height: 1.5; }
.industry-icon { font-size: 28px; }

/* ─── METRICS BAND ────────────────────────────────────────────── */
.metrics-band { background: #1A1A1A; padding: 48px 0; }
.metrics-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.metric-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.08); }
.metric-item:last-child { border-right: none; }
.metric-num { display: inline; font-family: var(--font-display); font-size: clamp(28px,3vw,42px); font-weight: 700; color: #fff; }
.metric-plus { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #FF9500; }
.metric-label { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-top: 6px; letter-spacing: .04em; }
@media (max-width: 768px) { .metrics-row { grid-template-columns: repeat(2,1fr); gap: 24px; } .metric-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 20px; } .metric-item:last-child { border-bottom: none; } }

/* ─── TESTIMONIALS UPGRADE ────────────────────────────────────── */
.testimonials-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.testimonials-header-row .section-header { margin-bottom: 0; text-align: left; }
.rating-badge { display: flex; flex-direction: column; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 28px; flex-shrink: 0; }
.rating-score { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--charcoal); line-height: 1; }
.rating-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; margin: 4px 0; }
.rating-base { font-size: 12px; color: var(--muted); }

.testimonials-section { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-card--featured { background: var(--charcoal); border-color: transparent; }
.testimonial-card--accent { background: linear-gradient(135deg, #f9f0e8 0%, #fff 100%); border-color: rgba(139,37,0,.15); }
.testimonial-card--featured blockquote { color: rgba(255,255,255,.85); }
.testimonial-card--featured .testimonial-stars { color: var(--amber); }
.testimonial-card--featured .testimonial-author strong { color: #fff; }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,.5); }
.testimonial-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 14px; color: var(--mid); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto; }
.testimonial-card--featured .testimonial-author { border-top-color: rgba(255,255,255,.1); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); }
.testimonial-card--featured .testimonial-author strong { color: #fff; }
.testimonial-author span { display: block; font-size: 11px; color: var(--muted); }

/* ─── FOUNDER ─────────────────────────────────────────────────── */
.founder-section { background: linear-gradient(135deg, var(--charcoal) 0%, #2d1500 100%); color: #fff; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quote-mark { font-family: var(--font-display); font-size: 120px; color: var(--rust); line-height: 0.8; margin-bottom: -20px; opacity: .6; }
.founder-quote-wrap blockquote { font-size: clamp(18px, 1.8vw, 22px); font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 32px; font-style: italic; }
.founder-info { display: flex; align-items: center; gap: 16px; }
.founder-photo-frame { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(245,166,35,.5); flex-shrink: 0; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--rust); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.founder-avatar--initials { background: linear-gradient(135deg, var(--rust), var(--rust-mid)); border: 2px solid rgba(245,166,35,.4); }
.founder-info strong { display: block; font-size: 16px; font-weight: 600; color: #fff; }
.founder-info span { display: block; font-size: 13px; color: rgba(255,255,255,.5); }
.founder-loc { font-size: 12px !important; color: rgba(255,255,255,.35) !important; }
.founder-values { display: flex; flex-wrap: wrap; gap: 12px; }
.value-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); font-size: 13px; padding: 8px 18px; border-radius: 99px; }

/* ─── BRANCHES ────────────────────────────────────────────────── */
/* ─── BRANCH CARD GRID ────────────────────────────────────────── */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .2s;
}
.branch-card:hover {
  border-color: #d4c8be;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.branch-card:hover::before { background: var(--muted); }
.branch-card--hq::before { background: var(--rust); }
.branch-card--hq { border-color: rgba(139,37,0,.18); }
.branch-card--hq:hover::before { background: var(--rust); }

.bc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.bc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.bc-dot--hq {
  background: var(--rust);
  box-shadow: 0 0 0 3px rgba(139,37,0,.15);
}
.bc-hq-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(139,37,0,.08);
  border: 1px solid rgba(139,37,0,.15);
  padding: 2px 7px;
  border-radius: 4px;
}
.bc-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.bc-state {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.bc-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mid);
  margin-top: 6px;
  line-height: 1.4;
}
.bc-detail svg { flex-shrink: 0; color: var(--muted); }

.branch-cta-row {
  text-align: center;
  padding-top: 8px;
}

@media (max-width: 1024px) { .branch-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .branch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .branch-grid { grid-template-columns: repeat(2, 1fr); } .bc-city { font-size: 16px; } }


/* ─── LEAD GEN ────────────────────────────────────────────────── */
.leadgen-section { background: linear-gradient(135deg, var(--rust) 0%, #6A1C00 100%); color: #fff; }
.leadgen-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.leadgen-content { padding-top: 20px; }
.leadgen-title { color: #fff !important; }
.leadgen-content p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 16px; }
.leadgen-benefits { display: flex; flex-direction: column; gap: 12px; }
.benefit-row { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.85); }
.check { color: var(--amber); font-size: 16px; font-weight: 700; }

/* ─── FORM ────────────────────────────────────────────────────── */
.leadgen-form-wrap { background: #fff; border-radius: var(--r-xl); padding: 40px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 11px 14px; font-size: 14px; color: var(--ink); transition: border-color .15s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--rust); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }
.form-success { text-align: center; padding: 40px; }
.success-icon { width: 60px; height: 60px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.form-success p { color: var(--mid); font-size: 15px; }
.form-success a { color: var(--rust); font-weight: 600; }

/* ─── PAGE HERO ───────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--charcoal) 0%, #2d1500 100%); color: #fff; padding: calc(var(--nav-h) + 60px) 0 80px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; font-weight: 300; }

/* ─── SERVICES PAGE ───────────────────────────────────────────── */
.service-detail-section { padding: clamp(60px, 8vw, 100px) 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Fleet specs */
.fleet-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fleet-spec-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; }
.spec-label { font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.spec-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); }

/* Benefit list — replaces inline styles in services.html */
.benefit-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--mid); }
.benefit-list .check-icon { color: var(--rust); font-weight: 700; font-size: 16px; flex-shrink: 0; }

/* Info card — generic card replaces inline styles */
.info-card { background: var(--surface); border-radius: var(--r-xl); padding: 40px; border: 1px solid var(--border); }
.info-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--charcoal); }
.info-card--dark { background: var(--charcoal); border-color: transparent; }
.info-card--dark h3 { color: #fff; }
.info-card--rust { background: linear-gradient(135deg, var(--rust), var(--rust-mid)); border-color: transparent; color: #fff; }
.info-card--rust h3 { color: #fff; }
.info-card--white { background: var(--white); border: 1px solid var(--border); }

/* PTL steps */
.ptl-steps { display: flex; flex-direction: column; gap: 16px; }
.ptl-step { display: flex; gap: 14px; align-items: center; }
.ptl-step-num { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex-shrink: 0; }
.ptl-step p { font-size: 14px; color: rgba(255,255,255,.8); }

/* ODC 3-col grid — was missing mobile media query */
.odc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }

/* Warehouse feature grid */
.wh-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wh-feature { padding: 16px; background: var(--surface); border-radius: var(--r-sm); border: 1px solid var(--border); }
.wh-feature-icon { font-size: 20px; margin-bottom: 8px; }
.wh-feature strong { font-size: 13px; color: var(--charcoal); display: block; margin-bottom: 4px; }
.wh-feature p { font-size: 12px; color: var(--mid); }

/* Dark CTA band */
.cta-band { background: var(--charcoal); padding: 80px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(28px,3vw,42px); font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-detail-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(139,37,0,.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--rust); flex-shrink: 0; }
.contact-detail-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.contact-detail-val a { color: var(--rust); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); margin: 16px 0 20px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-contact a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; padding: 7px 14px; transition: all .2s; }
.social-link:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 50; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: transform .2s; display: block; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ─── ADMIN ───────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--charcoal); padding: 24px 0; }
.admin-sidebar .logo-wrap { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
.admin-nav-link { display: block; padding: 10px 24px; font-size: 14px; color: rgba(255,255,255,.6); transition: all .15s; }
.admin-nav-link:hover, .admin-nav-link.active { color: #fff; background: rgba(255,255,255,.06); }
.admin-main { background: var(--surface); padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h1 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--charcoal); }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.admin-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; }
.admin-stat-card .stat-label { font-size: 12px; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.admin-stat-card .stat-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--charcoal); }
.admin-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--surface); padding: 12px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 20px; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--border); }
.admin-table tr:last-child td { border-bottom: none; }
.status-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 99px; }
.status-new { background: rgba(34,197,94,.12); color: #16a34a; }
.status-contacted { background: rgba(59,130,246,.12); color: #2563eb; }
.status-closed { background: rgba(156,163,175,.12); color: #6b7280; }

/* ─── MEDIA QUERIES ───────────────────────────────────────────── */
/* ─── STICKY PHONE BAR ────────────────────────────────────────── */
.sticky-cta-bar { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 90; background: var(--rust); display: flex; align-items: center; justify-content: center; gap: 20px; padding: 8px var(--gutter); transform: translateY(-100%); transition: transform .3s; }
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-bar span { font-size: 13px; color: rgba(255,255,255,.8); }
.sticky-cta-bar a { color: #fff; font-weight: 700; font-size: 13px; border: 1px solid rgba(255,255,255,.4); border-radius: 6px; padding: 5px 14px; transition: background .15s; }
.sticky-cta-bar a:hover { background: rgba(255,255,255,.15); }

/* ─── MARQUEE FEATURE STRIP ────────────────────────────────────── */
.feature-strip { background: var(--rust); padding: 12px 0; overflow: hidden; }
.feature-track { display: flex; gap: 0; width: max-content; animation: scroll-logos 20s linear infinite; }
.feature-item { display: flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); white-space: nowrap; border-right: 1px solid rgba(255,255,255,.15); }
.feature-item svg { color: var(--amber); flex-shrink: 0; }

/* ─── SERVICES SECTION IMPROVEMENTS ───────────────────────────── */
.services-section { background: var(--surface); }

/* ─── FLOATING PHONE BUTTON ───────────────────────────────────── */
.phone-float { position: fixed; bottom: 88px; right: 28px; z-index: 50; background: var(--charcoal); color: #fff; border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.3); transition: transform .2s; }
.phone-float:hover { transform: scale(1.1); }

/* ─── SECTION SPACING & BALANCE ───────────────────────────────── */
.section-header { max-width: 700px; margin: 0 auto 56px; }
.services-grid .section-header { max-width: 100%; }

/* ─── TRUST STRIP UPGRADE ─────────────────────────────────────── */
.trust-strip { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; padding: 20px 0; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.06); }
.trust-chip { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); }
.trust-chip svg { color: var(--amber); }

/* ─── HERO FORM SUCCESS STATE ─────────────────────────────────── */
.hero-form-success { text-align: center; padding: 20px 0; }
.hero-form-success .success-icon { width: 52px; height: 52px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin: 0 auto 14px; }
.hero-form-success h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.hero-form-success p { font-size: 13px; color: var(--mid); }

/* ─── ANIMATED TRUCK ACCENT ───────────────────────────────────── */
.truck-anim-wrap { position: absolute; right: 0; bottom: 80px; width: 48%; opacity: 0.07; z-index: 1; pointer-events: none; }
@keyframes truck-glide { 0%{transform:translateX(0)} 100%{transform:translateX(-30px)} }
.truck-glide { animation: truck-glide 3s ease-in-out infinite alternate; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 520px; }
  .hero-route-anim { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-row: auto; }
  .why-grid, .founder-grid, .leadgen-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }

  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .odc-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--charcoal); flex-direction: column; padding: 20px; gap: 4px; }
  .main-nav.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .odc-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wh-feature-grid { grid-template-columns: 1fr 1fr; }
  .phone-float { display: none; }
  .sticky-cta-bar { display: none; }
}

@media (max-width: 480px) {

  .industries-grid { grid-template-columns: 1fr 1fr; }
  .fleet-specs { grid-template-columns: 1fr 1fr; }
  .wh-feature-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-form-row { grid-template-columns: 1fr; }
}

/* ─── SERVICE PAGE STYLES (Consolidated) ─────────────────────── */
/* Service page hero section */
.service-hero { 
  background: var(--charcoal); 
  padding: calc(var(--nav-h) + 60px) 0 80px; 
  position: relative; 
  overflow: hidden; 
}
.service-hero::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(139,37,0,.18) 0%, transparent 60%); 
}
.service-hero-grid { 
  display: grid; 
  grid-template-columns: 1fr 420px; 
  gap: 60px; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

/* Service specs showcase */
.spec-grid { 
  display: grid; 
  grid-template-columns: repeat(2,1fr); 
  gap: 16px; 
  margin: 28px 0; 
}
.spec-box { 
  background: rgba(255,255,255,.06); 
  border: 1px solid rgba(255,255,255,.1); 
  border-radius: var(--r-md); 
  padding: 18px; 
}
.spec-box-val { 
  font-family: var(--font-display); 
  font-size: 26px; 
  font-weight: 700; 
  color: #fff; 
}
.spec-box-lbl { 
  font-size: 12px; 
  color: rgba(255,255,255,.4); 
  margin-top: 4px; 
  letter-spacing: .04em; 
}

/* Benefit strip layout */
.benefit-strip { 
  background: var(--surface); 
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border); 
  padding: 32px 0; 
}
.benefit-strip-inner { 
  display: grid; 
  grid-template-columns: repeat(4,1fr); 
  gap: 0; 
}
.benefit-strip-item { 
  padding: 0 32px; 
  border-right: 1px solid var(--border); 
}
.benefit-strip-item:last-child { 
  border-right: none; 
}
.benefit-icon { 
  font-size: 28px; 
  margin-bottom: 10px; 
}

/* Two-column layout for content sections */
.two-col { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  align-items: start; 
}

/* Check list styling */
.check-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.check-list li { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  font-size: 15px; 
  color: var(--ink); 
}
.check-list li::before { 
  content: '✓'; 
  color: var(--rust); 
  font-weight: 700; 
  flex-shrink: 0; 
  margin-top: 1px; 
}

/* Route pill badges */
.route-pill { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  background: var(--white); 
  border: 1px solid var(--border); 
  border-radius: 99px; 
  padding: 6px 14px; 
  font-size: 13px; 
  font-weight: 500; 
  color: var(--ink); 
}

/* Sticky CTA at bottom of service pages */
.sticky-cta { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: var(--charcoal); 
  padding: 16px var(--gutter); 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  z-index: 50; 
  transform: translateY(100%); 
  transition: transform .3s; 
}
.sticky-cta.visible { 
  transform: translateY(0); 
}

/* Service page mobile responsive */
@media (max-width: 768px) {
  .service-hero-grid { 
    grid-template-columns: 1fr; 
  }
  .spec-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .benefit-strip-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
  }
  .benefit-strip-item { 
    border: none; 
    border-bottom: 1px solid var(--border); 
    padding: 0 0 16px; 
  }
  .two-col { 
    grid-template-columns: 1fr; 
  }
}