:root {
  --sage-deep:  #3d5738;
  --sage:       #6b8c5a;
  --sage-light: #94af85;
  --sage-pale:  #dfe8da;
  --sage-mist:  #f3f6f1;
  --ink:        #1d251b;
  --gray:       #6e6e6e;
  --white:      #ffffff;
  --container-pad: max(5vw, calc((100vw - 1360px) / 2));
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Lato", sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV & HEADER ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: stretch;
  padding: 0 var(--container-pad);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(61,87,56,0.08);
  transition: box-shadow 0.3s;
}
.nav-logo { flex: 0 0 auto; display: flex; align-items: center; padding: 0.5rem 0; }
.nav-logo img { height: 90px; width: auto; display: block; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 70px; }

.nav-right-container {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-left: 3rem;
}
.topbar-new {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0;
  font-size: 0.75rem; font-weight: 500; color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.topbar-right { display: flex; gap: 1.5rem; }
.topbar-right a { color: var(--gray); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.topbar-right a:hover { color: var(--sage-deep); }
.topbar-left { display: flex; align-items: center; gap: 0.4rem; color: var(--sage); }

nav.scrolled .topbar-new { height: 0; padding: 0; opacity: 0; overflow: hidden; border-color: transparent; }

.nav-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex: 1; padding: 0.8rem 0; transition: padding 0.3s;
}
nav.scrolled .nav-bottom { padding: 0.5rem 0; }

.nav-links { flex: 1; display: flex; gap: 0.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: #4b5563; text-decoration: none;
  transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.8rem; border-radius: 0.4rem;
}
.nav-links a:hover { color: var(--sage-deep); background: rgba(223, 232, 218, 0.4); }

.nav-links li { position: relative; }
.has-dropdown > a { gap: 0.2rem; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  min-width: 280px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(61,87,56,0.1);
  padding: 0.5rem 0; list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  padding: 0.7rem 1.5rem; font-size: 0.92rem; color: var(--gray);
  display: flex; align-items: center; gap: 0.6rem; transition: all 0.2s;
}
.dropdown-menu li a:hover { background: rgba(223, 232, 218, 0.4); color: var(--sage-deep); padding-left: 1.8rem; }

.mobile-cta { display: none; }
.nav-right { flex: 0 0 auto; display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  background: rgba(61, 87, 56, 0.08) !important; 
  color: var(--sage-deep) !important;
  padding: 0.55rem 1.4rem; border-radius: 0.4rem;
  font-weight: 600;
  border: 1px solid rgba(61, 87, 56, 0.15);
  transition: all 0.3s ease !important;
}
.nav-cta:hover { 
  background: var(--sage-deep) !important; 
  color: var(--white) !important;
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(61, 87, 56, 0.15);
}
.nav-cta i { color: #f57c00; }
.nav-cta:hover i { color: var(--white); }
.mobile-nav-actions { display: none; }
.mobile-menu-header, .mobile-menu-footer { display: none; }
.ig-label { display: none; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 110; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--sage-deep);
  margin: 5px 0; transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 130px; padding-bottom: 4rem;
  padding-left: var(--container-pad); padding-right: var(--container-pad);
  background: linear-gradient(135deg, #e8f5f1 0%, #dcf0e9 100%);
  align-items: center; gap: 4rem; overflow: hidden;
}
/* Hero Blobs */
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(40px); opacity: 0.55; z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-blob-1 { width: 550px; height: 550px; background: rgba(255,255,255,0.85); top: -120px; left: -80px; animation: blobFloat 10s ease-in-out infinite; }
.hero-blob-2 { width: 420px; height: 420px; background: rgba(160,210,185,0.6); bottom: -60px; right: 5%; animation: blobFloat 14s ease-in-out infinite reverse; }
.hero-blob-3 { width: 320px; height: 320px; background: rgba(255,255,255,0.7); top: 25%; left: 38%; animation: blobFloat 9s ease-in-out infinite 2s; }
.hero-blob-4 { width: 280px; height: 280px; background: rgba(200,235,215,0.65); top: 10%; right: 20%; animation: blobFloat 12s ease-in-out infinite 1s; }
.hero-blob-5 { width: 240px; height: 240px; background: rgba(255,255,255,0.75); bottom: 10%; left: 20%; animation: blobFloat 8s ease-in-out infinite 4s; }
@keyframes blobFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-left { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.6); color: var(--sage-deep);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.4rem 1rem; border-radius: 2rem;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 300; line-height: 1.12; color: var(--ink); margin-bottom: 1.4rem;
}
.hero-title em { 
  font-style: italic; color: var(--sage-deep); display: inline-block;
  padding-bottom: 0.2rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M2 15 Q 50 22 98 8" stroke="%23f57c00" stroke-width="7" stroke-linecap="round" fill="none"/></svg>') no-repeat bottom left / 100% 12px;
}
.hero-desc { font-size: 1.05rem; font-weight: 400; color: var(--gray); line-height: 1.6; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--sage-deep); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 0.5rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(61,87,56,0.25);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn-outline {
  color: var(--sage-deep); border: 2px solid var(--sage-deep);
  padding: 0.8rem 1.8rem; border-radius: 0.5rem;
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s; background: transparent; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { background: rgba(61,87,56,0.05); }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.5rem; }
.stat-item { display: flex; align-items: center; gap: 0.8rem; }
.stat-item strong { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--sage); line-height: 1; display: block; }
.stat-item span { font-size: 0.85rem; color: var(--gray); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; text-align: left; }

