/**
 * Acar Yapı — premium inşaat / cephe marka teması
 * Tipografi: Cormorant Garamond (başlık) + DM Sans (gövde)
 */
:root {
  --navy: #0a1628;
  --navy-mid: #132337;
  --navy-2: #1a3a52;
  --anth: #151f2e;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --white: #f7f8fa;
  --muted: #8b9cb3;
  --text: #dce4ee;
  --body-bg: #060b12;
  --card: #0f1824;
  --card-edge: rgba(212, 175, 55, 0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.28);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 58, 82, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212, 175, 55, 0.04), transparent);
  z-index: -1;
}
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold); text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
.container { width: min(1140px, 92vw); margin-inline: auto; }

/* —— Üst bar —— */
.topbar {
  background: var(--navy);
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dim);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gold-light); }
.btn--wa {
  background: #1fb855;
  color: #fff !important;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--gold-dim);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  color: inherit;
}
.logo__mark {
  width: 3px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}
.logo__stack { display: flex; flex-direction: column; gap: 0.15rem; line-height: 1.2; }
.logo__img { max-height: 44px; width: auto; display: block; }
.logo__text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 280px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  align-items: center;
}
.nav__list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__list a:hover { color: var(--white); }
.nav__list a:hover::after { width: 100%; }
.nav__cta .btn--primary {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .logo__tag { max-width: 200px; font-size: 0.65rem; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-mid);
    padding: 1rem 4vw 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.25s;
    border-bottom: 1px solid var(--gold-dim);
  }
  .header { position: relative; }
  .nav.is-open { max-height: 85vh; opacity: 1; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 0.75rem; }
}

/* —— Butonlar —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 0.45rem 0.95rem; font-size: 0.8125rem; }
.btn--primary {
  background: var(--navy-2);
  color: var(--white) !important;
  border-color: var(--card-edge);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--navy-mid); border-color: rgba(212, 175, 55, 0.35); }
.btn--secondary {
  background: var(--anth);
  color: var(--white) !important;
  border-color: rgba(148, 163, 184, 0.2);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}
.btn--gold:hover { box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35); }
.btn--outline {
  border-color: var(--gold);
  color: var(--gold-light) !important;
  background: transparent;
}
.btn--outline:hover { background: var(--gold-dim); color: var(--white) !important; }

/* —— Hero —— */
.hero { position: relative; min-height: 62vh; }
.hero-slider { position: relative; min-height: 62vh; }
.hero-slide {
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  display: none;
  align-items: center;
  position: relative;
}
.hero-slider .hero-slide.is-active { display: flex; }
.hero-slide--static { display: flex; }
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 11, 18, 0.92) 0%, rgba(10, 22, 40, 0.75) 45%, rgba(26, 58, 82, 0.4) 100%);
}
.hero-slide__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  max-width: 38rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
  font-weight: 600;
}
.hero-slide__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.hero-slide__sub {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.hero-intro { color: rgba(220, 228, 238, 0.92); margin-bottom: 1.75rem; font-size: 1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }

/* Güven şeridi */
.trust-strip {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--gold-dim);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 0;
}
.trust-strip__line {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56rem;
}
@media (max-width: 640px) {
  .trust-strip__line { letter-spacing: 0.12em; font-size: 0.68rem; }
}

/* Öne çıkan üç uzmanlık */
.section--pillars { padding-top: 3rem; }
.section__head--left { text-align: left; max-width: 42rem; margin-left: 0; margin-right: auto; }
.section__head--left .section__lead { margin-left: 0; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.section__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0.75rem 0 0;
  max-width: 36rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
.pillar-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-edge);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s;
}
.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow);
}
.pillar-card__media {
  display: block;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none !important;
}
.pillar-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 18, 0.85));
  pointer-events: none;
}
.pillar-card__body { padding: 1.35rem 1.35rem 1.5rem; }
.pillar-card__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.pillar-card__title a { color: var(--white); text-decoration: none !important; }
.pillar-card__title a:hover { color: var(--gold-light); }
.pillar-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
.pillars-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

/* Bölümler */
.section { padding: 3.25rem 0; }
.section--muted { background: rgba(15, 24, 36, 0.65); }
.section--dark { background: var(--navy); }
.section--partners { border-top: 1px solid var(--gold-dim); }
.section__head {
  text-align: center;
  margin-bottom: 2.25rem;
}
.section__head h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.section__head--light h2 { color: var(--white); }
.section__head p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1rem;
}

.grid { display: grid; gap: 1.35rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.card:hover {
  border-color: var(--card-edge);
  transform: translateY(-3px);
}
.card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--anth);
}
.card__imglink { display: block; text-decoration: none !important; }
.card__body { padding: 1.2rem 1.25rem 1.35rem; }
.card__body h2, .card__body h3 { margin-top: 0; font-size: 1.1rem; font-family: var(--serif); font-weight: 600; }
.card__body h2 a, .card__body h3 a { color: var(--white); text-decoration: none !important; }
.card__body h2 a:hover, .card__body h3 a:hover { color: var(--gold-light); }
.card__body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }
.card--horizontal { display: grid; grid-template-columns: 1fr 1.15fr; }
@media (max-width: 720px) { .card--horizontal { grid-template-columns: 1fr; } }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.link-arrow::after { content: "→"; transition: transform 0.2s; }
.link-arrow:hover::after { transform: translateX(4px); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-edge);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__label { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; display: block; letter-spacing: 0.04em; }

