/* ============================================
   Malatya Kır Düğünü - Stylesheet
   Açık hava, doğal, romantik
   ============================================ */

:root {
  --color-bg: #faf6f0;
  --color-bg-alt: #f0ebe0;
  --color-bg-warm: #f5ede0;
  --color-surface: #ffffff;
  --color-text: #2d3a2c;
  --color-text-soft: #5a6a58;
  --color-muted: #8a948a;
  --color-border: #e0dac9;

  --color-sage: #87a96b;
  --color-sage-dark: #6a8a52;
  --color-sage-light: #b3cc97;
  --color-eucalyptus: #95a78d;
  --color-terracotta: #c87f5a;
  --color-terracotta-dark: #a4634a;
  --color-cream: #f5e6d3;
  --color-warm-wood: #8b6f47;
  --color-soft-pink: #e8c5b8;
  --color-leaf: #4a5f3d;

  --gradient-hero: linear-gradient(135deg, #4a5f3d 0%, #6a8a52 50%, #87a96b 100%);
  --gradient-sunset: linear-gradient(135deg, #e8c5b8 0%, #c87f5a 50%, #8b6f47 100%);
  --gradient-natural: linear-gradient(135deg, #87a96b 0%, #c87f5a 100%);

  --shadow-sm: 0 2px 8px rgba(45,58,44,.06);
  --shadow-md: 0 8px 24px rgba(45,58,44,.1);
  --shadow-lg: 0 16px 48px rgba(45,58,44,.14);
  --shadow-xl: 0 24px 60px rgba(45,58,44,.18);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Sacramento', cursive;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul, ol { list-style: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { color: var(--color-text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; padding: .75rem 1.25rem; background: var(--color-sage); color: #fff; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 246, 240, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 240, .98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: .75rem; color: var(--color-sage-dark); }
.logo-icon { color: var(--color-sage-dark); display: inline-flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500;
  color: var(--color-leaf); letter-spacing: 0;
}
.logo-text em {
  font-style: italic; font-size: .85rem;
  color: var(--color-terracotta); margin-top: 4px;
  font-family: var(--font-script); font-weight: 400;
  letter-spacing: .04em;
}

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-list > li > a {
  display: inline-block; padding: .6rem 1rem; font-size: .94rem; font-weight: 400;
  color: var(--color-text); position: relative;
  transition: all .25s var(--ease);
}
.nav-list > li > a:hover { color: var(--color-sage-dark); }
.nav-list > li > a.active { color: var(--color-sage-dark); }
.nav-list > li > a.active::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .35rem; height: 1px;
  background: var(--color-terracotta);
}
.nav-cta a {
  background: var(--color-sage-dark); color: #fff !important;
  padding: .7rem 1.5rem !important; border-radius: var(--radius-pill);
}
.nav-cta a:hover { background: var(--color-leaf); transform: translateY(-1px); }
.nav-cta a:hover::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--color-text);
  transition: all .3s var(--ease);
}

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: #2d3a2c;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 {
  background-image: url("/assets/photos/hero-1.jpg");
  background-image: image-set(url("/assets/photos/hero-1.webp") type("image/webp"), url("/assets/photos/hero-1.jpg") type("image/jpeg"));
}
.hero-slide-2 {
  background-image: url("/assets/photos/hero-2.jpg");
  background-image: image-set(url("/assets/photos/hero-2.webp") type("image/webp"), url("/assets/photos/hero-2.jpg") type("image/jpeg"));
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,58,44,.35) 0%, rgba(45,58,44,.65) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(74,95,61,.25) 0%, transparent 65%);
  z-index: 1;
}

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 6rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .65rem; z-index: 2;
}
.hero-dots button {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: background .3s var(--ease);
  border: 0; padding: 0;
}
.hero-dots button:hover { background: rgba(255,255,255,.55); }
.hero-dots button.active { background: var(--color-cream); }