.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/5;
  border-radius: 15rem; 
  background: var(--white); box-shadow: 0 25px 60px rgba(61,87,56,0.12);
  display: flex; align-items: center; justify-content: center;
  padding: 0.8rem;
}
.hero-image {
  width: 100%; height: 100%; 
  border-radius: 15rem;
  object-fit: cover; object-position: center top;
}
.badge-decoration {
  position: absolute; bottom: -45px; left: -5px;
  max-width: 180px; z-index: 1; pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.floating-badge {
  position: absolute; bottom: -20px; left: 120px;
  background: var(--white); border-radius: 1rem; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); z-index: 2;
}
.badge-icon {
  width: 40px; height: 40px; background: #e2f4ed; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.badge-text { display: flex; flex-direction: column; text-align: left; }
.badge-text strong { font-size: 0.95rem; color: var(--ink); font-weight: 800; }
.badge-text span { font-size: 0.75rem; color: var(--gray); }

/* ── SECTIONS COMMON ── */
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #e2f4ed; color: var(--sage-deep);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.4rem 1.2rem; border-radius: 2rem; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray); max-width: 600px; line-height: 1.6;
}

/* ── SECTIONS COMMON ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 300;
  line-height: 1.2; margin-bottom: 3.5rem; color: var(--ink);
}
.section-header.center { padding: 5rem var(--container-pad) 3rem; text-align: center; }
.section-header.center .section-title, .section-header.center .section-desc { max-width: 680px; margin-left: auto; margin-right: auto; }
.section-title em { font-style: italic; color: var(--sage); }

/* ── SERVICES ── */
.services { padding: 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--sage-pale); border-radius: 1.2rem; overflow: hidden;
}
.service-card { background: var(--white); padding: 2.2rem 1.8rem; transition: background 0.3s; }
.service-card:hover { background: var(--sage-mist); }
.service-icon {
  width: 46px; height: 46px; background: var(--sage-pale);
  border-radius: 0.7rem; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.2rem; font-size: 1.3rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(148,175,133,0.4); }
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.86rem; color: var(--gray); line-height: 1.7; }

/* ── NEW SERVICE CARDS ── */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 0 var(--container-pad) 5rem;
}
.svc-card {
  display: flex; flex-direction: column; gap: 1.2rem;
  background: var(--sage-mist);
  border-radius: 1.2rem;
  padding: 2rem 1.8rem; text-decoration: none;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 12px rgba(61,87,56,0.05);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--svc-color) 15%, transparent), transparent 70%);
  pointer-events: none;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--svc-color, #3d5738);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 0.8rem;
  background: color-mix(in srgb, var(--svc-color) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--svc-color);
  transition: background 0.3s;
}
.svc-card:hover .svc-icon-wrap { background: color-mix(in srgb, var(--svc-color) 20%, transparent); }
.svc-body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.svc-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.82rem; font-weight: 700; color: var(--svc-color);
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 0.6rem; }

/* Slider */
.svc-slider {
  border-radius: 1.2rem; overflow: hidden; position: relative;
  min-height: 280px; height: 100%; cursor: pointer;
}
.svc-slides { width: 100%; height: 100%; min-height: 280px; position: relative; }
.svc-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.7s ease;
}
.svc-slide.active { opacity: 1; }
.svc-slide-content {
  text-align: center; color: #fff; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.svc-slide-content i { font-size: 3rem; opacity: 0.9; }
.svc-slide-content strong { font-size: 1.4rem; font-weight: 800; }
.svc-slide-content p { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; max-width: 200px; }
.svc-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.svc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
}
.svc-dot.active { background: #fff; transform: scale(1.3); }

/* ── ABOUT ── */
.about {
  padding: 7rem var(--container-pad); background: var(--sage-mist);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center;
}

/* Ana görsel alanı — organik kırpma + yatay format */
.about-img {
  aspect-ratio: 4/3;
  border-radius: 3rem 6rem 3rem 6rem / 3rem 3rem 6rem 6rem;
  background: linear-gradient(145deg, var(--sage-pale), rgba(148,175,133,0.5));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
  padding: 0;
  box-shadow: 0 20px 60px rgba(61,87,56,0.14);
}

/* Dekoratif şekil 1 — sağ üst büyük daire */
.about-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.about-shape-1 {
  width: 55%; height: 55%;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(107,140,90,0.18) 0%, transparent 70%);
  animation: shapeFloat 9s ease-in-out infinite;
}
.about-shape-2 {
  width: 38%; height: 38%;
  bottom: 8%; left: -6%;
  background: radial-gradient(circle, rgba(61,87,56,0.12) 0%, transparent 70%);
  animation: shapeFloat 12s ease-in-out infinite 2s reverse;
}
.about-shape-3 {
  width: 22%; height: 22%;
  top: 30%; left: 10%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  animation: shapeFloat 7s ease-in-out infinite 1s;
}
@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(5deg); }
}

/* Hasta / danışan fotoğrafı kabı */
.about-client-photo {
  width: 100%; height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}
.about-client-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
  border-radius: inherit;
  transform: scale(1.08);
  transition: transform 0.6s ease;
}
.about-img:hover .about-client-photo img {
  transform: scale(1.13);
}

/* Fotoğraf yokken görünen placeholder */
.about-photo-placeholder {
  display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; height: 100%; min-height: 300px;
  color: var(--sage-deep);
  background: linear-gradient(145deg, var(--sage-pale) 0%, rgba(148,175,133,0.45) 100%);
  border-radius: inherit;
}
.about-photo-placeholder i   { font-size: 3.5rem; opacity: 0.55; }
.about-photo-placeholder span { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; }
.about-photo-placeholder small { font-size: 0.72rem; opacity: 0.5; font-family: monospace; }

