/* ============================================================
   Kurumsal Yol Yardım — kurumsalyolyardim.com
   Koyu kurumsal tema · Sarı vurgu · Mobil uyumlu
   ============================================================ */

:root {
  --bg: #0a0d13;
  --bg-2: #0f131c;
  --panel: #141924;
  --panel-2: #1a2130;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f2f4f8;
  --muted: #a7b0c0;
  --yellow: #f5b301;
  --yellow-2: #ffc72c;
  --yellow-dark: #c99200;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Başlıklar ---------- */

h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  text-align: center;
  text-transform: none;
}

.section-title .hl { color: var(--yellow); }

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0.8rem auto 0;
  font-size: 1rem;
}

.section-head { margin-bottom: 2.4rem; }

section { padding: 4.5rem 0; }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn:hover { transform: translateY(-2px); }

.btn-yellow {
  background: linear-gradient(180deg, var(--yellow-2), var(--yellow));
  color: #141000;
  box-shadow: 0 10px 26px rgba(245, 179, 1, 0.28);
}

.btn-yellow:hover { box-shadow: 0 14px 32px rgba(245, 179, 1, 0.4); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-outline:hover { border-color: var(--yellow); color: var(--yellow-2); }

.btn-wa {
  background: #1fae54;
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 174, 84, 0.28);
}

.btn-wa:hover { background: #23c05e; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 13, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.logo svg { width: 46px; height: 46px; flex: none; }

.logo-text { line-height: 1.1; font-weight: 800; letter-spacing: 0.02em; }

.logo-text .l1 { display: block; font-size: 1.02rem; color: #fff; }

.logo-text .l2 { display: block; font-size: 0.86rem; color: var(--yellow); letter-spacing: 0.12em; }

/* Menü */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

.main-nav a:hover, .main-nav a.active { color: #fff; }

.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Header sağ: telefon */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: right;
}

.header-phone .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex: none;
}

.header-phone .icon svg { width: 19px; height: 19px; }

.header-phone .lines { line-height: 1.25; }

.header-phone .t1 { display: block; font-size: 0.74rem; color: var(--muted); }

.header-phone .t2 { display: block; font-weight: 800; font-size: 1.02rem; color: #fff; }

.header-phone:hover .t2 { color: var(--yellow-2); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.99) 0%, rgba(8, 10, 15, 0.96) 34%, rgba(8, 10, 15, 0.62) 60%, rgba(8, 10, 15, 0.28) 100%),
    url("../assets/cekici-banner.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-2);
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  text-transform: uppercase;
  font-weight: 900;
}

.hero h1 .yellow { color: var(--yellow); display: block; }

.hero-banner-line {
  margin-top: 1.2rem;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-left: 4px solid var(--yellow);
  padding-left: 0.9rem;
}

.hero-desc {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================================
   İSTATİSTİKLER
   ============================================================ */

.stats { padding: 0; margin-top: -70px; position: relative; z-index: 5; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.stat-card .s-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex: none;
}

.stat-card .s-icon svg { width: 26px; height: 26px; }

.stat-card .s-num { font-size: 1.45rem; font-weight: 900; color: #fff; line-height: 1.15; }

.stat-card .s-label { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   HİZMET KARTLARI
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); border-color: rgba(245, 179, 1, 0.45); }

.service-card .sv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 1.1rem;
}

.service-card .sv-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; color: #fff; }

.service-card p { font-size: 0.93rem; color: var(--muted); }

.services-cta { text-align: center; margin-top: 2.2rem; }

/* ============================================================
   TANITIM BANNER GÖRSELİ
   ============================================================ */

.promo { padding: 2rem 0; }

.promo-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ============================================================
   HİZMET BÖLGELERİMİZ
   ============================================================ */

.regions { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.regions-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.4rem;
}

.region-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  margin-bottom: 1.5rem;
}

.region-search svg { width: 19px; height: 19px; color: var(--yellow); flex: none; }

.region-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.region-search input::placeholder { color: var(--muted); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.6rem;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.city-grid::-webkit-scrollbar { width: 8px; }
.city-grid::-webkit-scrollbar-track { background: var(--bg); border-radius: 8px; }
.city-grid::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 8px; }

.city-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
  text-align: left;
}

.city-chip::after { content: "›"; color: var(--yellow); font-weight: 800; }

.city-chip:hover { border-color: var(--yellow); color: #fff; }

.city-empty { color: var(--muted); font-size: 0.95rem; padding: 0.5rem 0.2rem; display: none; }

/* ============================================================
   NEDEN BİZ
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-card .f-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex: none;
}

.feature-card .f-icon svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 1.03rem; margin-bottom: 0.4rem; color: #fff; }

.feature-card p { font-size: 0.91rem; color: var(--muted); }

/* ============================================================
   MÜŞTERİ YORUMLARI (SLIDER)
   ============================================================ */

.reviews { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.reviews-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.reviews-topbar .left h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.reviews-topbar .left p { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }

.slider-arrows { display: flex; gap: 0.6rem; }

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.arrow-btn:hover { border-color: var(--yellow); color: var(--yellow-2); }

.arrow-btn svg { width: 20px; height: 20px; }

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--panel-2) transparent;
}

