/* ==========================================================================
   Agarwal Packers and Movers — Shared Stylesheet
   Palette: Red #D62828 / Yellow #F7B801 / Black #17181C / White
   Type: Poppins (display) + Inter (body)
   ========================================================================== */

:root {
  --red: #D62828;
  --red-dark: #A81E1E;
  --yellow: #F7B801;
  --yellow-dark: #D9A100;
  --black: #17181C;
  --ink: #2A2C33;
  --gray: #5B5E68;
  --gray-light: #8A8D97;
  --line: #E8E6E1;
  --off-white: #FAF8F4;
  --white: #FFFFFF;
  --cream: #FFF9EC;

  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(23, 24, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(23, 24, 28, 0.10);
  --shadow-red: 0 10px 24px rgba(214, 40, 40, 0.28);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--black);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
p { margin: 0 0 1em; color: var(--gray); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

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

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--black { background: var(--black); color: var(--white); }
.section--black h2, .section--black h3, .section--black p { color: var(--white); }
.section--black .eyebrow { color: var(--yellow); }
.section--cream { background: var(--cream); }
.section--off { background: var(--off-white); }

@media (max-width: 780px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
}

/* ---------- Eyebrow / Section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1EBE5B; }

/* ---------- Header ---------- */
.top-strip {
  background: var(--black);
  color: #C9CAD1;
  font-size: 0.82rem;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-strip a { color: #C9CAD1; }
.top-strip a:hover { color: var(--yellow); }
.top-strip__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.top-strip__contacts span { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.logo__img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
/* White pill behind the logo when placed on dark backgrounds (footer, thank-you page)
   — the wordmark itself is red/black and needs a light backing to stay legible. */
.logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  line-height: 0;
}
.logo-badge .logo__img { height: 36px; }
@media (max-width: 480px) {
  .logo__img { height: 36px; }
  .logo-badge .logo__img { height: 30px; }
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--black); border-radius: 2px; }

@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary span.btn-text-full { display: none; }
}
@media (min-width: 961px) {
  .nav-backdrop { display: none !important; }
}
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(23,24,28,0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 64px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(247,184,1,0.18), transparent 70%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: start;
}
.hero__copy { padding-bottom: 70px; padding-top: 20px; color: var(--white); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,184,1,0.14);
  border: 1px solid rgba(247,184,1,0.4);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 20px;
}
.hero__copy h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero__copy p.lead {
  color: #C9CAD1;
  font-size: 1.05rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; margin: 28px 0 34px; flex-wrap: wrap; }
.hero__points { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E3E4E9;
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.hero__points svg { flex-shrink: 0; color: var(--yellow); }

/* Quote form card */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 30px;
  position: relative;
  margin-bottom: -0px;
  align-self: start;
  margin-top: 10px;
}
.quote-card__ribbon {
  position: absolute;
  top: -14px; left: 30px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}
.quote-card h3 { font-size: 1.25rem; margin-top: 8px; }
.quote-card p.hint { font-size: 0.88rem; margin-bottom: 18px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--black);
  margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 74px; }
.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gray);
  margin: 14px 0;
}
.consent input { margin-top: 3px; }
.form-note { font-size: 0.75rem; color: var(--gray-light); text-align: center; margin-top: 10px; }
.form-success {
  display: none;
  background: #F0FBF3;
  border: 1px solid #B7E8C4;
  color: #1F7A3D;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  background: #FDECEC;
  border: 1px solid #F3B7B7;
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin: 4px 0 0;
}
.form-error.is-visible { display: block; }

@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; }
  .quote-card { margin-top: 0; }
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Stat bar ---------- */
.stat-bar {
  background: var(--red);
  padding: 0;
}
.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  color: var(--white);
  padding: 30px 14px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--yellow);
}
.stat__label {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 700px) {
  .stat-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.18); }
}

/* ---------- Route divider (signature element) ---------- */
.route-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  margin: 6px 0 0;
}
.route-divider .dash {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--line);
}
.route-divider svg { flex-shrink: 0; color: var(--red); }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split__media { order: 2; }
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__media-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--black), #33343B);
  color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.split__media-placeholder span {
  color: #C9CAD1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
}
.split__badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  min-width: 150px;
}
.split__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
}
.split__badge span { font-size: 0.75rem; color: #C9CAD1; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .split__badge { left: 16px; }
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black), #33343B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  position: relative;
  overflow: hidden;
}
.service-card__media svg { width: 54px; height: 54px; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { font-size: 1.08rem; }
.service-card__body p { font-size: 0.9rem; flex: 1; }
.service-card__actions { display: flex; gap: 10px; margin-top: 14px; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--line);
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { text-align: center; padding: 0 8px; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid rgba(247,184,1,0.25);
}
.step h3 { color: var(--white); font-size: 1rem; }
.step p { color: #A9ABB5; font-size: 0.85rem; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
}
.testimonial-card .stars { color: var(--yellow); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 0.94rem; color: var(--ink); font-style: italic; }
.testimonial-card .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.who strong { display: block; font-size: 0.88rem; font-family: var(--font-display); }
.who span { font-size: 0.76rem; color: var(--gray-light); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}
.faq-item__q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq-item.is-open .plus { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item__a p { padding: 0 4px 20px; font-size: 0.92rem; }
.faq-item.is-open .faq-item__a { max-height: 320px; }

/* ---------- Service areas ---------- */
.area-pill-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-pill {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--black);
  background: var(--white);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.area-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(247,184,1,0.18);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #C9CAD1; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.88rem; color: #C9CAD1; }
.footer-grid a:hover { color: var(--yellow); }
.footer-about p { font-size: 0.88rem; color: #A9ABB5; }
.footer-about .logo { color: var(--white); margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--red); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #83858F;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #83858F; }
.footer-bottom a:hover { color: var(--yellow); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}
.mobile-call-bar .row { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
}
.mobile-call-bar .call { background: var(--red); color: var(--white); }
.mobile-call-bar .wa { background: #25D366; color: var(--white); }
@media (max-width: 780px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(214,40,40,0.35), transparent 70%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 10px; }
.breadcrumb { font-size: 0.85rem; color: #A9ABB5; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: #C9CAD1; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* ---------- Branch cards (contact page) ---------- */
.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.branch-card__map { width: 100%; aspect-ratio: 16/9; border: 0; display: block; background: var(--off-white); }
.branch-card__body { padding: 24px; }
.branch-card__tag {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.branch-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.branch-card__addr {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.branch-card__addr svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }
.branch-card__phones { font-size: 0.88rem; margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }
.branch-card__phones a { font-weight: 600; color: var(--black); }
.branch-card__phones a:hover { color: var(--red); }
.branch-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Generic content pages (about/terms/privacy) ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 24px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; color: var(--gray); }
.prose p { color: var(--gray); }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0 30px; }
@media (max-width: 600px) { .value-list { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--black), #33343B);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 10px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.chip {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 5px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
