/* =========================================================
   Yiğit Duşakabin — Mockup birebir (Beyaz / Gri / Siyah / Gold)
   ========================================================= */
:root {
  --gold: #c9a65b;
  --gold-dark: #b08f45;
  --gold-soft: rgba(201, 166, 91, 0.12);
  --black: #111111;
  --ink: #222;
  --muted: #666;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --header-h: 82px;
  --topbar-h: 38px;
  --radius: 6px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 50px rgba(0, 0, 0, 0.12);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --mobile-bar: 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar);
}
@media (min-width: 901px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  color: var(--black);
  font-weight: 700;
}
p { margin: 0 0 1em; }
.container { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--gold); color: #111; padding: 0.7rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* —— Topbar —— */
.topbar {
  background: #1a1a1a;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a:hover { color: var(--gold); }
.topbar-social { display: flex; gap: 1rem; align-items: center; }

/* —— Header beyaz —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo {
  height: 56px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}
.main-nav { display: flex; align-items: center; gap: 0.05rem; }
.main-nav > a {
  color: #333;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  transition: color 0.2s;
}
.main-nav > a:hover,
.main-nav > a.active { color: var(--gold-dark); }
.nav-cta {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  background: var(--black) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.05rem !important;
  margin-left: 0.55rem !important;
  line-height: 1.15;
  border-radius: 4px;
}
.nav-cta small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,166,91,0.7);
}
.nav-cta strong { font-size: 0.9rem; font-weight: 700; }
.nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto; background: #111;
  transition: 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem 1.45rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 24px rgba(201,166,91,0.35);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-dark { background: var(--black); color: #fff; }
.btn-ghost-dark {
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}
.btn-ghost-dark:hover { background: rgba(0,0,0,0.55); }
.btn-outline, .btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.65);
}
.btn-outline:hover, .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp { background: #25d366; color: #fff; }

/* —— HERO (full-bleed + glass card) —— */
.hero-mock {
  position: relative;
  min-height: 620px;
  height: calc(100svh - var(--header-h) - var(--topbar-h));
  max-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}
.hero-mock__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-mock__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-mock__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.28) 100%);
}
.hero-mock__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  padding: 3.5rem 0;
}
.hero-mock__copy { max-width: 560px; padding-bottom: 1rem; }
.hero-mock h1 {
  color: #fff;
  font-size: clamp(2.05rem, 4.2vw, 3.2rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-mock h1 .gold { color: var(--gold); }
.hero-mock .lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 1.7rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-glass-card {
  justify-self: end;
  width: min(100%, 340px);
  padding: 1.35rem 1.4rem;
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 166, 91, 0.35);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-glass-card ul { display: grid; gap: 0.7rem; }
.hero-glass-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.hero-glass-card .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* —— Stats —— */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stat-item {
  padding: 0.5rem;
}
.stat-item .stat-ico {
  width: 48px; height: 48px;
  margin: 0 auto 0.65rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.15rem;
}
.stat-item .stat-num {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin: 0.2rem 0;
}
.stat-item .stat-label { color: var(--muted); font-size: 0.9rem; margin: 0; }
.stat-stars { color: var(--gold); letter-spacing: 0.06em; font-size: 0.8rem; margin-bottom: 0.15rem; }

/* —— Sections —— */
.section { padding: 5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: #141414;
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  margin-bottom: 0.55rem;
}
.section-head p { color: var(--muted); margin: 0; }
.section-dark .section-head .eyebrow { color: var(--gold); }
.section-dark .section-head p { color: rgba(255,255,255,0.55); }

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3.25rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow);
}
.about-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-prose h2 { font-size: clamp(1.65rem, 2.8vw, 2.2rem); }
.about-prose p { color: #444; font-size: 0.98rem; }
.about-prose strong { color: var(--black); }
.about-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-icons li {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #555;
  line-height: 1.35;
}
.about-icons .ico {
  width: 46px; height: 46px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-soft);
  border: 1px solid rgba(201,166,91,0.35);
  color: var(--gold-dark);
  font-size: 1.05rem;
}

/* —— Service cards (mockup: image top + white body) —— */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.svc-card__img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body {
  padding: 1.4rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.svc-card__title .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(201,166,91,0.4);
  color: var(--gold-dark);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.svc-card__title h3 {
  font-size: 1.25rem;
  margin: 0;
}
.svc-card__list {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  flex: 1;
}
.svc-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #555;
}
.svc-card__list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.85rem;
}
.svc-card .btn { width: 100%; margin-top: auto; }

/* —— Why us —— */
.why-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
}
.why-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
}
.why-item .ring {
  width: 64px; height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
.why-item:hover .ring {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}
.why-item h3 {
  font-size: 0.82rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

/* —— Gallery grid —— */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.gallery-filters button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 1.1rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  border-radius: 4px;
  transition: 0.25s;
}
.gallery-filters button.is-active,
.gallery-filters button:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: none; }
.gallery-item.is-hidden { display: none; }

/* —— Process steps —— */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0.5rem;
}
.process-step .num {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--line);
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  border-top: 2px dashed var(--line);
  z-index: 0;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* —— Districts —— */