.hero-content { text-align: center; position: relative; z-index: 1; color: #fff; max-width: 900px; }

.hero-eyebrow {
  display: inline-block; padding: .55rem 1.5rem; margin-bottom: 1.75rem;
  font-size: .82rem; font-style: italic; letter-spacing: .15em;
  color: var(--color-cream); border: 1px solid rgba(245,230,211,.4);
  border-radius: var(--radius-pill); background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
}

.hero-title { color: #fff; margin-bottom: 1.5rem; font-weight: 400; }
.hero-title .script {
  font-family: var(--font-script); font-size: 1.5em;
  color: var(--color-cream);
  display: block; line-height: 1; margin-bottom: -.1em;
  text-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.hero-title .block { display: block; font-style: italic; font-weight: 300; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 620px; margin: 0 auto 2.5rem;
  color: rgba(255,255,255,.88); line-height: 1.75;
}

.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-meta {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding-top: 2.5rem; border-top: 1px solid rgba(245,230,211,.18);
  max-width: 720px; margin: 0 auto;
}
.hero-meta li { text-align: center; color: #fff; }
.hero-meta strong {
  display: block; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400;
  color: var(--color-cream); line-height: 1;
}
.hero-meta span {
  display: block; font-size: .82rem; font-style: italic;
  margin-top: .5rem; color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 1px solid rgba(245,230,211,.4);
  border-radius: 14px; z-index: 1;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--color-cream); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 18px); opacity: 0; }
  61% { opacity: 0; }
}

/* Decorative botanical SVG accents */
.hero::before {
  content: '';
  position: absolute;
  top: 10%; left: -50px; width: 200px; height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'%3E%3Cpath d='M40 40 Q60 80 50 120 Q40 160 60 200 M40 40 Q70 50 90 30 M50 80 Q80 90 100 70 M55 120 Q85 130 105 110 M50 160 Q80 170 100 150' stroke='%23f5e6d3' stroke-width='1.2' fill='none' opacity='.3'/%3E%3Ccircle cx='90' cy='30' r='2' fill='%23f5e6d3' opacity='.4'/%3E%3Ccircle cx='100' cy='70' r='2' fill='%23f5e6d3' opacity='.4'/%3E%3Ccircle cx='105' cy='110' r='2' fill='%23f5e6d3' opacity='.4'/%3E%3Ccircle cx='100' cy='150' r='2' fill='%23f5e6d3' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: .5;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -50px; width: 200px; height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'%3E%3Cpath d='M160 40 Q140 80 150 120 Q160 160 140 200 M160 40 Q130 50 110 30 M150 80 Q120 90 100 70 M145 120 Q115 130 95 110 M150 160 Q120 170 100 150' stroke='%23f5e6d3' stroke-width='1.2' fill='none' opacity='.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: .5;
  z-index: 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-size: .95rem; font-weight: 400; letter-spacing: .02em;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: all .3s var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--color-terracotta); color: #fff;
  box-shadow: 0 8px 24px rgba(200,127,90,.35);
}
.btn-primary:hover {
  background: var(--color-terracotta-dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,127,90,.45);
}
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }
.btn-outline {
  background: transparent; color: var(--color-sage-dark);
  border: 1.5px solid var(--color-sage-dark);
}
.btn-outline:hover { background: var(--color-sage-dark); color: #fff; }
.btn-light { background: var(--color-cream); color: var(--color-leaf); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #fff; }
.btn-outline-light {
  background: transparent; color: var(--color-cream); border: 1.5px solid rgba(245,230,211,.5);
}
.btn-outline-light:hover { background: rgba(245,230,211,.1); border-color: var(--color-cream); }
.btn-block { display: flex; width: 100%; }

/* ============ Sections ============ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 4rem;
}
.section-head .eyebrow,
.eyebrow {
  display: inline-block; font-family: var(--font-script); font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: .5rem; line-height: 1;
}
.section-head h2 { margin-bottom: 1rem; font-style: italic; font-weight: 400; }
.section-head p {
  font-size: 1.05rem; color: var(--color-text-soft); font-style: italic;
}

.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============ Features ============ */
.section-about { background: var(--color-bg); position: relative; }
.section-about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q300 0 600 40 T1200 40 V80 H0 Z' fill='%23f0ebe0'/%3E%3C/svg%3E") center top / cover no-repeat;
}
.feature-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--color-surface); border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(135,169,107,.04), rgba(200,127,90,.04));
  opacity: 0; transition: opacity .35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-sage-light); }
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; }
.feature-icon {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(135,169,107,.15), rgba(200,127,90,.15));
  border-radius: 50%; color: var(--color-sage-dark);
}
.feature-card h3 { margin-bottom: .75rem; font-style: italic; }
.feature-card p { font-size: .94rem; }