/* Başarı rozeti — sol üst */
.about-badge-top {
  position: absolute; top: -18px; left: 18px;
  background: var(--white);
  border-radius: 2rem;
  padding: 0.55rem 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(61,87,56,0.13);
  font-size: 0.8rem; font-weight: 700; color: var(--sage-deep);
  z-index: 3;
  animation: shapeFloat 6s ease-in-out infinite 0.5s;
}
.about-badge-top i { color: #e2526b; font-size: 1rem; }

/* ── Sağ alt bilgi rozeti ── */
.about-info-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--white);
  border-radius: 1.2rem;
  padding: 0.8rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(61,87,56,0.16);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  cursor: default;
}
.about-info-badge:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(61,87,56,0.22);
}
.about-info-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #e2f4ed, #c9eada);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--sage-deep);
  flex-shrink: 0;
}
.about-info-text {
  display: flex; flex-direction: column;
}
.about-info-text strong {
  font-size: 0.75rem; font-weight: 800; color: var(--ink);
  white-space: nowrap;
}
.about-info-text span {
  font-size: 0.65rem; color: var(--sage); font-weight: 600;
}

.about-content blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem; font-style: italic; font-weight: 300;
  color: var(--sage-deep); line-height: 1.5;
  border-left: 3px solid var(--sage-light);
  padding-left: 1.3rem; margin: 1.3rem 0 1.8rem;
}
.about-content p { font-size: 0.92rem; color: var(--gray); line-height: 1.85; margin-bottom: 0.8rem; }
.about-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chip {
  background: var(--sage-pale); color: var(--sage-deep);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.3rem 0.85rem; border-radius: 2rem;
}

/* ── TESTIMONIALS – Google Reviews Style ── */
.testimonials {
  padding: 6rem var(--container-pad);
  background: var(--white);
}

/* Başlık satırı */
.testimonials-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.8rem;
}

/* Google özet kutusu */
.google-summary-box {
  display: flex; align-items: center; gap: 0.8rem;
  background: #fff; border: 1px solid #e8eaed;
  border-radius: 1rem; padding: 0.9rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.gsb-google-logo { width: 28px; height: 28px; flex-shrink: 0; }
.gsb-score {
  font-size: 1.4rem; font-weight: 800; color: #202124;
  line-height: 1; margin-left: 0.2rem;
}
.gsb-stars { display: flex; gap: 1px; }
.gsb-count { font-size: 0.75rem; color: #5f6368; white-space: nowrap; }

/* Yıldız */
.gstar { color: #FBBC05; font-size: 0.95rem; line-height: 1; }

/* Slider wrapper */
.reviews-slider-wrap {
  position: relative;
  display: flex; align-items: center; gap: 0.8rem;
}

/* Ok butonları */
.rev-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid #e8eaed;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #5f6368;
  transition: all 0.2s; z-index: 2;
}
.rev-arrow:hover { background: #f8f9fa; border-color: #dadce0; color: #202124; }
.rev-arrow:disabled { opacity: 0.35; cursor: default; }

/* Viewport — taşanı gizler */
.reviews-viewport {
  flex: 1;
  overflow: hidden;
}

/* Track — kartları yan yana dizer */
.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}

/* Tek kart */
.testimonial-card {
  flex: 0 0 calc(25% - 0.75rem);   /* 4 kart masaüstü */
  min-width: 0;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Kart üst satır: avatar + isim + Google ikonu */
.tc-header {
  display: flex; align-items: center; gap: 0.7rem;
}
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tc-meta { flex: 1; min-width: 0; }
.tc-meta strong { font-size: 0.85rem; color: #202124; display: block; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-date { font-size: 0.7rem; color: #5f6368; margin-top: 1px; }

/* Küçük Google ikonu — sabit boyut! */
.tc-google-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Yıldız satırı */
.tc-stars { display: flex; gap: 1px; }

/* Yorum metni */
.tc-text {
  font-size: 0.82rem; color: #3c4043; line-height: 1.65;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* Etiket */
.tc-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  color: #3d5738; background: #e8f5e9;
  padding: 0.25rem 0.65rem; border-radius: 2rem;
  width: fit-content;
}

/* Nokta navigasyonu */
.rev-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.8rem;
}
.rev-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dadce0; cursor: pointer; border: none;
  transition: all 0.3s; padding: 0;
}
.rev-dot.active {
  background: #3d5738; transform: scale(1.3);
}

/* Tablet: 2 kart */
@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc(50% - 0.5rem); }
}

/* Mobil: 1 kart */
@media (max-width: 560px) {
  .testimonial-card { flex: 0 0 100%; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .rev-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
}



/* ── SAĞLIKLI TARİFLER ── */
.recipes-section {
  padding: 7rem var(--container-pad);
  background: var(--sage-mist);
}
.recipes-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem;
}
.recipes-header .section-label { color: var(--sage); }
.recipes-header .section-title { color: var(--ink); }
.recipes-header .section-title em { color: var(--sage-deep); }
.recipes-header .btn-ghost { color: var(--sage-deep) !important; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.recipe-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }

/* Fotoğraf alanı */
.recipe-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.recipe-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.recipe-card:hover .recipe-img-wrap img { transform: scale(1.07); }
.recipe-emoji-badge {
  position: absolute; top: 0.7rem; left: 0.7rem;
  font-size: 1.6rem; line-height: 1;
  background: rgba(255,255,255,0.92);
  border-radius: 0.5rem;
  padding: 0.2rem 0.4rem;
  backdrop-filter: blur(4px);
}
.recipe-img-wrap .recipe-badge {
  position: absolute; bottom: 0.7rem; right: 0.7rem;
  border-radius: 0.4rem;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 0.6rem;
  backdrop-filter: blur(4px);
  width: auto;
}

/* Kart gövde metni */
.recipe-body {
  padding: 1.1rem 1.1rem 1rem;
  display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}

.recipe-emoji {
  font-size: 2.8rem; line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}
.recipe-card:hover .recipe-emoji { transform: scale(1.15) rotate(-5deg); }

