:root {
  --rose: #b76e79;
  --rose-dark: #7f3f4c;
  --rose-soft: #efd6d9;
  --blush: #f8ecee;
  --cream: #fff8f2;
  --ivory: #fffdf9;
  --plum: #39222a;
  --ink: #24181d;
  --muted: #79656a;
  --gold: #c49a55;
  --line: #eadcdf;
  --shadow: 0 24px 70px rgba(57, 34, 42, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--plum);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow: 0 12px 24px rgba(183, 110, 121, .28);
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a:hover { color: var(--rose-dark); }

.header-call {
  color: var(--rose-dark);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--plum);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(57, 34, 42, .74), rgba(57, 34, 42, .28) 48%, rgba(255, 248, 242, .1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  color: white;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--plum);
}

.hero h1 {
  margin-top: 14px;
  color: white;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  max-width: 860px;
}

.hero p,
.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--rose-dark); box-shadow: 0 14px 30px rgba(127, 63, 76, .24); }
.btn-secondary { color: var(--rose-dark); background: var(--cream); border-color: var(--line); }
.btn-whatsapp {
  gap: 9px;
  color: white;
  background: #1faf54;
  box-shadow: 0 14px 30px rgba(31, 175, 84, .26);
}
.btn-whatsapp:hover { background: #1a9849; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--cream);
}

.trust-strip strong {
  display: block;
  color: var(--rose-dark);
  font-size: 2.1rem;
  line-height: 1;
}

.trust-strip span { color: var(--muted); font-weight: 700; }

.section,
.page-shell {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.section.soft {
  background: linear-gradient(180deg, var(--blush), var(--cream));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading p,
.page-hero p,
.prose p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 30px);
  max-width: 1060px;
  margin: 0 auto;
}

.service-card,
.location-card,
blockquote,
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(57, 34, 42, .07);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 16px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:nth-child(even) { grid-template-columns: 1fr minmax(0, 46%); }
.service-card:nth-child(even) .service-card-media { order: 2; }
.service-card--no-media { grid-template-columns: 1fr; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 64px rgba(57, 34, 42, .16);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--rose-soft);
  font-weight: 900;
}

.service-card-media {
  position: relative;
  min-height: clamp(230px, 26vw, 310px);
  background: var(--blush);
  overflow: hidden;
}

.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card-media img { transform: scale(1.05); }

.service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(26px, 3.4vw, 48px);
}

.service-index {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--gold);
}

.service-card-body h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.16;
  color: var(--plum);
}

.service-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 56ch;
}

.service-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--rose-dark);
  color: #fff;
  font-weight: 850;
  transition: background .25s ease, gap .25s ease;
}

.service-link:hover { background: var(--plum); gap: 14px; }
.service-link span { transition: transform .25s ease; }
.service-card:hover .service-link span { transform: translateX(4px); }

@media (max-width: 760px) {
  .service-card,
  .service-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-card:nth-child(even) .service-card-media { order: 0; }
  .service-card-media { min-height: 210px; }
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 4vw, 56px);
  background: var(--cream);
}

.image-feature img,
.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature h2 { margin-top: 10px; font-size: clamp(2rem, 4vw, 3.8rem); }
.image-feature p { color: var(--muted); }

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--plum);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.city-cloud,
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.city-cloud a,
.location-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  color: var(--plum);
  font-weight: 800;
}

.city-cloud span,
.location-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
}

/* Mobilde yalnızca en büyük 10 il + Niğde + Aksaray gösterilir; diğerleri "Tüm İlleri Gör" ile açılır */
@media (max-width: 620px) {
  .city-cloud a:not(.is-priority) { display: none; }
}

.center-action { margin-top: 28px; text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(57, 34, 42, .07);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div { padding: 20px; }
.blog-card h2,
.blog-card h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
}
.blog-card p { color: var(--muted); }
.blog-card a { color: var(--rose-dark); font-weight: 850; }
.post-date {
  color: var(--gold);
  font-size: .86rem;
  font-weight: 850;
}

.article-body {
  color: var(--muted);
  white-space: normal;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px;
  color: var(--plum);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(28px, 6vw, 70px);
}

