*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0c0b09;
  --bg-secondary: #151310;
  --bg-card: #1a1814;
  --bg-elevated: #211f1a;
  --bg-warm: #f7f3ec;
  --bg-warm-alt: #efe9de;
  --copper: #c47a2a;
  --copper-light: #d99a4e;
  --copper-glow: #e8b06a;
  --amber: #d4a04a;
  --amber-light: #e6be72;
  --burgundy: #6b2d3e;
  --burgundy-light: #8a3d52;
  --cream: #f9f5ee;
  --cream-dark: #e8e0d0;
  --text-light: #f4f0e8;
  --text-muted: rgba(244, 240, 232, 0.55);
  --text-dark: #1a1814;
  --text-dark-muted: #6b6560;
  --border-subtle: rgba(196, 122, 42, 0.12);
  --border-warm: rgba(196, 122, 42, 0.25);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: '';
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--copper), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--bg-primary);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-dark-muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}


.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.45s var(--ease-smooth);
  background: transparent;
}
.nav.scrolled {
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--copper-light); font-weight: 400; font-style: italic; }
.nav-links {
  display: flex; gap: 30px; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(244, 240, 232, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--copper-light); }
.nav-cta-link {
  background: var(--copper) !important;
  color: var(--bg-primary) !important;
  padding: 10px 26px !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: all 0.3s !important;
}
.nav-cta-link:hover {
  background: var(--copper-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 122, 42, 0.25);
}
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.mobile-toggle span { width: 22px; height: 1.5px; background: var(--cream); transition: all 0.3s; }


.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-slider {
  position: absolute; inset: 0;
  display: flex;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
  touch-action: pan-y;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.hero-slide-bg {
  position: absolute; inset: 0;
}
.hero-slide:nth-child(1) .hero-slide-bg {
  background: linear-gradient(160deg, #1a1510 0%, #2a2018 30%, #1c1812 70%, #0f0e0a 100%);
}
.hero-slide:nth-child(2) .hero-slide-bg {
  background: linear-gradient(160deg, #16130f 0%, #2b1f18 35%, #1a1510 65%, #0c0b09 100%);
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background: linear-gradient(160deg, #130f0c 0%, #261c14 30%, #1e1812 70%, #0e0c09 100%);
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,0.3) 0%, rgba(12,11,9,0.15) 40%, rgba(12,11,9,0.75) 100%);
  z-index: 2;
}

.hero-slide:nth-child(1)::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: repeating-linear-gradient(60deg, var(--copper) 0, var(--copper) 1px, transparent 1px, transparent 80px);
}
.hero-slide:nth-child(2)::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image: radial-gradient(circle at 70% 40%, var(--copper) 1px, transparent 1px);
  background-size: 90px 90px;
}
.hero-slide:nth-child(3)::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: repeating-linear-gradient(120deg, var(--amber) 0, var(--amber) 1px, transparent 1px, transparent 100px);
}

.hero-slide-content {
  position: relative; z-index: 3;
  max-width: 1320px; margin: 0 auto; padding: 0 28px; width: 100%;
}
.hero-slide-kicker {
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s 0.3s var(--ease-out);
}
.hero-slide-kicker::before { content: ''; width: 40px; height: 1.5px; background: var(--copper); }
.hero-slide.active .hero-slide-kicker { opacity: 1; transform: translateY(0); }

.hero-slide-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 750px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s 0.45s var(--ease-out);
}
.hero-slide.active .hero-slide-title { opacity: 1; transform: translateY(0); }
.hero-slide-title em {
  font-style: italic; color: var(--copper-glow);
  font-weight: 600;
}

.hero-slide-desc {
  font-size: 1.05rem;
  color: rgba(244, 240, 232, 0.6);
  max-width: 480px; line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s 0.6s var(--ease-out);
}
.hero-slide.active .hero-slide-desc { opacity: 1; transform: translateY(0); }

