/* ==========================================================================
   Odtah Servis Dvořák — Modern Stylesheet
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f8fa;
  --color-surface-2: #eef0f4;
  --color-ink: #0b1220;
  --color-ink-2: #2a3142;
  --color-muted: #5a6275;
  --color-line: #e4e7ee;

  --color-primary: #d72638;          /* emergency red */
  --color-primary-dark: #a91d2c;
  --color-primary-soft: #fde8ea;
  --color-accent: #ffb703;           /* warning amber */
  --color-dark: #0d1b2a;             /* deep navy */
  --color-dark-2: #1b2a3a;
  --color-success: #2a9d8f;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 1px 3px rgba(13,27,42,.08);
  --shadow: 0 6px 18px rgba(13,27,42,.08), 0 2px 6px rgba(13,27,42,.06);
  --shadow-lg: 0 24px 60px rgba(13,27,42,.18), 0 8px 24px rgba(13,27,42,.10);

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--color-dark); color: #e5e9f0; }
.section--surface { background: var(--color-surface); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
}
.section--dark .section-head .eyebrow {
  color: #fff;
  background: rgba(215, 38, 56, .25);
}
.section-head p {
  color: var(--color-muted);
  font-size: 1.05rem;
}
.section--dark .section-head p { color: #aab3c5; }

/* Topbar — emergency notice */
.topbar {
  background: var(--color-dark);
  color: #cfd6e4;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 40px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2a9d8f;
  box-shadow: 0 0 0 0 rgba(42,157,143,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,157,143,.7); }
  70% { box-shadow: 0 0 0 10px rgba(42,157,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,157,143,0); }
}
.topbar__links {
  display: flex; gap: 18px; align-items: center;
}
.topbar__links a { display: inline-flex; gap: 6px; align-items: center; opacity: .9; }
.topbar__links a:hover { opacity: 1; color: #fff; }

@media (max-width: 880px) {
  .topbar { font-size: .82rem; }
  .topbar__inner { justify-content: center; gap: 8px; }
  .topbar__links { display: none; }
  .topbar__left { white-space: nowrap; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--color-ink);
  text-decoration: none;
}
.brand img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform .25s var(--ease);
}
.brand:hover img { transform: scale(1.03); }
@media (max-width: 480px) {
  .brand img { height: 38px; }
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--color-ink-2);
  border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover { background: var(--color-surface); color: var(--color-primary); }
.nav a.is-active { color: var(--color-primary); }

.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--color-primary);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(215, 38, 56, .35);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-call:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(215, 38, 56, .45);
}
.btn-call svg { width: 18px; height: 18px; }
.btn-call--lg { padding: 18px 28px; font-size: 1.15rem; }

.menu-toggle { display: none; }

@media (max-width: 960px) {
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
         flex-direction: column; align-items: stretch; padding: 12px; gap: 4px;
         background: #fff; border-bottom: 1px solid var(--color-line);
         box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; }
  .menu-toggle {
    display: inline-flex; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 8px; color: var(--color-ink);
    background: var(--color-surface);
  }
  .header-cta .header-cta__label { display: none; }
  .btn-call { padding: 10px 14px; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #0a1525;
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px; bottom: -20px; left: -20px;
  background-image: url('../images/Odtahova-sluzba-a-servis-Dvorak_uvod2.png');
  background-size: cover;
  background-position: center right 15%;
  filter: blur(3px) brightness(0.95) saturate(1.1);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg,
      rgba(10,21,37,.96) 0%,
      rgba(10,21,37,.88) 25%,
      rgba(10,21,37,.55) 55%,
      rgba(10,21,37,.18) 85%,
      rgba(10,21,37,0) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(215,38,56,.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,21,37,.25) 0%, transparent 25%, transparent 70%, rgba(10,21,37,.7) 100%);
  z-index: -1;
}
@media (max-width: 880px) {
  .hero::before {
    background-position: 65% 35%;
    background-size: cover;
    filter: blur(2px) brightness(0.55) saturate(1.1);
  }
  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(10,21,37,.55) 0%,
        rgba(10,21,37,.7) 50%,
        rgba(10,21,37,.92) 100%),
      radial-gradient(ellipse at 50% 25%, rgba(215,38,56,.22) 0%, transparent 60%);
  }
  .hero__inner { padding: 56px 0 72px; text-align: center; }
  .hero__inner > div { text-align: center; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero__lead { font-size: 1.02rem; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__phone-block {
    padding: 14px 18px; gap: 14px; margin-top: 28px;
    display: inline-flex;
  }
  .hero__phone-block .num { font-size: 1.35rem; }
  .hero__phone-block .iconwrap { width: 48px; height: 48px; }
  .hero__phone-block .label,
  .hero__phone-block .num { text-align: left; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 96px 0 110px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(215, 38, 56, .15);
  border: 1px solid rgba(215, 38, 56, .4);
  color: #ff8a95;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 8px; height: 8px; background: #ff4d5e; border-radius: 50%;
  animation: pulse-red 1.6s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,77,94,.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,77,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,94,0); }
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  max-width: 800px;
}
.hero h1 .accent { color: #ff4d5e; }
.hero__lead {
  font-size: 1.2rem;
  max-width: 620px;
  color: #cdd5e3;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--primary {
  background: var(--color-primary);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(215, 38, 56, .4);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(215, 38, 56, .5);
}
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.2);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--outline {
  background: transparent;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff !important;
}
.btn svg { width: 20px; height: 20px; }