/* ============ Services ============ */
.section-services { background: var(--color-bg-alt); position: relative; }
.service-card {
  background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .35s var(--ease);
  display: flex; flex-direction: column;
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-sage-light); }
.service-img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-img[data-pattern="kir-dugun"] {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(245,230,211,.5) 0%, transparent 50%),
    linear-gradient(135deg, #87a96b 0%, #c87f5a 100%);
}
.service-img[data-pattern="nikah"] {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255,255,255,.4) 0%, transparent 50%),
    linear-gradient(135deg, #95a78d 0%, #8b6f47 100%);
}
.service-img[data-pattern="bahce"] {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(245,230,211,.5) 0%, transparent 50%),
    linear-gradient(135deg, #6a8a52 0%, #e8c5b8 100%);
}
.service-img::after {
  content: '🌿'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 4rem; opacity: .35;
}
.service-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { margin-bottom: .75rem; color: var(--color-leaf); font-style: italic; font-weight: 500; }
.service-body > p { margin-bottom: 1rem; }
.service-list { margin-bottom: 1.5rem; flex: 1; }
.service-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .5rem;
  font-size: .92rem; color: var(--color-text-soft);
}
.service-list li::before {
  content: '🌱'; position: absolute; left: 0; font-size: .85rem;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--color-terracotta); font-weight: 500; font-size: .92rem;
  align-self: flex-start;
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--color-terracotta-dark); }
.link-arrow:hover span { transform: translateX(4px); }

/* ============ Stats ============ */
.section-stats {
  background: var(--gradient-hero); color: #fff;
  position: relative; overflow: hidden;
}
.section-stats::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,127,90,.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245,230,211,.1) 0%, transparent 50%);
}
.section-stats .container { position: relative; }
.stat { text-align: center; }
.stat strong {
  display: block; font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; color: var(--color-cream); line-height: 1;
  font-style: italic;
}
.stat span {
  display: block; font-size: .85rem; font-style: italic;
  margin-top: .75rem; color: rgba(255,255,255,.85);
  letter-spacing: .05em;
}

