/* ==========================================================
   UZMAN TEKNİK — Site tasarım sistemi (PHP sürümü)
   Next.js globals.css'ten 1:1 aktarılmıştır
   ========================================================== */

/* --- Mini reset (Tailwind preflight karşılığı) --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

:root {
  --navy: #152233;
  --navy-2: #1d3049;
  --steel: #3a6e96;
  --orange: #e15a25;
  --orange-dark: #c24a1a;
  --paper: #f4f5f1;
  --ink: #1b2126;
  --ink-soft: #5a646b;
  --line: #dee1d9;
}

.uz-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
main.flex-1 { flex: 1; }
.uz-page h1,
.uz-page h2,
.uz-page h3,
.uz-page .brand-name {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.uz-page .wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.uz-page section[id] {
  scroll-margin-top: 76px;
}

/* ===== 1. Üst şerit ===== */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
}
.topbar .wrap {
  display: flex;
  align-items: stretch;
}
.topbar .quick-links {
  display: flex;
  flex: 1;
}
.topbar .quick-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}
.topbar .quick-links a svg {
  width: 15px;
  height: 15px;
}
.topbar .quick-links a.ara {
  background: var(--orange);
}
.topbar .quick-links a.ara:hover {
  background: var(--orange-dark);
}
.topbar .quick-links a.wa {
  background: #25d366;
  color: #0b2e1b;
}
.topbar .quick-links a.wa:hover {
  background: #20bd5a;
}
.topbar .quick-links a.yol {
  color: #c7d0d8;
  border-right: none;
}
.topbar .quick-links a.yol:hover {
  color: #fff;
}
.topbar .phone-mini {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-weight: 700;
  font-size: 15px;
  gap: 8px;
}
.topbar .phone-mini svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

/* ===== 2. Sticky menü ===== */
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 18px;
}
.brand-name {
  font-size: 25px;
  line-height: 1;
  color: var(--navy);
}
.brand-name span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--ink-soft);
  margin-top: 3px;
}
nav.main {
  display: flex;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
}
nav.main > ul {
  display: flex;
  gap: 4px;
}
nav.main li {
  position: relative;
}
nav.main > ul > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
}
nav.main > ul > li:hover > a {
  color: var(--orange);
}
nav.main .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 220px;
  box-shadow: 0 10px 24px rgba(20, 30, 40, 0.1);
  border-radius: 3px;
  padding: 6px 0;
  z-index: 5;
}
nav.main li:hover .dropdown {
  display: block;
}
nav.main .dropdown a {
  padding: 9px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  display: block;
}
nav.main .dropdown a:hover {
  background: var(--paper);
  color: var(--navy);
}
.site-cta {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-2);
}
.btn-wa {
  background: #25d366;
  color: #0b2e1b;
}
.btn-wa:hover {
  background: #20bd5a;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-dark);
}

/* Mobil hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ic-close { display: none; line-height: 0; }
.nav-toggle .ic-menu { display: inline-flex; line-height: 0; }
.nav-toggle.is-open .ic-close { display: inline-flex; }
.nav-toggle.is-open .ic-menu { display: none; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav.open {
  display: block;
}
@media (min-width: 961px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  border-bottom: 1px solid var(--paper);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.mobile-nav a:hover {
  background: var(--paper);
  color: var(--orange);
}
.mobile-nav .sub {
  padding-left: 34px;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14px;
}
.mobile-nav .m-group {
  padding: 10px 24px 4px;
  font-size: 11.5px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  font-weight: 700;
  border-bottom: 1px solid var(--paper);
}

/* ===== 3. Hero (fotoğraf zeminli) ===== */
.hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero .tag {
  color: #f2a46a;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.12;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}
.hero p {
  max-width: 520px;
  margin: 18px auto 0;
  color: #d6dee4;
  font-size: 16.5px;
}
.hero .hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero .hero-btns .btn {
  padding: 14px 24px;
  font-size: 15.5px;
}
.hero .btn-navy {
  background: var(--orange);
}
.hero .btn-navy:hover {
  background: var(--orange-dark);
}
.hero-badges {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-badges .hb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #c7d0d8;
  font-weight: 500;
}
.hero-badges .hb svg {
  width: 16px;
  height: 16px;
  color: #f2a46a;
}

/* ===== 4. CTA şeridi ===== */
.promo-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.promo-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-strip h2 {
  font-size: 24px;
  color: var(--navy);
}
.promo-strip p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 520px;
}
.promo-strip .cta-box {
  text-align: center;
}
.promo-strip .cta-box a {
  display: block;
  background: var(--orange);
  color: #fff;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 700;
}
.promo-strip .cta-box a:hover {
  background: var(--orange-dark);
}
.promo-strip .cta-box a small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
}

