/* =========================================================
   SPORTSKA AKADEMIJA SPARTA SPLIT — stylesheet
   ========================================================= */

:root {
  --navy: #0e1f3d;
  --navy-2: #142a52;
  --navy-soft: #1c3660;
  --red: #d21f2b;
  --red-dark: #a91620;
  --gold: #f0b429;
  --gold-dark: #d99b0f;
  --green: #3fae49;
  --green-dark: #2f8c39;
  --cream: #faf6ec;
  --paper: #fffdf8;
  --ink: #1a1a1a;
  --ink-soft: #4a5165;
  --line: #e7e1d2;
  --white: #ffffff;

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

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(14, 31, 61, 0.12);
  --shadow-sm: 0 4px 14px rgba(14, 31, 61, 0.08);
  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
a[href^="mailto:"] { overflow-wrap: anywhere; word-break: break-word; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--red-dark);
  text-transform: uppercase;
}
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 640px) {
  .container { padding: 0 30px; }
}

section { padding: 76px 0; }
@media (max-width: 720px) {
  section { padding: 52px 0; }
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(210, 31, 43, 0.09);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head {
  max-width: 720px;
  margin: 0 0 42px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(210, 31, 43, 0.35);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(210, 31, 43, 0.45); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--red-dark);
  box-shadow: 0 10px 24px rgba(240, 180, 41, 0.35);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--red-dark);
  color: var(--red-dark);
}
.btn-outline-navy:hover { background: var(--red-dark); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(14,31,61,0.10); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--red-dark);
  flex: none;
}
.brand img { width: 97px; height: 97px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b1 { font-size: 1.4rem; letter-spacing: 0.4px; white-space: nowrap; }
.brand-text .b2 {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  color: var(--red);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 10px;
  border-radius: 999px;
  color: var(--red-dark);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(169,22,32,0.08); }
.main-nav a.active { background: var(--red-dark); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 8px; flex: none; }
.header-cta .btn { padding: 11px 16px; font-size: 0.83rem; white-space: nowrap; }
.phone-chip {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--red-dark);
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--red-dark);
  border-radius: 50%;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-primary { display: none; }
}
@media (min-width: 1101px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--red-dark);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-nav-top .brand { color: var(--white); }
.mobile-nav-top .brand img { width: 110px; height: 110px; }
.mobile-nav-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.5px;
}
.mobile-nav a.active { color: var(--gold); }
.mobile-nav-foot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav-foot a.btn { width: 100%; }
.mobile-nav-foot a.btn-gold {
  color: var(--red-dark);
  text-align: center;
  justify-content: center;
  box-shadow: none;
}
.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: background 0.15s ease;
  box-shadow: none;
}
.mobile-nav-contact a:hover { background: rgba(255,255,255,0.85); }
.mobile-nav-contact a svg { flex-shrink: 0; }

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(51,10,14,0.86) 0%, rgba(51,10,14,0.78) 45%, rgba(51,10,14,0.90) 100%),
    linear-gradient(100deg, rgba(51,10,14,0.55) 0%, transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.16);
  border: 1px solid rgba(240,180,41,0.5);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 820px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 34px;
  max-width: 560px;
}
.hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero { min-height: 560px; }
  .hero-inner { padding-top: 100px; padding-bottom: 60px; }
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  color: var(--white);
  padding: 150px 0 70px;
  background: var(--red-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(51,10,14,0.55), rgba(51,10,14,0.94));
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.2rem); max-width: 780px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Icon cards (features) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon.navy { background: var(--green); }
.feature-icon.red { background: var(--red); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-media { position: relative; }
.split-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--gold);
  color: var(--red-dark);
  font-family: var(--font-display);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  line-height: 1.1;
}
.split-badge b { display: block; font-size: 1.6rem; }
.split-badge span { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.check-list li svg {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  color: var(--red);
}

/* ---------- Logos / support strip ---------- */
.support-strip {
  background: var(--green);
  color: rgba(255,255,255,0.92);
  padding: 22px 0;
  font-size: 0.9rem;
  text-align: center;
}
.support-strip strong { color: var(--white); }

/* ---------- Programs / cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(169,22,32,0.16);
  padding: 22px 24px 0;
}
.info-card .body { padding: 6px 24px 26px; }
.info-card h3 { font-size: 1.15rem; }
.info-card p { font-size: 0.93rem; margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -20px; left: 24px;
  box-shadow: 0 6px 16px rgba(210,31,43,0.4);
}
.step h3 { font-size: 1.05rem; margin-top: 6px; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

.price-card {
  background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-card::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(240,180,41,0.25), transparent 70%);
  top: -80px; right: -80px;
}
.price-card .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}
.price-card .amount span { font-size: 1.2rem; color: rgba(255,255,255,0.7); text-transform: none; font-family: var(--font-body); font-weight: 600; }
.price-card .note { color: rgba(255,255,255,0.75); margin: 14px 0 26px; font-size: 0.95rem; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.price-card ul li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

.sibling-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sibling-card .feature-icon { margin-bottom: 20px; }
.sibling-card h3 { font-size: 1.3rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.team-body { padding: 26px 24px 24px; }
.team-initial {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.team-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--red); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; display: block; }
.team-body p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.gfilter {
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--red-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.15s ease;
}
.gfilter:hover { border-color: var(--red); }
.gfilter.is-active { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gitem {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  background: var(--line);
}
.gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.gitem:hover img { transform: scale(1.08); }
.gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(51,10,14,0.55));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gitem:hover::after { opacity: 1; }
.gitem .gicon {
  position: absolute; right: 10px; bottom: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
}
.gitem:hover .gicon { opacity: 1; transform: translateY(0); }
.gitem.hidden { display: none; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(51,10,14,0.94);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.75); font-size: 0.9rem;
}
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18), transparent 55%);
}
.cta-band-text { position: relative; z-index: 1; max-width: 560px; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 0; }
.cta-band-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) { .cta-band { padding: 34px 26px; } }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
}
.contact-wrap > * { min-width: 0; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--red-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .cicon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(240,180,41,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .cicon svg { width: 20px; height: 20px; }
.contact-row a, .contact-row span.val { color: var(--white); font-weight: 600; }
.contact-row .lbl { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: rgba(255,255,255,0.12); }
.social-row svg { width: 20px; height: 20px; }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: var(--red-dark);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: rgba(30, 140, 90, 0.1);
  border: 1px solid rgba(30,140,90,0.3);
  color: #17734f;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.is-visible { display: block; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
  color: var(--red-dark);
  font-size: 0.98rem;
}
.faq-q .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(210,31,43,0.1);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--red-dark);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid > * { min-width: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand .brand img { width: 194px; height: 194px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 1.02rem; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 1.02rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- WhatsApp / floating call button ---------- */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  font-weight: 700;
  font-size: 0.9rem;
}
.float-cta svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .float-cta span { display: none; }
  .float-cta { padding: 14px; }
}

/* ---------- Utility ---------- */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge-list span {
  background: rgba(169,22,32,0.08);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.quote-block {
  background: var(--red-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.quote-block .mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold); line-height: 0.5; }
.quote-block p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin: 16px 0 0; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.testi-name { font-weight: 700; color: var(--red-dark); font-size: 0.92rem; }
.testi-card.testi-more { display: none; }
.testi-grid.expanded .testi-card.testi-more { display: flex; }
.testi-more-wrap { text-align: center; margin-top: 32px; }