/* ============ Gallery ============ */
.section-gallery { background: var(--color-bg); }
.gallery-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px);
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  cursor: pointer; transition: all .4s var(--ease);
}
.gallery-item.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item[data-pattern="g1"] { background: linear-gradient(135deg, #4a5f3d, #87a96b 50%, #c87f5a); }
.gallery-item[data-pattern="g2"] { background: linear-gradient(135deg, #e8c5b8, #c87f5a); }
.gallery-item[data-pattern="g3"] { background: linear-gradient(135deg, #87a96b, #f5e6d3); }
.gallery-item[data-pattern="g4"] { background: linear-gradient(135deg, #2d3a2c, #6a8a52); }
.gallery-item[data-pattern="g5"] { background: linear-gradient(135deg, #f5e6d3, #95a78d, #c87f5a); }
.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45,58,44,.5) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item::after {
  content: '🌾'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 2.5rem; opacity: .3;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover::before { opacity: 1; }

/* ============ Testimonials ============ */
.section-testimonials { background: var(--color-bg-warm); }
.testimonial {
  background: var(--color-surface); padding: 2.5rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
  position: relative; transition: all .35s var(--ease);
}
.testimonial::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 5rem; color: var(--color-sage-light);
  opacity: .4; line-height: 1; font-style: italic;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--color-terracotta); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .15em; }
.testimonial p {
  font-family: var(--font-serif); font-size: 1.15rem; font-style: italic;
  line-height: 1.6; margin-bottom: 1.5rem; color: var(--color-text); font-weight: 400;
}
.testimonial footer { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.testimonial footer strong { display: block; color: var(--color-sage-dark); font-size: 1rem; font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.testimonial footer span { font-size: .85rem; color: var(--color-muted); font-style: italic; }

/* ============ Pricing ============ */
.section-pricing { background: var(--color-bg-alt); }
.price-card {
  background: var(--color-surface); padding: 2.5rem 2rem; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); position: relative;
  display: flex; flex-direction: column;
  transition: all .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: linear-gradient(180deg, #fff 0%, #f5ede0 100%);
  border: 2px solid var(--color-terracotta);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: .35rem 1.25rem; background: var(--color-terracotta); color: #fff;
  font-size: .75rem; font-style: italic; letter-spacing: .05em;
  border-radius: var(--radius-pill); white-space: nowrap;
  font-family: var(--font-sans);
}
.price-card header { text-align: center; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--color-border); }
.price-card h3 { color: var(--color-leaf); margin-bottom: .5rem; font-style: italic; }
.price .amount {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 500;
  color: var(--color-text); font-style: italic;
}
.price-card ul { flex: 1; margin-bottom: 2rem; }
.price-card ul li {
  padding: .65rem 0 .65rem 1.5rem; position: relative;
  border-bottom: 1px dashed var(--color-border); font-size: .92rem;
}
.price-card ul li::before {
  content: '🍃'; position: absolute; left: 0; font-size: .85rem;
}
.price-card ul li:last-child { border-bottom: 0; }
.pricing-note {
  text-align: center; margin-top: 2.5rem; font-size: .9rem; color: var(--color-muted);
  font-style: italic;
}

/* ============ CTA ============ */
.section-cta { padding: 4rem 0; }
.cta-box {
  background: var(--gradient-hero); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(200,127,90,.25) 0%, transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(245,230,211,.15) 0%, transparent 40%);
}
.cta-box > div { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin-bottom: .75rem; font-style: italic; }
.cta-box p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 580px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ FAQ ============ */
.section-faq { background: var(--color-bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details {
  background: var(--color-surface); border-radius: var(--radius-md);
  border: 1px solid var(--color-border); margin-bottom: 1rem;
  transition: all .25s var(--ease);
  overflow: hidden;
}
.faq-list details[open] { box-shadow: var(--shadow-md); border-color: var(--color-sage); }
.faq-list summary {
  padding: 1.5rem 1.75rem; cursor: pointer; font-weight: 500;
  color: var(--color-text); position: relative;
  list-style: none; padding-right: 3.5rem;
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '🌿'; position: absolute; right: 1.75rem; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-list details p {
  padding: 0 1.75rem 1.5rem; color: var(--color-text-soft); line-height: 1.7;
}

/* ============ Footer ============ */
.site-footer {
  background: #1f2820; color: rgba(255,255,255,.78);
  padding: 5rem 0 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q300 80 600 40 T1200 40 V0 H0 Z' fill='%23faf6f0'/%3E%3C/svg%3E") center top / cover no-repeat;
  transform: translateY(-1px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem;
}
.logo-light { color: #fff; }
.logo-light .logo-text strong { color: #fff; }
.logo-light .logo-text em { color: var(--color-sage-light); }
.footer-about { margin-top: 1.5rem; font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.65); }
.site-footer h4 {
  color: var(--color-cream); margin-bottom: 1.25rem; font-size: 1.1rem;
  position: relative; padding-bottom: .75rem; font-style: italic;
}
.site-footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 1px;
  background: var(--color-terracotta);
}
.footer-links li, .footer-contact li { margin-bottom: .65rem; font-size: .92rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.7); transition: color .25s var(--ease); }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-cream); }
.social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border-radius: 50%; color: #fff;
  font-size: .8rem; font-weight: 500;
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--color-sage); color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0; margin-top: 1.5rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--color-cream); }

/* ============ Floating WhatsApp ============ */
.float-wa {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: all .3s var(--ease);
  animation: pulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============ Reveal Animation ============ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ Page Hero (inner pages) ============ */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--gradient-hero); color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,127,90,.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,230,211,.1) 0%, transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; font-style: italic;
}
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto; font-size: 1.1rem; font-style: italic; }
.breadcrumb {
  display: inline-flex; gap: .5rem; align-items: center;
  font-size: .85rem; color: var(--color-cream); margin-bottom: 1rem;
  letter-spacing: .05em; font-style: italic;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--color-cream); }
.breadcrumb span { opacity: .5; }

/* ============ Forms ============ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: .5rem; font-weight: 500; font-size: .9rem;
  color: var(--color-text); font-family: var(--font-sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .9rem 1.1rem; font-family: inherit; font-size: 1rem;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); color: var(--color-text);
  transition: all .25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(135,169,107,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ About Page ============ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split-img {
  aspect-ratio: 4/5; border-radius: var(--radius-md);
  background: linear-gradient(135deg, #87a96b 0%, #c87f5a 50%, #f5e6d3 100%);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.split-img::after {
  content: '🌿'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 5rem; opacity: .35;
}
.split h2 { margin-bottom: 1.25rem; font-style: italic; }
.split p { margin-bottom: 1rem; line-height: 1.8; }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-item {
  text-align: left; padding: 1.5rem; background: var(--color-bg);
  border-radius: var(--radius-md); border-left: 3px solid var(--color-terracotta);
}
.value-item h4 { color: var(--color-leaf); margin-bottom: .5rem; font-style: italic; }
.value-item p { font-size: .92rem; }

/* ============ Contact Page ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
}
.contact-info {
  background: var(--gradient-hero); color: #fff;
  padding: 3rem; border-radius: var(--radius-md);
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(200,127,90,.25) 0%, transparent 50%);
}
.contact-info > * { position: relative; }
.contact-info h2 { color: #fff; margin-bottom: 1rem; font-style: italic; }
.contact-info > p { color: rgba(255,255,255,.88); margin-bottom: 2rem; font-style: italic; }
.contact-list li {
  display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { display: block; color: var(--color-cream); font-size: .85rem; font-style: italic; margin-bottom: .25rem; }
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--color-cream); }

.contact-form {
  background: var(--color-surface); padding: 3rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border: 1px solid var(--color-border);
}
.contact-form h2 { margin-bottom: .5rem; font-style: italic; }
.contact-form > p { margin-bottom: 2rem; color: var(--color-text-soft); font-style: italic; }

.map-wrap {
  margin-top: 4rem; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ============ Galeri page ============ */
.gallery-full {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-full .gallery-item {
  aspect-ratio: 4/3; grid-column: auto; grid-row: auto;
}

/* ============ Hizmetler page ============ */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 5rem;
}
.svc-block:nth-child(even) { direction: rtl; }
.svc-block:nth-child(even) > * { direction: ltr; }
.svc-block-img {
  aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.svc-block-img::after {
  content: '🌿'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 5rem; opacity: .35;
}
.svc-block h2 { color: var(--color-leaf); margin-bottom: 1rem; font-style: italic; }
.svc-block .lead { font-size: 1.1rem; margin-bottom: 1.25rem; font-style: italic; }
.svc-block ul { margin-top: 1.5rem; }
.svc-block ul li {
  padding-left: 1.75rem; position: relative; margin-bottom: .65rem;
}
.svc-block ul li::before {
  content: '🌱'; position: absolute; left: 0;
  font-size: 1rem;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
  .split, .svc-block, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-block:nth-child(even) { direction: ltr; }
  .svc-block-img { max-width: 600px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .nav-toggle { display: flex; z-index: 60; }
  .nav-list {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(85vw, 360px); background: var(--color-surface);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    transition: right .35s var(--ease);
    overflow-y: auto;
  }
  .nav-list.open { right: 0; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    display: block; padding: 1rem; border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .nav-list > li > a.active::after { display: none; }
  .nav-cta { margin-top: 1.5rem; }
  .nav-cta a { text-align: center; border-radius: var(--radius-pill) !important; }

  .hero-meta { gap: 1.5rem; }
  .hero-meta strong { font-size: 1.75rem; }
  .hero-cta .btn { padding: .9rem 1.5rem; font-size: .9rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item.gallery-large { grid-column: span 2; aspect-ratio: 16/9; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-box { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-meta { flex-direction: column; gap: 1.25rem; }
  .hero-meta li { padding-bottom: 1rem; border-bottom: 1px solid rgba(245,230,211,.18); }
  .hero-meta li:last-child { border: 0; padding: 0; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .float-wa { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}

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