.recipe-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2rem;
  width: fit-content;
}
.recipe-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.25;
  margin: 0;
}
.recipe-card p {
  font-size: 0.78rem; color: var(--gray); line-height: 1.6; flex: 1; margin: 0;
}
.recipe-meta {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.recipe-meta span {
  font-size: 0.68rem; color: #555;
  background: #f0f0f0; padding: 0.18rem 0.5rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.2rem;
}
.recipe-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; font-weight: 700; color: var(--rc, #3d5738);
  padding-top: 0.4rem; border-top: 1px solid rgba(0,0,0,0.06);
  transition: gap 0.2s;
}
.recipe-card:hover .recipe-link { gap: 0.6rem; }

/* ── BLOG ── */
.blog-section {
  padding: 7rem var(--container-pad);
  background: var(--white);
}
.blog-section-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem;
}

/* 2 sütunlu düzen: sol büyük, sağ sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

/* Sol büyük kart */
.blog-featured {
  background: var(--white); border-radius: 1.4rem;
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--sage-pale);
  box-shadow: 0 4px 20px rgba(61,87,56,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.blog-featured:hover { transform: translateY(-5px); box-shadow: 0 16px 45px rgba(61,87,56,0.13); }

.blog-featured-thumb {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-featured-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.blog-featured:hover .blog-featured-thumb img { transform: scale(1.05); }
.blog-featured-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  padding: 1.2rem;
}
.blog-featured-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18); padding: 0.3rem 1rem; border-radius: 0.4rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  backdrop-filter: blur(4px);
}

.blog-featured-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-featured-date { font-size: 0.75rem; color: var(--sage); display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-featured-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600;
  line-height: 1.25; color: var(--ink); margin: 0;
}
.blog-featured-body p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; flex: 1; margin: 0; }
.blog-featured-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-featured-tags span {
  font-size: 0.7rem; background: var(--sage-pale);
  color: var(--sage-deep); padding: 0.25rem 0.6rem; border-radius: 0.4rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.83rem; font-weight: 700; color: var(--sage-deep);
  padding-top: 0.4rem; border-top: 1px solid var(--sage-pale);
  transition: gap 0.2s;
}
.blog-featured:hover .blog-read-more { gap: 0.7rem; }

/* Sağ sidebar: 4 mini kart */
.blog-sidebar {
  display: flex; flex-direction: column; gap: 0.9rem;
}
.blog-mini-card {
  background: var(--white); border-radius: 0.6rem;
  border: 1px solid var(--sage-pale);
  padding: 0.8rem;
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none; color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(61,87,56,0.05);
  overflow: hidden;
}
.blog-mini-card:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(61,87,56,0.1); }

/* Mini kart fotoğraf */
.blog-mini-img {
  width: 70px; height: 70px; border-radius: 0.5rem;
  overflow: hidden; flex-shrink: 0;
}
.blog-mini-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.blog-mini-card:hover .blog-mini-img img { transform: scale(1.08); }
.blog-mini-body { min-width: 0; }
.blog-mini-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.blog-mini-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.3;
  margin: 0 0 0.3rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-mini-date { font-size: 0.68rem; color: var(--gray); }

/* Btn-ghost */
.btn-ghost {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }

/* Responsive */
@media (max-width: 900px) {
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .recipes-grid { grid-template-columns: 1fr; }
}



/* ── FAQ & CTA COMBINED ── */
.faq-cta-wrapper {
  padding: 7rem var(--container-pad); background: var(--sage-mist);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: start;
}
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid var(--sage-pale); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem; font-weight: 600;
  color: var(--ink); text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--sage); }
.faq-question .icon { font-size: 1.4rem; transition: transform 0.3s; color: var(--sage); font-style: normal; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; padding-bottom: 1.2rem; }