.district-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: stretch;
}
.district-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.district-buttons a {
  display: grid; place-items: center;
  min-height: 54px;
  padding: 0.65rem 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  transition: 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.district-buttons a:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.map-embed {
  min-height: 320px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* —— Testimonials + FAQ —— */
.split-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: start;
}
.testimonial-slide {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  min-height: 240px;
  box-shadow: var(--shadow);
}
.testimonial-slide.is-active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.testimonial-slide .stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 0.08em; }
.testimonial-slide blockquote {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  color: #444;
  font-style: italic;
  line-height: 1.55;
}
.testimonial-slide .who { font-weight: 700; }
.testimonial-slide .who span {
  display: block; font-weight: 500; color: var(--muted); font-size: 0.85rem;
}
.slider-nav { display: flex; gap: 0.5rem; margin-top: 1rem; }
.slider-nav button {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.05rem;
}
.slider-nav button:hover { border-color: var(--gold); color: var(--gold-dark); }

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--black);
  font-size: 0.95rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold-dark); font-size: 1.15rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0.65rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— CTA —— */
.cta-full {
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-full-bg { position: absolute; inset: 0; z-index: 0; }
.cta-full-bg img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.32);
}
.cta-full .container { position: relative; z-index: 1; }
.cta-full h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  max-width: 18ch;
  margin: 0 auto 1.4rem;
}
.cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem;
}

/* —— Blog —— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .body { padding: 1.1rem 1.15rem 1.25rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.blog-list { display: grid; gap: 1.5rem; }
.blog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.blog-row img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; }
.blog-row h2 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.blog-row h2 a:hover { color: var(--gold-dark); }
.blog-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; color: var(--gold-dark);
}
.link-arrow::after { content: "→"; transition: transform 0.25s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* —— Inner page hero —— */
.page-hero {
  background: #141414;
  color: #fff;
  padding: 3.25rem 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.85rem, 3.8vw, 2.7rem); }
.page-hero p { color: rgba(255,255,255,0.68); margin: 0; max-width: 50ch; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.9rem;
}
.breadcrumb a:hover { color: var(--gold); }

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 2.25rem;
  align-items: start;
}
.prose h2 { font-size: 1.5rem; margin-top: 1.5rem; }
.prose h3 { font-size: 1.12rem; margin-top: 1.15rem; }
.prose p, .prose li { color: #444; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.side-panel {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--black); color: rgba(255,255,255,0.85);
  padding: 1.5rem; border-radius: 8px;
}
.side-panel h3 { color: #fff; }
.side-panel a { color: var(--gold); font-weight: 600; }
.side-panel .btn { width: 100%; margin-top: 0.5rem; }
.side-meta { display: grid; gap: 0.55rem; margin: 1rem 0; font-size: 0.92rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%; padding: 0.85rem 0.95rem;
  border: 1px solid var(--line); background: #fff;
  font: inherit; border-radius: 4px;
}
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
textarea { min-height: 140px; resize: vertical; }
.form-note {
  padding: 0.9rem 1rem; margin-bottom: 1rem;
  background: var(--gold-soft); border-left: 3px solid var(--gold); font-size: 0.92rem;
}
.form-error { background: #fde8e8; border-left-color: #b42828; color: #7a1c1c; }

/* —— Footer —— */
.site-footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.7);
  padding-top: 3.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 1.15fr 1.05fr;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
}
.site-footer h3 { color: #fff; font-size: 0.92rem; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-tagline {
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin: 0.65rem 0;
}
.footer-links, .footer-contact { display: grid; gap: 0.4rem; font-size: 0.88rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-map {
  min-height: 170px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
}
.footer-map iframe { width: 100%; height: 170px; border: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  font-size: 0.84rem;
}
.footer-bottom p { margin: 0; }

.float-wa {
  position: fixed; right: 1.1rem; bottom: 1.1rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
  z-index: 900;
}
.float-wa:hover { transform: scale(1.05); }

.mobile-actions {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  height: var(--mobile-bar);
  background: #111;
  grid-template-columns: 1fr 1fr;
}
.mobile-actions a {
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-actions a:last-child { border: 0; background: #25d366; }
.mobile-actions a.phone { color: var(--gold); }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.center-btn { text-align: center; margin-top: 2rem; }

/* Admin */
.admin-body { background: #111; color: #eee; font-family: var(--font); }
.admin-wrap { width: min(960px, calc(100% - 2rem)); margin: 2rem auto; }
.admin-card { background: #1a1a1a; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td {
  text-align: left; padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top;
}
.admin-table th { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.badge { display: inline-block; padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 700; background: var(--gold); color: #111; }
.badge-muted { background: rgba(255,255,255,0.15); color: #fff; }

/* —— Responsive —— */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-row { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .about-icons { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero-mock { height: auto; min-height: 560px; max-height: none; }
  .hero-mock__inner,
  .about-grid,
  .svc-grid,
  .process-flow,
  .district-layout,
  .split-faq,
  .blog-grid,
  .content-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .district-buttons { grid-template-columns: 1fr 1fr; }
  .hero-glass-card { justify-self: start; width: 100%; margin-top: 0.5rem; }
  .process-step:not(:last-child)::after { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
    z-index: 1;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav > a { font-size: 1.15rem; }
  .nav-cta { margin: 1rem 0 0 !important; align-items: center; }
  .topbar { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-actions { display: grid; }
  .float-wa { display: none; }
  .blog-row { grid-template-columns: 1fr; }
  .about-media { min-height: 300px; }
}
@media (max-width: 640px) {
  .why-row { grid-template-columns: 1fr 1fr; }
  .about-icons { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
}