.why-list {
  columns: 2;
  gap: 2.5rem;
  padding-left: 1.25rem;
  color: var(--text);
  max-width: 52rem;
  margin-inline: auto;
}
.why-list li { margin-bottom: 0.5rem; }
@media (max-width: 640px) { .why-list { columns: 1; } }

.quote {
  margin: 0;
  padding: 1.35rem;
  background: var(--card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
}
.quote p { margin-top: 0; color: var(--text); }
.quote footer { color: var(--muted); font-size: 0.85rem; margin-top: 0.85rem; }

.faq-mini__item, .faq-item {
  margin-bottom: 0.5rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.faq-mini__item summary, .faq-item summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  list-style: none;
}
.faq-mini__item summary::-webkit-details-marker { display: none; }
.faq-mini__item p, .faq-item__body { padding: 0 1.1rem 1rem; margin: 0; color: var(--muted); font-size: 0.92rem; }

.map-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; } }
.map-embed { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--card-edge); }

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.partners__item img {
  filter: grayscale(0.25) brightness(1.05);
  opacity: 0.88;
  max-height: 48px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.partners__item a:hover img { opacity: 1; }

.cta-band {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy));
  border-block: 1px solid var(--card-edge);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.25rem 0;
}
.cta-band h2 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}
.cta-band p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.calc-form { display: grid; gap: 1rem; max-width: 440px; }
.calc-form label { display: grid; gap: 0.35rem; font-weight: 600; color: var(--muted); font-size: 0.875rem; }
.calc-form input, .calc-form select {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--card);
  color: var(--text);
  font: inherit;
}
.calc-form input:focus, .calc-form select:focus,
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.calc-result { color: var(--gold-light); font-weight: 600; font-size: 0.95rem; }

.page-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-bottom: 2px solid var(--gold);
}
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
}
.page-hero p { color: var(--muted); margin: 0.5rem 0 0; }
.page-hero--small { min-height: 240px; background-size: cover; background-position: center; position: relative; }
.page-hero--small::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 11, 18, 0.9), rgba(10, 22, 40, 0.65));
}
.page-hero--small .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.875rem; color: var(--muted); }
.breadcrumb a { color: var(--gold-light); }

.prose { max-width: 44rem; margin-inline: auto; }
.prose h2 {
  font-family: var(--serif);
  color: var(--gold-light);
  margin-top: 2.25rem;
  font-size: 1.65rem;
  font-weight: 600;
}
.prose h3 { color: var(--white); font-size: 1.2rem; margin-top: 1.5rem; }
.prose p { color: var(--text); }
.prose ul, .prose ol { color: var(--text); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.35rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.filters { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.5rem; }
.filters input, .filters select {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: var(--card);
  color: var(--text);
  font: inherit;
}

.pagination { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: center; margin-top: 2rem; }
.pagination a, .pagination span {
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  background: var(--card);
  color: var(--text);
  text-decoration: none !important;
  border: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 0.875rem;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-light); }
.pagination .current { background: var(--gold); color: var(--navy); font-weight: 700; border-color: var(--gold); }

.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--card-edge);
}
.gallery-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.gallery-thumb:hover img { transform: scale(1.05); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1rem; }
.form label { display: grid; gap: 0.35rem; font-weight: 600; color: var(--muted); font-size: 0.875rem; }
.form input, .form textarea, .form select {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--card);
  color: var(--text);
  font: inherit;
}
.form button[type="submit"] { justify-self: start; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.flash { padding: 1rem 1.15rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.95rem; }
.flash--ok { background: rgba(34, 197, 94, 0.12); border: 1px solid #22c55e; color: #bbf7d0; }
.flash--error { background: rgba(239, 68, 68, 0.12); border: 1px solid #ef4444; color: #fecaca; }

.footer {
  background: var(--navy);
  padding: 3rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid var(--card-edge);
}
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.footer__title {
  color: var(--gold-light);
  font-family: var(--serif);
  margin-top: 0;
  font-size: 1.15rem;
}
.footer__text { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 0.35rem; }
.footer__links a { color: var(--text); text-decoration: none !important; font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold-light); }
.footer__muted { color: var(--muted); font-size: 0.8rem; }
.footer__bottom {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.social { display: flex; gap: 0.5rem; margin-top: 0.85rem; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold-light) !important;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.social a:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.2); }

.float-wa {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s var(--ease);
}
.float-wa:hover { transform: scale(1.06); color: #fff !important; }

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mt-md { margin-top: 1rem; }
.muted { color: var(--muted); font-size: 0.875rem; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0, 0, 0, 0.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); border: 1px solid var(--card-edge); }
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  line-height: 1;
}

.icon-phone::before { content: "📞 "; font-size: 0.85em; }

.ba-item figcaption { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.4; }

.service-body p:first-child { margin-top: 0; }