.hero-slide-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s 0.7s var(--ease-out);
}
.hero-slide.active .hero-slide-actions { opacity: 1; transform: translateY(0); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--copper);
  color: var(--bg-primary);
  padding: 15px 34px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
}
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(196, 122, 42, 0.3);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--cream);
  padding: 15px 34px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid rgba(244, 240, 232, 0.18);
  cursor: pointer; transition: all 0.35s;
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper-light);
  background: rgba(196, 122, 42, 0.06);
}

.hero-controls {
  position: absolute; bottom: 100px; right: 60px; z-index: 10;
  display: flex; flex-direction: column; align-items: flex-end; gap: 24px;
}
.hero-dots {
  display: flex; gap: 10px;
}
.hero-dot {
  width: 32px; height: 3px;
  background: rgba(244, 240, 232, 0.2);
  border: none; cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}
.hero-dot.active {
  width: 48px;
  background: var(--copper);
}
.hero-arrows {
  display: flex; gap: 8px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(244, 240, 232, 0.15);
  background: rgba(12, 11, 9, 0.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: all 0.3s;
}
.hero-arrow:hover {
  border-color: var(--copper);
  background: rgba(196, 122, 42, 0.15);
  color: var(--copper-light);
}
.hero-arrow svg { width: 18px; height: 18px; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
}
.hero-stats-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: flex;
}
.hero-stat {
  flex: 1;
  padding: 22px 0;
  display: flex; align-items: center; gap: 16px;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: var(--border-subtle);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.8rem;
  color: var(--copper-glow);
  line-height: 1;
}
.hero-stat-text {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.4; font-weight: 400;
}

.ribbon {
  background: var(--bg-secondary);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.ribbon-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 35s linear infinite;
}
.ribbon-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  color: rgba(244, 240, 232, 0.3);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ribbon-item::before {
  content: ''; width: 5px; height: 5px;
  background: var(--copper);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about { background: var(--cream); padding: 120px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden;
}
.about-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-primary));
  display: flex; align-items: center; justify-content: center;
}
.about-emblem {
  width: 160px; height: 160px;
  border: 1.5px solid var(--copper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: emblemPulse 4s ease-in-out infinite;
}
.about-emblem::before {
  content: ''; position: absolute;
  width: 120px; height: 120px;
  border: 1px solid rgba(196, 122, 42, 0.3);
  border-radius: 50%;
}
.about-emblem::after {
  content: ''; width: 8px; height: 8px;
  background: var(--copper); border-radius: 50%;
}
@keyframes emblemPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.about-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 180px; height: 180px;
  border: 1px solid var(--cream-dark);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.about-feat {
  display: flex; gap: 14px; align-items: flex-start;
}
.about-feat-icon {
  width: 36px; height: 36px;
  background: var(--bg-warm-alt);
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon svg { width: 16px; height: 16px; color: var(--copper); }
.about-feat h3 { font-weight: 700; font-size: 0.86rem; color: var(--bg-primary); margin-bottom: 3px; }
.about-feat p { font-size: 0.78rem; color: var(--text-dark-muted); line-height: 1.5; }

.products {
  background: var(--bg-primary);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.products::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.products .section-title { color: var(--cream); }
.products .section-subtitle { color: var(--text-muted); }

.products-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; margin-top: 60px;
  background: var(--border-subtle);
}
.product-card {
  grid-column: span 2; /* Varsayılan 3'lü dizilim (6/3=2) */
  background: var(--bg-secondary);
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  min-height: 400px;
  display: flex; flex-direction: column;
}
.product-card.span-3 { grid-column: span 3; } /* 2'li dizilim (6/2=3) */

.product-card:hover {
  background: var(--bg-elevated);
  transform: translateY(-6px);
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.product-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover::after { transform: scaleX(1); }

.product-num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 2.8rem;
  color: rgba(196, 122, 42, 0.07);
  line-height: 1; margin-bottom: 20px;
}
.product-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.product-icon-wrap svg { width: 22px; height: 22px; color: var(--copper-light); }

.product-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.4rem;
  color: var(--cream); margin-bottom: 10px;
}
.product-tagline {
  font-family: var(--font-display);
  font-style: italic; font-size: 0.92rem;
  color: var(--copper-light); margin-bottom: 12px;
}
.product-quote {
  font-family: var(--font-display);
  font-style: italic; font-size: 0.88rem;
  color: var(--copper-glow); margin-bottom: 18px;
  line-height: 1.5;
  opacity: 0.9;
}
.product-desc {
  font-size: 0.86rem; color: var(--text-muted);
  line-height: 1.75; flex-grow: 1;
}
.product-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 24px;
}
.product-tag {
  padding: 6px 14px;
  background: rgba(196, 122, 42, 0.1);
  border: 1px solid var(--border-warm);
  font-size: 0.72rem; color: var(--copper-glow);
  letter-spacing: 0.04em;
  font-weight: 500;
  border-radius: 2px;
}
.product-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  color: var(--copper); font-weight: 600; font-size: 0.78rem;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: gap 0.3s;
}
.product-link:hover { gap: 14px; color: var(--copper-light); }
.product-link svg { width: 14px; height: 14px; }