.reviews-track::-webkit-scrollbar { height: 8px; }
.reviews-track::-webkit-scrollbar-track { background: transparent; }
.reviews-track::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 8px; }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.review-card .stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }

.review-card .r-text { color: var(--text); font-size: 0.94rem; flex: 1; }

.review-card .r-meta { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.3rem; }

.review-card .r-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.14);
  border: 1px solid rgba(245, 179, 1, 0.35);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.review-card .r-name { font-weight: 700; font-size: 0.92rem; color: #fff; line-height: 1.3; }

.review-card .r-city { font-size: 0.8rem; color: var(--muted); }

.reviews-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 1rem; }

/* ============================================================
   ALT CTA BANDI
   ============================================================ */

.cta-band {
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.97) 0%, rgba(8, 10, 15, 0.85) 55%, rgba(8, 10, 15, 0.55) 100%),
    url("../assets/cekici-banner.jpg") center / cover no-repeat;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); max-width: 560px; }

.cta-band h2 .hl { color: var(--yellow); }

.cta-band p { color: var(--muted); margin-top: 0.5rem; }

.cta-band .actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  background: #070a0f;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-col .f-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.1rem;
}

.footer-about p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; max-width: 380px; }

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a { color: var(--muted); font-size: 0.94rem; transition: color 0.15s ease; }

.footer-links a:hover { color: var(--yellow-2); }

.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--muted); font-size: 0.94rem; }

.footer-contact li svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }

.footer-contact a:hover { color: var(--yellow-2); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--muted); }

.footer-bottom a:hover { color: var(--yellow-2); }

/* ============================================================
   İÇ SAYFALAR
   ============================================================ */

.page-hero {
  background:
    linear-gradient(90deg, rgba(8, 10, 15, 0.97) 0%, rgba(8, 10, 15, 0.9) 50%, rgba(8, 10, 15, 0.65) 100%),
    url("../assets/cekici-banner.jpg") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}

.page-hero .crumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.page-hero .crumb a:hover { color: var(--yellow-2); }

.page-hero .crumb .sep { margin: 0 0.5rem; color: var(--yellow); }

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

.page-hero p.lead { color: var(--muted); margin-top: 0.8rem; max-width: 700px; }

.page-content { padding: 4rem 0; }

.content-narrow { max-width: 820px; margin: 0 auto; }

.content-narrow p { color: var(--muted); margin-bottom: 1.3rem; font-size: 1.01rem; }

.content-narrow p strong { color: var(--text); }

.content-narrow h2 {
  font-size: 1.5rem;
  margin: 2.4rem 0 1rem;
  color: #fff;
}

.content-narrow h2:first-child { margin-top: 0; }

.content-highlight {
  background: var(--panel);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}

.content-highlight .ch-title { font-weight: 800; color: #fff; font-size: 1.08rem; }

.content-highlight .ch-sub { color: var(--muted); font-size: 0.95rem; margin-top: 0.3rem; }

/* Bilgi kartları (iletişim) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.2rem 0;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
}

.info-card .i-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.info-card .i-icon svg { width: 24px; height: 24px; }

.info-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: #fff; }

.info-card p, .info-card a { color: var(--muted); font-size: 0.94rem; word-break: break-word; }

.info-card a:hover { color: var(--yellow-2); }

/* Hizmet detay listesi */
.service-detail {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}

.service-detail .sv-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245, 179, 1, 0.12);
  border: 1px solid rgba(245, 179, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex: none;
}

.service-detail .sv-icon svg { width: 26px; height: 26px; }

.service-detail h3 { font-size: 1.15rem; color: #fff; margin-bottom: 0.5rem; }

.service-detail p { color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   MOBİL / RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone .lines { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 13, 19, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 4%;
  }

  .main-nav li { border-bottom: 1px solid var(--line); }

  .main-nav li:last-child { border-bottom: none; }

  .main-nav a { display: block; padding: 1rem 0.3rem; font-size: 1.05rem; color: #fff; }

  .main-nav a::after { display: none; }

  .main-nav a.active { color: var(--yellow-2); }

  .hero { min-height: 560px; }

  .hero-inner { padding: 4rem 0 6rem; }

  .cta-band { padding: 2.2rem 1.6rem; }
}

@media (max-width: 640px) {
  section { padding: 3.2rem 0; }

  .stats { margin-top: -50px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }

  .stat-card { flex-direction: column; text-align: center; padding: 1.2rem 0.8rem; gap: 0.6rem; }

  .services-grid, .features-grid, .info-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-actions .btn { flex: 1 1 100%; }

  .review-card { flex: 0 0 86%; }

  .reviews-topbar { flex-direction: column; align-items: flex-start; }

  .service-detail { flex-direction: column; }

  .footer-bottom { justify-content: center; text-align: center; }
}