.uz-page section {
  padding: 64px 0;
}
.section-head {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 {
  font-size: 30px;
  color: var(--navy);
}
.section-head p {
  color: var(--ink-soft);
  margin-top: 10px;
  font-size: 15px;
}

/* ===== 5. Hizmet kartları (fotoğraflı) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(20, 30, 40, 0.08);
}
.service-card .photo {
  height: 150px;
  overflow: hidden;
  background: #e7eae2;
}
.service-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .body {
  padding: 18px 18px 20px;
}
.service-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.service-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--steel);
}
.service-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Neden Biz (istatistikler) ===== */
.why {
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 26px 18px;
  text-align: center;
}
.stat-card .num {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--orange);
}
.stat-card .num small {
  font-size: 26px;
}
.stat-card .lbl {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
.why-item .ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item .ic svg {
  width: 20px;
  height: 20px;
}
.why-item h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.why-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== 6. Hakkımızda (fotoğraf zeminli, koyu) ===== */
.about {
  position: relative;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.about .wrap {
  max-width: 760px;
}
.about h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
}
.about p {
  color: #c7d0d8;
  font-size: 15.5px;
  line-height: 1.75;
}
.about .call-big {
  display: inline-block;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.about .call-big a {
  color: var(--orange);
}

/* ===== Çalışma süreci ===== */
.process {
  background: var(--paper);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 52px 18px 20px;
  text-align: center;
}
.step-card .no {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 52px;
  height: 40px;
  padding: 0 10px;
  background: var(--navy);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 19px;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.step-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.step-card .ic {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card .ic svg {
  width: 21px;
  height: 21px;
}

/* ===== 7. İşimizden kareler (fotoğraf galerisi) ===== */
.gallery {
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 170px;
  background: #e7eae2;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
}
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 16, 22, 0.75), transparent);
}

/* ===== Markalar ===== */
.brands {
  background: var(--paper);
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 22px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--navy-2);
  transition: all 0.2s ease;
}
.brand-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.brands .note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===== Müşteri yorumları ===== */
.testimonials {
  background: #fff;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.testi-card .stars {
  color: #f2a02e;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}
.testi-card .txt {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
}
.testi-card .who {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-card .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}
.testi-card .who b {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
}
.testi-card .who span {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ===== 8. Bölge kartları ===== */
.districts {
  background: var(--paper);
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.district-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.2s ease;
}
.district-card:hover {
  border-color: var(--orange);
}
.district-card h3 {
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.district-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ===== SSS ===== */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.faq-q:hover {
  color: var(--orange);
}
.faq-q .chev {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: transform 0.25s ease;
}
.faq-item.open .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 260px;
}
.faq-a p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== İletişim ===== */
.contact {
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
}
.contact-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.contact-card .sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.cta-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 5px;
  margin-bottom: 12px;
}
.cta-btn svg {
  width: 20px;
  height: 20px;
}
.cta-btn small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
}
.cta-btn:last-of-type {
  margin-bottom: 0;
}
.cta-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.info-item:last-of-type {
  border-bottom: none;
}
.info-item .ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item .ic svg {
  width: 18px;
  height: 18px;
}
.info-item b {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 2px;
}
.info-item span,
.info-item a.val {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.info-item a.val:hover {
  color: var(--orange);
}
.hours {
  margin-top: 4px;
}
.hours .h-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  color: var(--ink-soft);
}
.hours .h-row b {
  color: var(--ink);
  font-weight: 600;
}
.map-box {
  margin-top: 18px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e7eae2;
  min-height: 240px;
}
.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ===== 9. Footer ===== */
footer.site {
  background: #101923;
  color: #9aa7af;
  padding: 52px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 14.5px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.footer-grid a {
  display: block;
  font-size: 13.5px;
  color: #9aa7af;
  padding: 5px 0;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand .brand-name {
  color: #fff;
  font-size: 22px;
}
.footer-brand p {
  font-size: 13px;
  color: #8794a0;
  margin-top: 10px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid #29343d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer-social svg {
  width: 15px;
  height: 15px;
  stroke: #9aa7af;
}
.footer-note {
  border-top: 1px solid #202c36;
  padding: 16px 0;
  font-size: 12.5px;
  color: #748089;
  text-align: center;
}

/* ===== Osem Digital künye şeridi ===== */
.footer-credit {
  border-top: 1px solid #202c36;
  padding: 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #8794a0;
}
.footer-credit .credit-logo {
  display: inline-flex;
  align-items: center;
}
.footer-credit .credit-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.footer-credit .credit-text {
  letter-spacing: 0.2px;
}
.footer-credit .credit-admin {
  color: #5f6b75;
  font-size: 11.5px;
  border: 1px solid #24303a;
  border-radius: 999px;
  padding: 2px 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-credit .credit-admin:hover {
  color: #c7d0d8;
  border-color: #3a4750;
}

.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.fab-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  nav.main {
    display: none;
  }
  .site-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .district-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .topbar .phone-mini {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero {
    padding: 72px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .district-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .promo-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar .quick-links a {
    padding: 11px 14px;
    font-size: 12.5px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 12px;
  }
  .footer-credit {
    flex-direction: column;
    gap: 6px;
  }
}