.products-row2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border-subtle); margin-top: 1px;
}

/* ═══════════════════════════════
   KIL ÇADIR
   ═══════════════════════════════ */
.showcase {
  background: var(--bg-warm);
  padding: 120px 0; position: relative; overflow: hidden;
}
.showcase::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent, transparent 140px, rgba(26,24,20,0.015) 140px, rgba(26,24,20,0.015) 141px);
}
.showcase-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.showcase-features { display: grid; gap: 16px; margin-top: 36px; }
.showcase-feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--cream-dark);
  transition: all 0.35s;
}
.showcase-feat:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--copper);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.showcase-feat-icon {
  width: 42px; height: 42px;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.showcase-feat-icon svg { width: 18px; height: 18px; color: var(--copper-light); }
.showcase-feat h3 { font-weight: 700; font-size: 0.9rem; color: var(--bg-primary); margin-bottom: 3px; }
.showcase-feat p { font-size: 0.82rem; color: var(--text-dark-muted); line-height: 1.6; }

.showcase-visual { position: relative; }
.showcase-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-primary));
  position: relative; overflow: hidden;
}
.showcase-img::before {
  content: 'KIL ÇADIR'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: rgba(196, 122, 42, 0.1); letter-spacing: 0.1em; white-space: nowrap;
}
.showcase-badge {
  position: absolute; bottom: -16px; left: -16px;
  width: 130px; height: 130px;
  background: var(--copper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.showcase-badge-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.8rem;
  color: var(--bg-primary); line-height: 1;
}
.showcase-badge-text {
  font-size: 0.62rem; font-weight: 700;
  color: var(--bg-secondary); text-transform: uppercase;
  letter-spacing: 0.06em; text-align: center; margin-top: 4px;
}

.trust {
  background: var(--bg-secondary); padding: 72px 0; position: relative;
}
.trust::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 122, 42, 0.05) 0%, transparent 60%);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); position: relative;
}
.trust-item { text-align: center; padding: 36px 16px; position: relative; }
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 22%; height: 56%;
  width: 1px; background: var(--border-subtle);
}
.trust-number {
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  color: var(--copper-glow); line-height: 1; margin-bottom: 8px;
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); }
.trust-sub { font-size: 0.7rem; color: rgba(244,240,232,0.25); margin-top: 4px; }

.process { background: var(--cream); padding: 120px 0; }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%;
  height: 1px; background: var(--cream-dark);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-step-num {
  width: 68px; height: 68px;
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: var(--cream);
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--text-dark-muted);
  transition: all 0.35s;
}
.process-step:hover .process-step-num {
  background: var(--bg-primary); border-color: var(--bg-primary);
  color: var(--copper);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  color: var(--bg-primary); margin-bottom: 8px;
}
.process-step p { font-size: 0.82rem; color: var(--text-dark-muted); line-height: 1.6; }

.municipality {
  background: var(--bg-primary); padding: 120px 0;
  position: relative; overflow: hidden;
}
.municipality::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 500px; height: 500px;
  border: 1px solid rgba(196, 122, 42, 0.04);
  border-radius: 50%;
}
.municipality-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.municipality .section-title { color: var(--cream); }
.municipality .section-subtitle { color: var(--text-muted); }

