/* ==========================================================================
   Eveready Shipping — stylesheet
   ========================================================================== */

:root {
  --navy-950: #060c17;
  --navy-900: #0a1526;
  --navy-800: #0f2038;
  --navy-700: #16304f;
  --navy-600: #1e4066;
  --steel-400: #5f87ab;
  --steel-300: #8fb0cc;
  --ice-100: #eef3f8;
  --ice-050: #f7fafc;
  --red-600: #c22b2b;
  --red-500: #e0342f;
  --red-400: #ef5350;
  --white: #ffffff;

  --ink: #12202f;
  --ink-soft: #47586b;
  --line: #e2e8ef;

  --font-display: "Libre Franklin", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice-050);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.1; }
p { margin: 0; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 14px;
}
.center { text-align: center; display: block; }

.section-lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
}
.center.section-lead { margin-left: auto; margin-right: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-500);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(224, 52, 47, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -8px rgba(224, 52, 47, 0.6); }
.btn-ghost {
  background: transparent;
  color: var(--ice-100);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
  padding: 10px 22px;
}
.btn-outline:hover { background: var(--navy-800); color: var(--white); }

/* Topbar ------------------------------------------------------------------ */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: 1rem;
  overflow: hidden;
}
.topbar .ic { color: var(--red-400); }
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 28px;
  display: flex;
  align-items: center;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.25s;
}
a.topbar-item:hover { color: var(--white); }
.topbar-hours { margin-left: auto; }
.ic { opacity: 0.85; width: 1em; text-align: center; flex-shrink: 0; }

.topbar-static { display: flex; gap: 28px; align-items: center; width: 100%; }
.topbar-marquee { display: none; }

@media (max-width: 720px) {
  .topbar-hours { display: none; }
}

/* Marquee mode: swap the static row for a continuously scrolling one so
   email / phone / hours all stay visible without wrapping or truncation. */
@media (max-width: 640px) {
  .topbar-static { display: none; }
  .topbar-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  .topbar-track {
    display: flex;
    width: max-content;
    animation: topbarMarquee 16s linear infinite;
  }
  .topbar-group {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    flex-shrink: 0;
  }
  .topbar-inner { padding-left: 0; padding-right: 0; }
}

@keyframes topbarMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-track { animation: none; }
  .topbar-marquee { overflow-x: auto; }
}

/* Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(10, 21, 38, 0.02);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 8px 24px -16px rgba(10, 21, 38, 0.25);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { color: var(--navy-950); font-size: 1.15rem; letter-spacing: 0.03em; }
.brand-text em { color: var(--ink-soft); font-style: normal; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }

.main-nav { display: flex; gap: 30px; }
.nav-link {
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red-500);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active-link { color: var(--navy-950); }
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-950); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }

@media (max-width: 900px) {
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    box-shadow: -12px 0 40px -20px rgba(10, 21, 38, 0.3);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* HERO ------------------------------------------------------------------ */
.hero {
  position: relative;
  z-index: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Hero carousel slides ---------------------------------------------------- */
.hero-slides {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 1s var(--ease);
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6,12,23,0.72) 0%, rgba(10,21,38,0.5) 40%, rgba(10,21,38,0.16) 75%),
    var(--slide-bg, none) center / cover no-repeat;
  z-index: -1;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.is-active::before { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 150px 72px;
  width: 100%;
}

.hero-eyebrow {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-emph {
  color: var(--white);
}

.hero-sub {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .hero-content { padding: 118px 22px 32px; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; font-size: 1rem; }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .hero-content { padding-left: 84px; padding-right: 84px; }
}

@media (max-height: 720px) {
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 3.2rem); margin-bottom: 12px; }
  .hero-sub { margin-bottom: 18px; }
  .hero-content { padding-top: 108px; padding-bottom: 24px; }
}

@media (max-width: 720px) and (max-height: 700px) {
  .hero-sub {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}

/* Stats stripe -------------------------------------------------------------- */
.stats-stripe {
  position: relative;
  z-index: 1;
  background: var(--ice-050);
  padding: 0 0 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transform: translateY(-42px);
}
.stat-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 24px 48px -28px rgba(10, 21, 38, 0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 54px -24px rgba(10, 21, 38, 0.22);
}
.stat-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(224, 52, 47, 0.08);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon i { font-size: 1.5rem; }
.stat-figure { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-950);
  font-weight: 600;
}
.stat-suffix { color: var(--red-500); }
.stat-label { display: block; color: var(--ink-soft); font-size: 1rem; margin-top: 6px; letter-spacing: 0.02em; }

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; transform: none; margin-top: -30px; }
}