.split h2 { margin-top: 10px; font-size: clamp(2rem, 4vw, 3.5rem); }
.testimonial-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
blockquote { margin: 0; padding: 22px; }
blockquote p { margin-top: 0; color: var(--plum); }
cite { color: var(--rose-dark); font-weight: 850; font-style: normal; }

.faq-list { display: grid; gap: 12px; max-width: 980px; }
details { padding: 18px 20px; }
summary { cursor: pointer; color: var(--plum); font-weight: 850; }
details p { color: var(--muted); }

.page-hero {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, var(--blush), var(--cream));
  border-bottom: 1px solid var(--line);
}

.page-hero.compact { border-radius: 8px; }
.page-hero.two-column {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.page-hero p { color: var(--muted); }

.prose {
  max-width: 920px;
  font-size: 1.08rem;
}

.contact-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-pills a {
  padding: 12px 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  color: var(--rose-dark);
  font-weight: 850;
}

.contact-section { background: var(--cream); }
.lead-form,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { margin: 0; color: var(--muted); font-size: .92rem; }
.alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 8px;
  background: #edf8ef;
  color: #1f6a35;
  border: 1px solid #c9e8d0;
}
.alert-danger { background: #fff1f1; color: #9b1c1c; border-color: #ffd0d0; }

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: var(--plum);
  color: white;
}

.cta-band h2 { margin-top: 8px; color: white; font-size: clamp(1.8rem, 3vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,.76); max-width: 760px; }

.site-footer {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 4vw, 56px) 0;
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(183, 110, 121, .24), transparent 44%),
    radial-gradient(120% 130% at 100% 0%, rgba(196, 154, 85, .14), transparent 42%),
    #1d1318;
  color: rgba(255,255,255,.74);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .brand { color: white; }
.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.66);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.footer-contact a:hover {
  background: rgba(183, 110, 121, .32);
  border-color: rgba(183, 110, 121, .6);
  transform: translateY(-2px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255,255,255,.66);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: clamp(36px, 5vw, 58px) auto 0;
  padding: 22px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 18px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}

.footer-bottom p { margin: 0; }

.footer-credit a {
  color: var(--gold);
  font-weight: 800;
  transition: color .2s ease;
}

.footer-credit a:hover { color: #e6cb92; }

.mobile-contact-bar {
  display: none;
}

.install-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--blush), var(--cream));
}

.install-card {
  width: min(920px, 100%);
  padding: clamp(24px, 5vw, 48px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.install-card h1 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.4rem); }
.install-card p { color: var(--muted); }

@media (max-width: 1180px) {
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto auto;
  }
  .nav-toggle { display: block; justify-self: end; }
  .header-call { display: none; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(14px, 4vw, 28px);
    right: clamp(14px, 4vw, 28px);
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    color: var(--plum);
    background: rgba(255, 253, 249, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    backdrop-filter: blur(18px);
  }
  .site-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }
  .site-nav a:hover {
    background: var(--blush);
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .gallery-grid,
  .blog-grid,
  .testimonial-list,
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-feature,
  .split,
  .page-hero.two-column { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 74px; }
  .hero { min-height: 610px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(57,34,42,.74), rgba(57,34,42,.42)); }
  .hero-content { margin: 0 auto; padding: 80px 0 42px; }
  .hero .hero-actions { display: none; }
  .gallery-grid,
  .blog-grid,
  .testimonial-list,
  .lead-form,
  .form-grid { grid-template-columns: 1fr; }
  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .trust-strip div {
    padding: 14px 6px;
    text-align: center;
  }
  .trust-strip strong {
    font-size: 1.18rem;
  }
  .trust-strip span {
    display: block;
    font-size: .72rem;
    line-height: 1.18;
  }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 249, .94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 34px rgba(57, 34, 42, .12);
    backdrop-filter: blur(16px);
  }
  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    color: white;
    background: var(--rose-dark);
    font-weight: 850;
  }
  .mobile-contact-bar a:last-child {
    color: var(--rose-dark);
    background: var(--cream);
    border: 1px solid var(--line);
  }
}