.municipality-refs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 36px;
}
.muni-ref {
  background: rgba(196, 122, 42, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 18px 14px; text-align: center;
  transition: all 0.3s;
}
.muni-ref:hover { border-color: var(--copper); background: rgba(196, 122, 42, 0.08); }
.muni-ref svg { width: 24px; height: 24px; color: var(--copper); margin-bottom: 8px; }
.muni-ref span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; display: block; }

.muni-cards { display: grid; gap: 14px; }
.muni-card {
  background: rgba(244, 240, 232, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.35s;
}
.muni-card:hover {
  background: rgba(196, 122, 42, 0.04);
  border-color: var(--copper);
  transform: translateX(6px);
}
.muni-card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.muni-card-icon svg { width: 20px; height: 20px; color: var(--copper); }
.muni-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--cream); margin-bottom: 5px;
}
.muni-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.investment {
  background: linear-gradient(to bottom, var(--bg-warm), var(--cream));
  padding: 120px 0;
}
.investment-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.investment-visual {
  position: relative; aspect-ratio: 5/4;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-primary));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.investment-visual::before {
  content: 'DÜĞÜN SALONU';
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: rgba(196, 122, 42, 0.08); letter-spacing: 0.1em;
}
.investment-visual::after {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(196, 122, 42, 0.08);
}
.investment-list { display: grid; gap: 14px; margin-top: 28px; }
.inv-item {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}
.inv-item:hover {
  border-color: var(--copper);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateX(4px);
}
.inv-check {
  width: 26px; height: 26px;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inv-check svg { width: 14px; height: 14px; color: var(--copper); }
.inv-item span { font-size: 0.88rem; color: var(--bg-elevated); font-weight: 500; }

.form-section {
  background: var(--bg-primary);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 122, 42, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 122, 42, 0.04) 0%, transparent 50%);
}
.form-section .section-title { color: var(--cream); }
.form-section .section-subtitle { color: var(--text-muted); }

.form-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: flex-start;
  position: relative;
}
.form-info-cards { display: grid; gap: 16px; margin-top: 40px; }
.form-info-card {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--border-subtle);
  background: rgba(244, 240, 232, 0.02);
  transition: border-color 0.3s;
  text-decoration: none;
}
.form-info-card:hover { border-color: var(--copper); }
.form-info-card-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.form-info-card-icon svg { width: 18px; height: 18px; color: var(--copper); }
.form-info-card h3 { font-weight: 600; font-size: 0.88rem; color: var(--cream); margin-bottom: 2px; }
.form-info-card p { font-size: 0.78rem; color: var(--text-muted); }

.form-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 48px 40px;
}
.form-container h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--cream); margin-bottom: 6px;
}
.form-container > p {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(244, 240, 232, 0.45);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-primary) !important;
  border: 1px solid var(--border-subtle);
  color: var(--cream) !important;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(244,240,232,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--copper); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(244,240,232,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background-color: #1a1814 !important; color: #f4f0e8 !important; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--copper);
  color: var(--bg-primary);
  padding: 16px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.35s;
}
.form-submit:hover {
  background: var(--copper-light);
  box-shadow: 0 8px 32px rgba(196, 122, 42, 0.3);
  transform: translateY(-2px);
}
.form-submit svg { width: 16px; height: 16px; }

.faq { background: var(--cream); padding: 120px 0; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-grid { max-width: 780px; margin: 0 auto; display: grid; gap: 1px; }
.faq-item {
  background: white;
  border: 1px solid var(--cream-dark);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--copper); }
.faq-q {
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: background 0.3s;
}
.faq-q:hover { background: var(--bg-warm); }
.faq-q h4 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  color: var(--bg-primary);
}
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--text-dark-muted); transition: transform 0.35s; }
.faq-item.active .faq-toggle {
  background: var(--bg-primary); border-color: var(--bg-primary);
}
.faq-item.active .faq-toggle svg { color: var(--copper); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-a { max-height: 300px; padding: 0 28px 22px; }
.faq-a p { font-size: 0.88rem; color: var(--text-dark-muted); line-height: 1.8; }


.cta-section {
  background: var(--bg-secondary); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 122, 42, 0.06) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream); margin-bottom: 14px;
}
.cta-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
}
.cta-phone a {
  color: var(--copper-glow); text-decoration: none;
  font-weight: 600; font-size: 1.05rem;
}