/* Hero carousel controls ---------------------------------------------------- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-arrow:hover { background: var(--red-500); border-color: var(--red-500); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-color 0.3s;
}
.hero-dot.is-active {
  background: var(--red-500);
  border-color: var(--red-500);
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .hero-arrow { display: none; }
  .hero-dots { right: 50%; transform: translateX(50%); bottom: 18px; gap: 14px; }
  .hero-dot {
    width: 26px; height: 26px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-dot::before {
    content: "";
    width: 9px; height: 9px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: background 0.3s, border-color 0.3s, width 0.3s;
  }
  .hero-dot.is-active::before {
    background: var(--red-500);
    border-color: var(--red-500);
    width: 22px;
    border-radius: 6px;
  }
}

/* Reveal animation --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero .reveal { transition-delay: calc(var(--d, 0) * 90ms); }
.hero-eyebrow.reveal { --d: 0; }
.hero-title.reveal { --d: 1; }
.hero-sub.reveal { --d: 2; }
.hero-actions.reveal { --d: 3; }

/* About -------------------------------------------------------------------- */
.about { padding: 80px 0; background: var(--ice-050); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(10, 21, 38, 0.35);
}
.about-media-tag {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -14px rgba(10, 21, 38, 0.3);
}
.about-media-tag img { width: 34px; height: 34px; object-fit: contain; }
.about-media-tag strong { display: block; font-size: 1rem; color: var(--navy-900); }
.about-media-tag span { font-size: 1rem; color: var(--ink-soft); }

.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 22px; color: var(--navy-950); }
.about-copy p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.about-points { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-points li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 500; }
.about-points span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(224, 52, 47, 0.12); color: var(--red-500);
  font-size: 1rem; flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media-tag { left: 16px; }
}

/* Services ------------------------------------------------------------------ */
.services { padding: 80px 0; background: var(--white); }
.services h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--navy-950); margin-bottom: 4px; }
.services > .section-inner > .eyebrow,
.services h2 { display: block; text-align: center; }

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  position: relative;
  background: rgba(247, 250, 252, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px -28px rgba(10, 21, 38, 0.16);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -20px rgba(10, 21, 38, 0.18);
}
.service-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: visible;
}
.service-media-clip {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media-icon {
  position: absolute;
  left: 20px; bottom: -22px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  color: var(--red-500);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -14px rgba(10, 21, 38, 0.28);
  z-index: 2;
}
.service-media-icon i { font-size: 1.35rem; }
.service-body { padding: 40px 28px 32px; }
.service-card h3 { font-size: 1.2rem; color: var(--navy-950); margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.card-link { color: var(--red-500); font-weight: 600; font-size: 1rem; transition: gap 0.25s; }
.card-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* CTA banner (parallax) ----------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner-bg {
  position: absolute;
  inset: -35% 0;
  background:
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1600&auto=format&fit=crop") center / cover;
  z-index: -2;
  will-change: transform;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,250,252,0.15) 0%, rgba(247,250,252,0.05) 50%, rgba(247,250,252,0.15) 100%);
  z-index: -1;
}
.cta-banner-content { text-align: center; }
.cta-banner-content h2 { color: var(--navy-950); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-banner-content p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 34px; }

/* Glass panel — legible text block over a photo, without flattening the photo itself */
.glass-panel {
  background: rgba(247, 250, 252, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -24px rgba(10, 21, 38, 0.35);
  padding: 40px 48px;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .glass-panel { padding: 32px 24px; }
}

/* Why choose us -------------------------------------------------------------- */
.why { padding: 80px 0; background: var(--ice-050); }

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.why-media { position: relative; }
.why-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 30px 60px -24px rgba(10, 21, 38, 0.3);
}
.why-media-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  box-shadow: 0 16px 32px -16px rgba(10, 21, 38, 0.28);
}
.why-media-badge span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(224, 52, 47, 0.1);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.why-media-badge-1 { top: 24px; left: -22px; }
.why-media-badge-2 { bottom: 24px; right: -22px; }

.why-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 4px; color: var(--navy-950); }

