/* ============================================================
   Papatya Halı Yıkama — Ana Stil Dosyası
   Mobile-first, semantic, erişilebilir, hafif animasyonlu.
   ============================================================ */

:root {
  /* Marka Renkleri — derin, sofistike ve yüksek kontrastlı premium palet */
  --forest: #1F3A2C;
  --forest-dark: #13251B;
  --forest-mid: #2C4E3B;
  --sage: #A9BFA1;
  --sage-light: #EDF1E8;
  --cream: #F8F4E9;
  --cream-deep: #EFE7D4;
  --daisy: #C79A3A;
  --daisy-dark: #9C7623;
  --daisy-soft: #E4C173;
  --ink: #202821;
  --ink-soft: #5B6259;
  --white: #FFFFFF;

  /* Tipografi */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ölçüler */
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 16px 40px -16px rgba(19, 37, 27, 0.28);
  --shadow-card: 0 8px 24px -10px rgba(19, 37, 27, 0.16);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img, picture { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* mobil sabit bar için boşluk */
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--forest-dark); font-weight: 600; line-height: 1.15; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .container { padding-inline: 32px; }
}

section { padding-block: 64px; }
@media (min-width: 900px) { section { padding-block: 100px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--daisy);
  flex: none;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--daisy);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 10px 24px -10px rgba(37,211,102,.55); }
.btn-whatsapp:hover { background: #1fb958; }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-daisy { background: var(--daisy); color: var(--forest-dark); box-shadow: 0 10px 24px -10px rgba(199,154,58,.6); }
.btn-daisy:hover { background: var(--daisy-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

.header-call.btn-sm { padding: 12px; gap: 0; }
.header-call .header-call-text { display: none; }
@media (min-width: 480px) {
  .header-call.btn-sm { padding: 10px 18px; gap: 8px; }
  .header-call .header-call-text { display: inline; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 233, 0.9);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px -14px rgba(19,37,27,.35);
  border-bottom-color: rgba(19,37,27,.08);
  background: rgba(248, 244, 233, 0.97);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .brand-main { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--forest-dark); }
.brand-text .brand-sub { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; color: var(--daisy-dark); }

.main-nav { display: none; }
@media (min-width: 960px) {
  .main-nav { display: block; }
  .main-nav ul { display: flex; gap: 4px; }
  .main-nav a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    transition: background-color .18s ease, color .18s ease;
  }
  .main-nav a:hover, .main-nav a.active { background: var(--sage-light); color: var(--forest-dark); }
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
}
.hamburger:hover { background: var(--sage-light); }
.hamburger span {
  width: 22px; height: 2px;
  background: var(--forest-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .hamburger { display: none; } }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 24px 20px 40px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.mobile-nav a {
  display: block;
  padding: 16px 18px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 14px;
  color: var(--forest-dark);
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--sage-light); }
.mobile-nav .mobile-cta { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 960px) { .mobile-nav { display: none !important; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: 48px 72px;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding-block: 72px 96px; } }

.hero .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}

.hero-copy .eyebrow { }
.hero-copy h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero-copy .hero-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--daisy-dark);
  margin-bottom: 10px;
}
.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.hero-trust svg { width: 18px; height: 18px; color: var(--forest); flex: none; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.1;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge {
  position: absolute;
  bottom: -18px;
  left: -14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
@media (min-width: 640px) { .hero-media .badge { left: -28px; } }
.hero-media .badge .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  color: var(--forest);
}
.hero-media .badge strong { display: block; font-size: 0.92rem; color: var(--forest-dark); }
.hero-media .badge span { font-size: 0.78rem; color: var(--ink-soft); }

.hero-daisy-deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   HIGHLIGHTS (4 kart)
   ============================================================ */
.highlights { padding-block: 8px 8px; }
.highlights-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px) { .highlights-grid { grid-template-columns: repeat(4, 1fr); } }

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.highlight-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--sage-light);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.highlight-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.highlight-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--sage-light); }
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card .media {
  aspect-ratio: 4 / 3.4;
  background: var(--sage);
  overflow: hidden;
}
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .media img { transform: scale(1.05); }
.service-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.88rem; color: var(--forest);
  min-height: 44px;
  margin-block: -10px;
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.service-card .card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   WHY PAPATYA
   ============================================================ */