.footer { background: var(--bg-primary); padding: 72px 0 36px; border-top: 1px solid var(--border-subtle); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 56px;
}
.footer-brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.2rem; color: var(--cream); margin-bottom: 14px;
}
.footer-brand span { color: var(--copper-light); font-weight: 400; font-style: italic; }
.footer-desc { font-size: 0.78rem; color: rgba(244,240,232,0.3); line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: rgba(244,240,232,0.45); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--copper-light); }
.footer-bottom {
  border-top: 1px solid rgba(244,240,232,0.05);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.75rem; color: rgba(244,240,232,0.25); }

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; gap: 1px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.ms-btn {
  flex: 1; padding: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; color: white;
  transition: all 0.3s;
}
.ms-call { background: #c47a2a; color: #fff; } 
.ms-whatsapp { background: #1a1814; color: #fff; } /* Siyah/Koyu */

@media (min-width: 769px) {
  .mobile-sticky-bar { display: none; }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card, .product-card.span-3 { grid-column: span 1; }
  .about-grid, .showcase-grid, .municipality-grid, .investment-grid, .form-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .hero-controls { bottom: 80px; right: 28px; }
}

@media (max-width: 768px) {
  .hero-stats { display: none !important; }
  .hero-slide-bg { background-size: cover !important; background-position: center center !important; }
  .hero-slide {
    align-items: center;
    padding-bottom: 30;
  }
    .hero-slide-desc {
    margin-top: 110px; /* Bu sayıyı artırarak daha da aşağı itebilirsin */
    color: #ffffff;
  }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12, 11, 9, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px; gap: 14px;
  }
  .hero { min-height: 70svh; }
  .hero-slide-title { font-size: 2.2rem !important; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; padding: 16px 0; }
  .hero-stat:nth-child(2)::after { display: none; }
  .hero-controls { bottom: 70px; right: 20px; }
  .hero-slide-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card, .product-card.span-3 { grid-column: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-steps::before { display: none; }
  .municipality-refs { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-visual { max-height: 280px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item::after { display: none !important; }
  .process-steps { grid-template-columns: 1fr; }
  .municipality-refs { grid-template-columns: 1fr; }
  .hero-stat { flex: 1 1 100%; }
}
/* Recent Projects Slider */
.recent-projects {
  background: var(--bg-warm);
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.rp-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 50px;
  padding-left: 4px;
  padding-right: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rp-slider-container::-webkit-scrollbar { 
    display: none;
}

.rp-card {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  scroll-snap-align: start;
  transition: all 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.rp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--copper);
}

.rp-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rp-year {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-primary);
  color: var(--copper);
  padding: 6px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rp-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bg-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rp-location {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-location svg {
  width: 14px;
  height: 14px;
  color: var(--copper);
}

.rp-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  text-decoration: none;
  transition: all 0.3s;
}

.rp-link:hover {
  gap: 12px;
  color: var(--copper);
}

.rp-actions {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 768px) {
  .rp-card {
    flex: 0 0 280px;
  }
  .rp-image {
    height: 200px;
  }
}
  
/* Recent Projects Updates */  
.rp-controls { display: flex; gap: 12px; position: absolute; top: 0; right: 28px; margin-top: 10px; }  
.rp-arrow { width: 44px; height: 44px; border: 1px solid var(--cream-dark); background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; color: var(--text-dark); }  
.rp-arrow:hover { background: var(--copper); border-color: var(--copper); color: var(--bg-primary); }  
.rp-image { height: 240px; overflow: hidden; position: relative; }  
.rp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }  
.rp-card:hover .rp-image img { transform: scale(1.05); }  
@media (max-width: 768px) {
  .rp-controls {
    position: relative;
    top: auto;
    right: auto;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