/* ── CTA CARD ── */
.cta-card {
  background: var(--sage-deep); border-radius: 2rem; padding: 4rem 3rem;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
  box-shadow: 0 15px 40px rgba(61,87,56,0.15);
}
.cta-card::before {
  content: ""; position: absolute; top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(148,175,133,0.18) 0%, transparent 60%);
}
.cta-logo { height: 70px; margin: 0 auto 1.5rem; opacity: 0.85; filter: brightness(10); display: block; position: relative; z-index: 1; }
.cta-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 300;
  color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1;
}
.cta-card h2 em { font-style: italic; color: var(--sage-light); }
.cta-card > p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.appointment-form {
  margin: 0 auto; position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.appointment-form input, .appointment-form select {
  width: 100%; padding: 0.85rem 1.2rem; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem; background: rgba(255,255,255,0.1); color: var(--white);
  font-family: "Lato", sans-serif; font-size: 0.88rem;
  outline: none; transition: border 0.2s, background 0.2s;
}
.appointment-form input::placeholder { color: rgba(255,255,255,0.5); }
.appointment-form select { appearance: none; -webkit-appearance: none; }
.appointment-form select option { color: var(--ink); background: var(--white); }
.appointment-form input:focus, .appointment-form select:focus { border-color: var(--sage-light); background: rgba(255,255,255,0.18); }
.btn-white {
  background: var(--white); color: var(--sage-deep);
  padding: 1rem; border-radius: 0.5rem;
  font-size: 0.92rem; font-weight: 700; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; transition: all 0.25s;
  position: relative; z-index: 1; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-family: "Lato", sans-serif;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* WhatsApp alternatif */
.cta-whatsapp-alt {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap;
}
.cta-whatsapp-alt span {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
.btn-whatsapp-sm {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #25D366; color: #fff;
  padding: 0.55rem 1.2rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer;
}
.btn-whatsapp-sm:hover { background: #20b857; transform: translateY(-2px); }


/* ── FOOTER MODERN ── */
.footer-modern {
  background: var(--ink); color: rgba(255,255,255,0.65);
  padding: 5rem var(--container-pad) 2rem;
  font-size: 0.9rem; line-height: 1.8;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-col h4 {
  color: var(--white); font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.brand-col p { margin-top: 1.5rem; max-width: 320px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem; text-align: center; font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: auto; width: auto; max-width: 180px; filter: brightness(0) invert(1); opacity: 1; display: block; }

/* Footer Social Icons */
.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.65);
  transition: all 0.25s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--sage); color: #fff;
  border-color: var(--sage); transform: translateY(-3px);
}

/* Footer contact col icons */
.footer-col.contact-col ul li {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-col.contact-col ul li i {
  color: var(--sage-light); font-size: 0.95rem; flex-shrink: 0;
}

/* ── FLOATING CONTACT WIDGET ── */
.float-widget {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.7rem; z-index: 9999;
}

/* Bildirim balonu */
.float-bubble {
  background: #fff;
  border-radius: 1rem 1rem 0 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.78rem; font-weight: 600; color: #333;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  max-width: 220px; line-height: 1.4;
  opacity: 0; transform: translateY(8px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  position: relative;
}
.float-bubble::after {
  content: ''; position: absolute;
  bottom: -8px; right: 12px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
}
.float-bubble.show {
  opacity: 1; transform: translateY(0) scale(1);
}

/* Buton grubu — yatay */
.float-actions {
  display: flex; flex-direction: row; gap: 0.5rem; align-items: center;
}

/* Tek buton */
.float-btn {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.78rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer; border: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.float-btn i, .float-btn svg { font-size: 1.05rem; flex-shrink: 0; }

/* Renk varyantları */
.float-phone { background: var(--sage-deep); color: #fff; }
.float-wa    { background: #25D366; color: #fff; }
.float-appt  { background: var(--ink); color: #fff; }

/* Mobil: iconları gizle metni kısalt */
@media (max-width: 560px) {
  .float-actions { flex-direction: column; align-items: flex-end; gap: 0.4rem; }
  .float-btn { padding: 0.55rem 1rem; font-size: 0.72rem; }
  .float-bubble { max-width: 170px; font-size: 0.72rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulseLink { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes drawUnderline {
  0%, 3%  { background-size: 0% 12px; }
  40%     { background-size: 100% 12px; }
  92%, 97% { background-size: 100% 12px; }
  100%    { background-size: 0% 12px; }
}
@keyframes iconHealthColors {
  0%, 100% { color: var(--sage-deep); transform: scale(1); }
  33% { color: #4CAF50; transform: scale(1.2) rotate(-8deg); }
  66% { color: #F57C00; transform: scale(1.2) rotate(8deg); }
}
@keyframes shimmerAnim {
  0% { background-position: 250% center; }
  100% { background-position: -50% center; }
}

.shimmer-text {
  background: linear-gradient(120deg, var(--sage) 35%, #ffffff 45%, var(--sage) 55%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerAnim 5s infinite linear;
}

.nav-pulse { animation: pulseLink 3s infinite ease-in-out; display: inline-flex; transform-origin: center; align-items: center; gap: 0.4rem; color: var(--ink) !important; }
.nav-pulse i { animation: iconHealthColors 3s infinite ease-in-out; display: inline-block; }

/* ══════════════════════════════════════════════════════════════════════════
   DETAIL PAGES  (Service, Recipe, Blog)
   ══════════════════════════════════════════════════════════════════════ */

/* ── Detail Hero ── */
.detail-hero {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 6rem var(--container-pad) 3.5rem;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.detail-hero:hover .detail-hero-bg { transform: scale(1.03); }
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(29,37,27,0.25) 0%, rgba(29,37,27,0.82) 100%);
}
.detail-hero-content {
  position: relative; z-index: 2;
  max-width: 720px; color: #fff;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.detail-breadcrumb {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.2s;
  width: fit-content;
}
.detail-breadcrumb:hover { color: #fff; }
.detail-hero-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
}
.detail-hero-emoji {
  font-size: 3.5rem; line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.detail-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
}
.detail-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.6; max-width: 560px;
}

/* Recipe meta pills in hero */
.recipe-detail-meta {
  display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.4rem;
}
.recipe-detail-meta span {
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  padding: 0.35rem 0.8rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}

/* Blog category pill in hero */
.blog-detail-cat {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
  padding: 0.35rem 1rem; border-radius: 0.4rem;
  width: fit-content;
}
.blog-detail-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}
.blog-detail-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── Detail Content ── */
.detail-content {
  padding: 4rem var(--container-pad) 6rem;
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* ── Detail Main ── */
.detail-main { min-width: 0; }
.detail-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--sage-pale);
}
.detail-block:last-child { border-bottom: none; }
.detail-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.detail-block h2 i { color: var(--sage); font-size: 1.3rem; }
.detail-text {
  font-size: 0.95rem; color: var(--gray); line-height: 1.85;
}

/* Benefits list */
.detail-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.detail-benefits li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.92rem; color: var(--ink);
}
.benefit-icon {
  width: 32px; height: 32px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* Process steps */
.detail-process { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 1.2rem; position: relative;
  padding-bottom: 1.8rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--sage-pale);
}
.process-step:last-child::before { display: none; }
.process-number {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; font-weight: 800;
  flex-shrink: 0; position: relative; z-index: 1;
}
.process-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--ink);
  margin-bottom: 0.3rem; margin-top: 0.3rem;
}
.process-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* Recipe ingredients */
.recipe-ingredients { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.recipe-ingredients li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.92rem; color: var(--ink);
  padding: 0.6rem 0.8rem; border-radius: 0.5rem;
  transition: background 0.2s;
}
.recipe-ingredients li:hover { background: var(--sage-mist); }
.ingredient-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid; flex-shrink: 0;
  transition: all 0.2s; cursor: pointer;
}
.recipe-ingredients li.checked .ingredient-check {
  background: var(--sage); border-color: var(--sage);
}
.recipe-ingredients li.checked span { text-decoration: line-through; color: var(--gray); }

/* Recipe steps */
.recipe-steps { list-style: none; counter-reset: none; display: flex; flex-direction: column; gap: 1rem; }
.recipe-steps li {
  display: flex; gap: 1rem;
  font-size: 0.92rem; color: var(--ink); line-height: 1.7;
}
.step-number {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.78rem; font-weight: 800;
  flex-shrink: 0;
}
.step-text { flex: 1; padding-top: 0.25rem; }

/* Detail tip */
.detail-tip {
  background: var(--sage-mist); border-radius: 1rem;
  padding: 1.5rem !important; border-left: 4px solid;
  border-bottom: none !important;
  margin-bottom: 2.5rem;
}

/* ── Detail Sidebar ── */
.detail-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 120px;
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--sage-mist);
  border-radius: 1.2rem; padding: 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  border: 1px solid var(--sage-pale);
}
.sidebar-cta-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
}
.sidebar-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
}
.sidebar-cta p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.btn-whatsapp-detail {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  width: 100%; transition: all 0.25s;
}
.btn-whatsapp-detail:hover { background: #20b857; transform: translateY(-2px); }

/* Sidebar other links */
.sidebar-other {
  background: var(--white); border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; padding: 1.5rem;
}
.sidebar-other h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--sage-pale);
}
.sidebar-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0; text-decoration: none; color: var(--ink);
  font-size: 0.88rem; font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { padding-left: 0.4rem; color: var(--sage-deep); }
.sidebar-link-icon { font-size: 1.2rem; flex-shrink: 0; }
.sidebar-link-emoji { font-size: 1.3rem; flex-shrink: 0; }
.sidebar-link i:last-child { margin-left: auto; color: var(--gray); font-size: 1rem; }
.sidebar-link span { flex: 1; }

/* Sidebar contact */
.sidebar-contact {
  background: var(--ink); border-radius: 1.2rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.sidebar-contact h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.sidebar-contact a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; transition: color 0.2s;
}
.sidebar-contact a:hover { color: var(--sage-light); }
.sidebar-contact a i { color: var(--sage-light); }

/* Sidebar nutrition */
.sidebar-nutrition {
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; padding: 1.5rem;
}
.sidebar-nutrition h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.nutrition-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.nutrition-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-label { font-size: 0.88rem; color: var(--gray); }
.nutrition-value { font-size: 0.88rem; font-weight: 700; }
.nutrition-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.recipe-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
}

/* Sidebar author (blog) */
.sidebar-author {
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; padding: 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--sage-light);
}
.sidebar-author h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 0;
}
.sidebar-author p { font-size: 0.82rem; color: var(--sage); font-weight: 600; margin: 0; }
.author-social { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.author-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(61,87,56,0.08); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: all 0.2s;
}
.author-social a:hover { background: var(--sage-deep); color: #fff; }

/* Blog sidebar links */
.sidebar-blog-link {
  display: flex; gap: 0.8rem; align-items: center;
  text-decoration: none; color: inherit;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.sidebar-blog-link:last-child { border-bottom: none; }
.sidebar-blog-link:hover { padding-left: 0.3rem; }
.sidebar-blog-link img {
  width: 60px; height: 60px; border-radius: 0.5rem;
  object-fit: cover; flex-shrink: 0;
}
.sidebar-blog-link div { min-width: 0; }
.sidebar-blog-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sidebar-blog-link h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin: 0.2rem 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Blog Article Typography ── */
.blog-article {
  font-size: 1rem; color: var(--ink); line-height: 1.9;
}
.blog-article h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 600; color: var(--ink);
  margin: 2rem 0 0.8rem;
}
.blog-article p { margin-bottom: 1.2rem; color: #444; }
.blog-article ul, .blog-article ol {
  margin: 1rem 0 1.5rem; padding-left: 1.5rem;
}
.blog-article li { margin-bottom: 0.5rem; color: #444; }
.blog-article blockquote {
  border-left: 4px solid var(--sage);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  background: var(--sage-mist); border-radius: 0 0.8rem 0.8rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-style: italic; font-weight: 400;
  color: var(--sage-deep); line-height: 1.5;
}
.blog-article strong { color: var(--ink); }

/* Blog tags */
.blog-detail-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 1.5rem 0; margin-top: 1rem;
  border-top: 1px solid var(--sage-pale);
}
.blog-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  background: var(--sage-pale); color: var(--sage-deep);
  padding: 0.35rem 0.8rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}

/* Blog share */
.blog-share {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 1rem;
}
.blog-share-label { font-size: 0.85rem; font-weight: 700; color: var(--gray); }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; text-decoration: none;
  transition: all 0.2s;
}
.share-btn:hover { transform: translateY(-3px); }
.share-twitter { background: #1DA1F2; }
.share-facebook { background: #1877F2; }
.share-whatsapp { background: #25D366; }

/* ── Detail Page Responsive ── */
@media (max-width: 992px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .detail-hero { min-height: 45vh; padding-top: 8rem; }
}
@media (max-width: 560px) {
  .detail-hero { min-height: 40vh; padding-top: 7rem; padding-bottom: 2rem; }
  .detail-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .detail-content { padding: 2rem var(--container-pad) 4rem; }
  .recipe-detail-meta { gap: 0.4rem; }
  .recipe-detail-meta span { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   LISTING PAGES  (Hizmetler, Tarifler, Blog, İletişim, Hakkımda)
   ══════════════════════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: flex-end;
  padding: 6rem var(--container-pad) 3.5rem;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-content {
  position: relative; z-index: 2; color: #fff;
  max-width: 680px;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  padding: 0.4rem 1rem; border-radius: 2rem; width: fit-content;
}
.page-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
}
.page-hero-title em { font-style: italic; }
.page-hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.6;
}

/* ── Page Listing Wrapper ── */
.page-listing {
  padding: 4rem var(--container-pad) 6rem;
  background: var(--white);
}

/* ── Services Listing ── */
.services-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}
.service-listing-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.3s;
}
.service-listing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.slc-icon {
  width: 52px; height: 52px; border-radius: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
  margin-bottom: 0.8rem;
}
.slc-body {
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}
.slc-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
}
.slc-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.slc-features {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-top: 0.5rem;
}
.slc-features span {
  font-size: 0.82rem; color: var(--ink);
  display: flex; align-items: center; gap: 0.4rem;
}
.slc-link {
  font-size: 0.85rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto; padding-top: 1rem;
}
.slc-img { overflow: hidden; height: 220px; order: -1; }
.slc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.service-listing-card:hover .slc-img img { transform: scale(1.05); }