.why {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why .section-head h2 { color: var(--white); }
.why .section-head p { color: rgba(248,244,233,.78); }
.why-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: rgba(248,244,233,.06);
  border: 1px solid rgba(248,244,233,.14);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: background-color .2s ease, transform .2s ease;
}
.why-card:hover { background: rgba(248,244,233,.11); transform: translateY(-3px); }
.why-card .num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--daisy);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.why-card h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: rgba(248,244,233,.78); }

/* ============================================================
   HOW IT WORKS (timeline)
   ============================================================ */
.steps-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 820px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 34px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--sage) 0 10px, transparent 10px 20px);
  }
}
.step-item { position: relative; text-align: left; }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-item p { color: var(--ink-soft); font-size: 0.94rem; max-width: 34ch; }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 940px) { .about .container { grid-template-columns: 0.9fr 1.1fr; gap: 60px; } }
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  box-shadow: var(--shadow-soft);
  background: var(--forest);
  position: relative;
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
}
.about-media .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(19,37,27,.92) 0%, rgba(31,58,44,.55) 45%, rgba(199,154,58,.32) 100%);
  mix-blend-mode: multiply;
}
.about-media .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(155deg, rgba(19,37,27,.35), transparent 60%);
  pointer-events: none;
}
.about-copy p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; }
.about-copy .about-lead { font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.about-values li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-light);
  color: var(--forest-dark);
  font-weight: 700; font-size: 0.85rem;
  padding: 9px 16px; border-radius: 999px;
}
.about-values li svg { width: 15px; height: 15px; color: var(--daisy-dark); }

/* ============================================================
   LOCAL / ÜMRANİYE
   ============================================================ */
.local {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.local .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 940px) { .local .container { grid-template-columns: 1fr 0.9fr; gap: 56px; } }
.local-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-soft);
  background: var(--sage-light);
  border: 1px solid var(--sage);
}
.local-media iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9) contrast(1.02); }
.local-copy p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px; max-width: 54ch; }
.local-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.local-areas li {
  background: var(--white);
  border: 1px solid var(--sage);
  color: var(--forest-dark);
  font-weight: 600; font-size: 0.86rem;
  padding: 8px 14px; border-radius: 999px;
}

/* ============================================================
   TESTIMONIALS placeholder
   ============================================================ */
.testimonials { text-align: center; }
.testimonial-placeholder {
  max-width: 620px;
  margin-inline: auto;
  background: var(--white);
  border: 1.5px dashed var(--sage);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.testimonial-placeholder .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.testimonial-placeholder h3 { font-size: 1.2rem; margin-bottom: 8px; }
.testimonial-placeholder p { color: var(--ink-soft); }

/* ============================================================
   BIG CTA
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin-inline: 20px;
  padding: 56px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .cta-band { margin-inline: 32px; padding: 72px 48px; } }
@media (min-width: 1180px) { .cta-band { margin-inline: auto; max-width: var(--container); } }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 14px; max-width: 26ch; margin-inline: auto; }
.cta-band > p { color: rgba(248,244,233,.82); max-width: 46ch; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 20px; }
.cta-band .secondary-phone { color: rgba(248,244,233,.75); font-size: 0.92rem; }
.cta-band .secondary-phone a { font-weight: 700; color: var(--daisy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact .container {
  display: grid;
  gap: 40px;
}
@media (min-width: 940px) { .contact .container { grid-template-columns: 1fr 1fr; gap: 56px; } }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.contact-list .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  background: var(--sage-light);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.contact-list h3 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-list p, .contact-list a { color: var(--ink-soft); font-size: 0.96rem; }
.contact-list a.phone-link { display: inline-block; font-weight: 700; color: var(--forest-dark); padding-block: 8px; margin-block: -8px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3.3;
  border: 1px solid var(--sage);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-dark);
  color: rgba(248,244,233,.82);
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-main { color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
.footer-brand .brand-sub { font-size: 0.6rem; letter-spacing: 0.14em; color: var(--daisy); font-weight: 700; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 0.94rem; color: rgba(248,244,233,.75); }
.footer-col a { display: inline-block; padding-block: 8px; margin-block: -8px; }
.footer-col a:hover { color: var(--daisy); }
.footer-tagline { max-width: 32ch; font-size: 0.94rem; margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(248,244,233,.14);
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(248,244,233,.55);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: 0 -8px 24px -10px rgba(19,37,27,.28);
  border-top: 1px solid var(--sage);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
}
.mobile-cta-bar .call { background: var(--forest); color: var(--white); }
.mobile-cta-bar .whatsapp { background: #25D366; color: var(--white); }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }

/* ============================================================
   SCROLL REVEAL (hafif)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