.hero__phone-block {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.hero__phone-block .label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  color: #aab3c5;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__phone-block .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}
.hero__phone-block .iconwrap {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(215, 38, 56, .4);
}
.hero__phone-block .iconwrap svg { width: 26px; height: 26px; color: #fff; }

/* Quick stats below hero */
.quickbar {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  margin: -60px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quickbar__item { display: flex; gap: 14px; align-items: flex-start; }
.quickbar__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 12px;
}
.quickbar__icon svg { width: 22px; height: 22px; }
.quickbar__item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 2px;
}
.quickbar__item span {
  font-size: .9rem;
  color: var(--color-muted);
}
@media (max-width: 880px) {
  .quickbar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
}
@media (max-width: 480px) {
  .quickbar { grid-template-columns: 1fr; }
}

/* Service grid */
.services-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .services-wrap { grid-template-columns: 1fr; } }

.service-block {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-block__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}
.service-block__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 14px;
  flex-shrink: 0;
}
.service-block__icon svg { width: 26px; height: 26px; }
.service-block__head h2 { margin: 0; font-size: 1.6rem; }
.service-block__head .hours {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--color-muted);
  margin-top: 4px;
}
.service-block__media {
  margin: 24px -36px;
  height: 200px;
  overflow: hidden;
}
.service-block__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-block ul { display: grid; gap: 14px; padding-top: 12px; }
.service-block li {
  display: flex; gap: 14px;
  padding: 14px;
  background: var(--color-surface);
  border-radius: 10px;
  transition: background .2s var(--ease);
}
.service-block li:hover { background: var(--color-surface-2); }
.service-block li .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
}
.service-block li .check svg { width: 12px; height: 12px; }
.service-block li strong {
  display: block;
  font-size: .98rem;
  color: var(--color-ink);
  margin-bottom: 2px;
}
.service-block li span {
  font-size: .9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Reasons / why us */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 32px;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.reason:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.reason__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(215, 38, 56, .15);
  color: #ff8a95;
  border-radius: 14px;
  margin-bottom: 20px;
}
.reason__icon svg { width: 26px; height: 26px; }
.reason h3 { color: #fff; margin-bottom: 8px; }
.reason p { color: #aab3c5; margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.2) 0%, transparent 40%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 24px;
}
.cta-strip h2 { color: #fff; margin: 0 0 6px; }
.cta-strip p { margin: 0; opacity: .9; font-size: 1.1rem; }
.cta-strip .btn--white {
  background: #fff;
  color: var(--color-primary) !important;
}
.cta-strip .btn--white:hover { background: #fff; color: var(--color-primary-dark) !important; transform: translateY(-2px); }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}
.contact-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto 18px;
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-card .value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.contact-card .value--small { font-size: 1.1rem; }
.contact-card a.value:hover { color: var(--color-primary); }
.contact-card .meta { color: var(--color-muted); font-size: .9rem; margin: 0; }

.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Page hero */
.page-hero {
  padding: 100px 0 64px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(215, 38, 56, .25) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255,183,3,.12) 0%, transparent 35%);
}
.page-hero__inner { position: relative; max-width: 800px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #aab3c5; font-size: 1.15rem; max-width: 620px; margin: 0; }
.breadcrumbs {
  font-size: .9rem;
  color: #8892a8;
  margin-bottom: 14px;
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* Info card list (kontejnerova / prodej pages) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 12px;
  margin-bottom: 16px;
}
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.info-card p { color: var(--color-muted); margin: 0; font-size: .95rem; }

/* Two-column layout */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split h2 { margin-bottom: 16px; }
.split p { color: var(--color-muted); font-size: 1.05rem; }
.split ul { display: grid; gap: 12px; margin-top: 24px; }
.split ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem;
}
.split ul li::before {
  content: "✓";
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
  cursor: zoom-in;
  background: var(--color-surface);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,.6) 100%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13, 27, 42, .92);
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
  font-size: 24px;
  transition: background .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #cfd6e4;
  padding: 64px 0 0;
}
.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,.08);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: #fff;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-grid,
.footer-grid p,
.footer-grid a,
.footer-grid li,
.footer-grid span {
  color: #aab3c5;
  font-size: .95rem;
  line-height: 1.65;
  font-weight: 400;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.footer-grid a:hover { color: #fff; }
.footer-grid p { margin: 0 0 16px; }
.footer-grid ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-brand { max-width: 380px; }
.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.socials a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }
.footer-call {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: rgba(215, 38, 56, .12);
  border-radius: var(--radius);
  margin-top: 20px;
}
.footer-call .iconwrap {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-call .iconwrap svg { width: 18px; height: 18px; }
.footer-call .label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff8a95;
  margin-bottom: 2px;
}
.footer-call .num {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.copy {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: .85rem;
  color: #8892a8;
  gap: 12px;
}
.copy a:hover { color: #fff; }

/* Mobile call bar (always visible, mobile only) */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 60;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(215, 38, 56, .45);
  align-items: center; justify-content: center; gap: 10px;
}
.mobile-call-bar svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .mobile-call-bar { display: inline-flex; }
  body { padding-bottom: 80px; }
}

/* Floating call button (desktop) */
.floating-call {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 55;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(215, 38, 56, .45);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.floating-call::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  animation: ring 1.6s infinite;
}
@keyframes ring {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}
.floating-call:hover { background: var(--color-primary-dark); transform: scale(1.1); }
.floating-call svg { width: 24px; height: 24px; }
@media (max-width: 720px) { .floating-call { display: none; } }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