/* ── Recipes Page ── */
.recipe-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--sage-pale);
}
.recipe-filter {
  padding: 0.5rem 1.2rem; border-radius: 2rem;
  font-size: 0.82rem; font-weight: 600;
  background: var(--sage-mist); color: var(--ink);
  border: 1px solid var(--sage-pale);
  cursor: pointer; transition: all 0.25s;
}
.recipe-filter:hover { border-color: var(--sage); }
.recipe-filter.active {
  background: var(--sage-deep); color: #fff; border-color: var(--sage-deep);
}
.recipes-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.recipe-page-card {
  background: #fff; border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.recipe-page-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.recipe-page-card.hidden { display: none; }
.rpc-img {
  position: relative; height: 220px; overflow: hidden;
}
.rpc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.recipe-page-card:hover .rpc-img img { transform: scale(1.05); }
.rpc-emoji {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.rpc-badge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2rem;
  display: flex; align-items: center; gap: 0.25rem;
}
.rpc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.rpc-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.4rem;
}
.rpc-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.rpc-meta {
  display: flex; gap: 0.8rem; margin-top: 0.8rem;
  font-size: 0.78rem; color: var(--gray); font-weight: 600;
}
.rpc-meta span { display: flex; align-items: center; gap: 0.25rem; }
.rpc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.8rem; }
.rpc-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.2rem;
}
.rpc-link {
  font-size: 0.85rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto; padding-top: 1rem;
}