.why-timeline {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 18px 0;
}
.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 62px;
  bottom: -8px;
  width: 2px;
  background: var(--line);
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.why-icon i { font-size: 1.35rem; }
.why-item:hover .why-icon { background: var(--red-500); color: var(--white); transform: scale(1.08); }
.why-item-copy h3 { font-size: 1.15rem; color: var(--navy-950); margin-bottom: 6px; }
.why-item-copy p { color: var(--ink-soft); line-height: 1.6; font-size: 1rem; }

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-media { max-width: 380px; margin: 0 auto; }
  .why-media-badge-1 { left: 0; }
  .why-media-badge-2 { right: 0; }
}

/* Process --------------------------------------------------------------------- */
.process { padding: 80px 0; background: var(--white); }
.process h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--navy-950); }
.process-track {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-icon {
  position: relative;
  width: 74px; height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--red-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--red-500);
  box-shadow: 0 14px 30px -16px rgba(224, 52, 47, 0.4);
  animation: processFloat 3.6s ease-in-out infinite;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.process-icon i { font-size: 1.75rem; }
.process-step:nth-child(2) .process-icon { animation-delay: 0.3s; }
.process-step:nth-child(3) .process-icon { animation-delay: 0.6s; }
.process-step:nth-child(4) .process-icon { animation-delay: 0.9s; }

.process-badge {
  position: absolute;
  top: -8px; right: -8px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-500);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.process-step:hover .process-icon {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 20px 34px -16px rgba(224, 52, 47, 0.45);
  animation-play-state: paused;
}
.process-step h3 { font-size: 1.15rem; color: var(--navy-950); margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

@keyframes processFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .process-icon { animation: none; }
}

@media (max-width: 900px) {
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-track::before { display: none; }
}
@media (max-width: 560px) {
  .process-track { grid-template-columns: 1fr; }
}

/* Branches (parallax) ---------------------------------------------------------- */
.branches {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  isolation: isolate;
}
.branches-bg {
  position: absolute; inset: -35% 0;
  background:
    url("https://images.unsplash.com/photo-1521295121783-8a321d551ad2?q=80&w=1600&auto=format&fit=crop") center / cover;
  z-index: -2;
  will-change: transform;
}
.branches-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,250,252,0.1) 0%, rgba(247,250,252,0.35) 100%);
  z-index: -1;
}
.branches-heading {
  text-align: center;
  padding: 28px 40px;
  margin-bottom: 8px;
  max-width: 720px;
}
.branches h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 4px; color: var(--navy-950); }

.branch-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 18px 36px -22px rgba(10, 21, 38, 0.16);
  transition: background 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.branch-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(10, 21, 38, 0.2); }
.branch-card h3 { color: var(--navy-950); font-size: 1.1rem; margin-bottom: 6px; }
.branch-card p { color: var(--ink-soft); font-size: 1rem; }
.branch-card-more { background: var(--white); border-color: rgba(224, 52, 47, 0.25); }

@media (max-width: 980px) {
  .branch-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Contact ------------------------------------------------------------------------ */
.contact { padding: 80px 0; background: var(--ice-050); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
}
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--navy-950); margin: 6px 0 16px; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(224, 52, 47, 0.08);
  color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.contact-details strong { display: block; color: var(--navy-950); margin-bottom: 4px; font-size: 1.05rem; }
.contact-details span { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(10, 21, 38, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 1rem; font-weight: 600; color: var(--navy-900); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  background: var(--ice-050);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.25s, background 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red-400);
  background: var(--white);
}
.contact-form input.has-error,
.contact-form textarea.has-error {
  border-color: var(--red-600);
  background: rgba(224, 52, 47, 0.04);
}
.contact-form input.has-error:focus,
.contact-form textarea.has-error:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(224, 52, 47, 0.14);
}
.field-error {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--red-600);
  min-height: 0;
}
.field-error:empty { display: none; }
.form-submit { align-self: flex-start; margin-top: 4px; }
.form-note { font-size: 1rem; color: var(--red-500); min-height: 1em; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Footer ----------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: var(--steel-300); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img { height: 68px; width: 68px; object-fit: contain; background: var(--white); border-radius: 14px; padding: 6px; margin-bottom: 18px; }
.footer-brand p { line-height: 1.7; font-size: 1rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 1rem; }
.footer-col a { transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 28px;
  font-size: 1rem;
  text-align: center;
  color: rgba(143, 176, 204, 0.7);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Back to top --------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px -10px rgba(10,21,38,0.25);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.3s, color 0.3s;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-500); border-color: var(--red-500); color: var(--white); }

/* Reduced motion ------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-layer, .cta-banner-bg, .branches-bg { transform: none !important; }
}