/* ── Blog Page ── */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.blog-page-card {
  background: #fff; border: 1px solid var(--sage-pale);
  border-radius: 1.2rem; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.blog-page-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.bpc-img { position: relative; height: 220px; overflow: hidden; }
.bpc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.blog-page-card:hover .bpc-img img { transform: scale(1.05); }
.bpc-cat {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff;
  padding: 0.3rem 0.8rem; border-radius: 0.4rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.bpc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bpc-date {
  font-size: 0.78rem; color: var(--gray); font-weight: 500;
  display: flex; align-items: center; gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.bpc-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin-bottom: 0.5rem;
}
.bpc-body p {
  font-size: 0.88rem; color: var(--gray); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.bpc-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 0.8rem;
}
.bpc-tags span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  background: var(--sage-pale); color: var(--sage-deep);
  padding: 0.25rem 0.6rem; border-radius: 2rem;
  display: inline-flex; align-items: center; gap: 0.2rem;
}
.bpc-link {
  font-size: 0.85rem; font-weight: 700; color: var(--sage-deep);
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto; padding-top: 1rem;
}

/* ── Page CTA Band ── */
.page-cta-band {
  margin-top: 4rem; padding: 3rem 0 4rem;
  border-top: 1px solid var(--sage-pale);
}
.page-cta-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.page-cta-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; font-weight: 600; color: var(--ink);
}
.page-cta-text p { font-size: 0.95rem; color: var(--gray); margin-top: 0.5rem; }
.page-cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

/* ── Contact Page ── */
.contact-page { padding: 4rem var(--container-pad) 6rem; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  width: 100%;
}
.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.5rem;
}
.contact-info > p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 0.8rem;
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  text-decoration: none; color: inherit;
  transition: all 0.25s;
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cc-icon {
  width: 44px; height: 44px; border-radius: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card strong { font-size: 0.82rem; color: var(--ink); display: block; }
.contact-card span { font-size: 0.82rem; color: var(--gray); }
.contact-hours { margin-bottom: 2rem; }
.contact-hours h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.hours-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.88rem; color: var(--ink);
}
.hours-row:last-child { border-bottom: none; }
.contact-map h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.contact-map p { font-size: 0.88rem; color: var(--gray); margin-bottom: 0.8rem; }
.map-placeholder {
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  border-radius: 0.8rem; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--sage-deep);
}
.map-placeholder i { font-size: 2rem; color: var(--sage); }
.contact-form-wrap { position: sticky; top: 120px; }
.contact-cta-card { border-radius: 1.2rem; }
.contact-cta-card textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: inherit; font-size: 0.88rem; resize: vertical;
}
.contact-cta-card textarea::placeholder { color: rgba(255,255,255,0.5); }

/* About page quote */
.about-page-quote {
  border-left: 4px solid var(--sage);
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  background: var(--sage-mist); border-radius: 0 0.8rem 0.8rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-style: italic; font-weight: 400;
  color: var(--sage-deep); line-height: 1.5;
}

/* ── Listing Page Responsive ── */
@media (max-width: 992px) {
  .services-listing-grid { grid-template-columns: 1fr; }
  .service-listing-card { grid-template-columns: 1fr; }
  .slc-img { height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
  .blog-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-hero { min-height: 28vh; padding-top: 7rem; }
  .page-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-listing { padding: 2rem var(--container-pad) 4rem; }
  .recipes-page-grid { grid-template-columns: 1fr; }
  .recipe-filters { gap: 0.3rem; }
  .recipe-filter { padding: 0.4rem 0.8rem; font-size: 0.75rem; }
}

/* ── MOBILE ── */
@media (max-width: 992px) {
  nav { padding: 0; height: auto; flex-wrap: wrap; align-items: center; }
  .nav-right-container { display: contents; }
  
  .topbar-new { order: 1; width: 100%; display: flex; font-size: 0.65rem; padding: 0.4rem 1rem; border-bottom: 1px solid #f0f0f0; margin-bottom: 0; justify-content: space-between; align-items: center; background: #fafafa; }
  .topbar-left { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 0.5rem; }
  .topbar-right a:nth-child(1), .topbar-right a:nth-child(2) { display: none; }
  .ig-label { display: inline; font-size: 0.7rem; font-weight: 600; }
  
  .nav-logo { order: 2; padding: 0.5rem 0 0.5rem 1rem; }
  .nav-logo img { height: 50px !important; }
  
  .nav-bottom { order: 3; flex: 1; padding: 0.5rem 1rem 0.5rem 0 !important; justify-content: flex-end !important; display: flex; align-items: center; }
  .nav-right { display: flex; align-items: center; gap: 0.2rem; }
  .mobile-nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-right: 0.3rem; }
  .mobile-action-btn { 
    display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    height: 38px; padding: 0 0.8rem; border-radius: 2rem; 
    font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
  }
  .mobile-action-btn.phone-btn { background: rgba(61,87,56,0.1); color: var(--sage-deep); border: 1px solid rgba(61,87,56,0.1); }
  .mobile-action-btn.wa-btn { background: #25D366; color: var(--white); padding: 0; width: 38px; border-radius: 50%; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
  .hamburger { display: block; margin-left: auto; }
  .nav-cta { display: none; } /* Hide CTA inside nav bar to save space on mobile, it can be in menu */
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
    background: var(--white); flex-direction: column; justify-content: space-between;
    padding: 2rem 1.5rem; gap: 0.4rem; transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1); overflow-y: auto; z-index: 105;
  }
  .nav-links.open { right: 0; }
  .nav-links li { display: block !important; width: 100%; text-align: left; }
  .nav-links a { font-size: 1rem; justify-content: flex-start; padding: 7px 9px; }
  
  .mobile-menu-header { display: block !important; padding-bottom: 1.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); width: 100%; text-align: left; }
  .mobile-menu-header img { height: 150px; max-width: 90%; object-fit: contain; margin-left: -10px; }
  
  .mobile-menu-footer { display: flex !important; flex-direction: column; align-items: center; gap: 1rem; padding-top: 1.2rem; width: 100%; border-top: 1px solid rgba(0,0,0,0.07); }
  .menu-action-btns { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
  .mab {
    display: flex !important; flex-direction: row; align-items: center; justify-content: center;
    gap: 0.6rem; padding: 1rem 1.4rem; border-radius: 0.8rem;
    font-size: 0.9rem; font-weight: 700; text-decoration: none;
    color: #fff !important; width: 100%;
  }
  .mab i { font-size: 1.2rem; }
  .mab-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 4px 12px rgba(220,39,67,0.25); }
  .mab-phone { background: var(--sage-deep); box-shadow: 0 4px 12px rgba(61,87,56,0.25); }
  .mab-wa { background: #25D366; box-shadow: 0 4px 12px rgba(37,211,102,0.25); }
  
  .mobile-cta { display: none; }
  .dropdown-menu {
    position: static; box-shadow: none; opacity: 1; visibility: visible;
    transform: none; padding: 0.5rem 0 0 1rem; display: block; background: transparent;
  }
  .dropdown-menu li a { padding: 0.5rem 0; font-size: 0.95rem; }
  .dropdown-menu li a:hover { padding-left: 0.5rem; background: transparent; }
  .nav-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: 99;
  }
  .nav-overlay.show { display: block; }
  .hero { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 110px; padding-bottom: 3rem; text-align: center; }
  .hero-left { display: contents; }
  .hero-badge { order: 1; margin: 0 auto; }
  .hero-title { order: 2; margin-bottom: 0; }
  .hero-right { order: 3; padding: 1.5rem 0; width: 100%; height: auto; }
  .hero-desc { order: 4; text-align: center; margin: 0 auto; }
  .hero-actions { order: 5; justify-content: center; flex-wrap: nowrap; width: 100%; gap: 0.5rem; margin-top: 0.5rem; }
  .hero-actions > a { flex: 1; padding: 0.7rem 0.5rem; font-size: 0.85rem; justify-content: center; white-space: normal; text-align: center; line-height: 1.2; }
  .hero-stats { order: 6; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
  .floating-badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -25px; width: max-content; }
  .services-grid, .services-grid-new { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: auto; aspect-ratio: 4/3; }
  .about-info-badge { bottom: -16px; right: -8px; padding: 0.6rem 0.9rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-cta-wrapper { grid-template-columns: 1fr; gap: 4rem; }
  .cta-card { padding: 3rem 2rem; }
  .footer-modern { padding: 4rem max(5vw, 20px) 2rem; text-align: center; }
  .brand-col p { margin: 1.5rem auto 0; }
}

/* ── Pagination ── */
.pagination-wrap {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 3rem; padding-bottom: 2rem;
}
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: 0.6rem;
  background: #f8f9fa; border: 1px solid #dee2e6;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s;
}
.page-btn:hover { background: var(--sage-pale); color: var(--sage-deep); border-color: var(--sage-pale); }
.page-btn.active { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
