/* ==========================================================================
   MODA YAPI İNŞAAT & GAYRİMENKUL — KURUMSAL WEB SİTESİ STİL SİSTEMİ
   Mimari Palet: Koyu Antrasit (#202522), Orman Yeşili (#29483A), 
   Kırık Beyaz (#F7F5F0), Kum Beji (#D8CBB5), Vurgu Bronz/Gold (#A8895A)
   Tipografi: Başlıklar (Manrope), Gövde (Inter)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Renk Paleti (Briefe %100 Sadık) */
  --color-antrasit: #202522;
  --color-forest: #29483A;
  --color-offwhite: #F7F5F0;
  --color-sand: #D8CBB5;
  --color-gold: #A8895A;
  --color-gold-light: #C4A778;
  --color-gold-dark: #8C6F42;
  
  /* Fonksiyonel Zeminler */
  --bg-primary: #F7F5F0;          /* Kırık beyaz ana zemin */
  --bg-secondary: #EFECE4;        /* Hafif kum beji tonlu zemin */
  --bg-card: #FFFFFF;             /* Ferah, tertemiz beyaz kartlar */
  --bg-dark: #202522;             /* Koyu antrasit bölümler */
  --bg-forest: #29483A;           /* Orman yeşili bölümler */
  --bg-sage-tint: #EBF0EC;        /* Çok yumuşak adaçayı yeşili dokunuş */
  
  /* Tipografi Renkleri */
  --text-primary: #202522;        /* Koyu antrasit — Güçlü ve okunaklı */
  --text-muted: #57605A;          /* Göz yormayan kurumsal gri */
  --text-light: #F7F5F0;          /* Koyu zemin üzeri kırık beyaz */
  --text-dim: #849188;            /* İkincil detay yazıları */
  
  /* Kenarlıklar & Çizgiler */
  --border-subtle: rgba(41, 72, 58, 0.12);
  --border-sand: #D8CBB5;
  --border-gold: rgba(168, 137, 90, 0.35);
  
  /* Gölgeler (Yumuşak, Organik ve Mimari) */
  --shadow-sm: 0 4px 16px rgba(32, 37, 34, 0.04);
  --shadow-md: 0 10px 30px rgba(32, 37, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(32, 37, 34, 0.1);
  --shadow-gold: 0 8px 24px rgba(168, 137, 90, 0.25);
  
  /* Font Aileleri */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Geçiş & Radius */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

/* ==========================================================================
   TEMEL SIFIRLAMA & GENEL AYARLAR
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

/* ==========================================================================
   YARDIMCI SINIFLAR & VURGULAR
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-header.text-left {
  text-align: left;
  margin: 0 0 40px 0;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--bg-sage-tint);
  border: 1px solid rgba(41, 72, 58, 0.2);
  color: var(--color-forest);
  margin-bottom: 18px;
}

.badge-gold {
  background: rgba(168, 137, 90, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--color-gold-dark);
}

.text-gold {
  color: var(--color-gold);
}

.text-forest {
  color: var(--color-forest);
}

/* ==========================================================================
   BUTONLAR
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-forest);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #1e362b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 72, 58, 0.3);
}

.btn-gold {
  background: var(--color-gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 137, 90, 0.35);
}

.btn-outline {
  background: #FFFFFF;
  border: 1.5px solid var(--color-antrasit);
  color: var(--color-antrasit);
}

.btn-outline:hover {
  background: var(--color-antrasit);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(247, 245, 240, 0.8);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--color-antrasit);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   1. HEADER & MENÜ (SABİT, ŞIK, KOMPAKT)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(32, 37, 34, 0.04);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-antrasit);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-forest);
  box-shadow: 0 2px 8px rgba(41, 72, 58, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-forest);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-forest);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-antrasit);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--color-antrasit);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  cursor: pointer;
}

/* ==========================================================================
   2. HERO BÖLÜMÜ (GENİŞ, ETKİLEYİCİ, MİMARİ DRONE GÖRSELİ)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: #202522;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
  transform: scale(1.02);
  transition: transform 8s ease;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(32, 37, 34, 0.4) 0%, rgba(32, 37, 34, 0.78) 100%);
  z-index: 2;
}

/* Tanıtım Videosu Butonu (Hero) */
.btn-video-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(247, 245, 240, 0.12);
  border: 1.5px solid rgba(247, 245, 240, 0.45);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition);
}

.btn-video-play:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-antrasit);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.btn-video-play .play-icon-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #FFFFFF;
  font-size: 13px;
  box-shadow: 0 0 0 0 rgba(168, 137, 90, 0.7);
  animation: pulse-play 2s infinite;
  transition: var(--transition);
}

.btn-video-play:hover .play-icon-pulse {
  background: var(--color-forest);
  transform: scale(1.08);
}

@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 137, 90, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(168, 137, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(168, 137, 90, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: #FFFFFF;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(247, 245, 240, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 720px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 36px;
  border-top: 1px solid rgba(247, 245, 240, 0.2);
  max-width: 680px;
}

.hero-stat-item h3 {
  font-size: 2.2rem;
  color: var(--color-sand);
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-stat-item p {
  font-size: 0.88rem;
  color: rgba(247, 245, 240, 0.75);
  font-weight: 500;
}

/* ==========================================================================
   3. HAKKIMIZDA & GÜVEN VEREN TANITIM
   ========================================================================== */
.about-section {
  background: var(--bg-primary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--color-forest);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.about-pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-sage-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 18px;
  margin-bottom: 12px;
}

.about-pillar-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-pillar-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-visual-box {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-founder-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
}

.about-founder-badge h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about-founder-badge span {
  font-size: 0.78rem;
  color: var(--color-forest);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   3.5. 2027 VİZYON PROJESİ (DOĞAL TAŞ KONAKLAR & AVLU YAŞAMI)
   ========================================================================== */
.future-project-section {
  background: linear-gradient(135deg, #1C221F 0%, #151A17 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(168, 137, 90, 0.2);
  border-bottom: 1px solid rgba(168, 137, 90, 0.2);
}

.future-project-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 137, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.future-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 137, 90, 0.18);
  border: 1px solid rgba(168, 137, 90, 0.6);
  color: #E2CFA8;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(168, 137, 90, 0.2);
}

.future-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.future-gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.future-main-image-box {
  position: relative;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.future-main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.future-main-image-box:hover img {
  transform: scale(1.04);
}

.future-main-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 24, 22, 0.95) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.future-main-caption h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.future-main-caption p {
  color: #D8CBB5;
  font-size: 0.88rem;
}

.future-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.future-thumb-btn {
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  opacity: 0.6;
  transition: var(--transition);
}

.future-thumb-btn.active,
.future-thumb-btn:hover {
  opacity: 1;
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.future-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-content-box h2 {
  font-size: 2.3rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
}

.future-content-box .future-lead {
  font-size: 1.05rem;
  color: #D8CBB5;
  line-height: 1.7;
  margin-bottom: 24px;
}

.future-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.future-spec-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: var(--transition);
}

.future-spec-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
}

.future-spec-item i {
  font-size: 20px;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}

.future-spec-item h5 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.future-spec-item p {
  font-size: 0.8rem;
  color: #A3AFA8;
  line-height: 1.4;
}

/* ==========================================================================
   4. PROJELERİMİZ & MEVCUT PROJE DETAYLARI (1+1 & 2+1)
   ========================================================================== */
.projects-section {
  background: var(--bg-secondary);
}

/* Öne Çıkan Mevcut Proje Vitrini */
.featured-project-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  margin-bottom: 60px;
}

.featured-project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.featured-project-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
}

.featured-project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-badge-video-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(20, 24, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold);
  border: 1px solid rgba(168, 137, 90, 0.4);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-video-overlay-cta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(20, 24, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.featured-video-overlay-cta:hover {
  background: rgba(20, 24, 22, 0.95);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.featured-video-play-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(168, 137, 90, 0.7);
  animation: pulseGold 2s infinite;
}

.featured-video-play-text strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.featured-video-play-text span {
  display: block;
  font-size: 0.78rem;
  color: #D8CBB5;
}

/* Villa Sinematik Mimari Video Vitrini (Sayfadaki Tek Video Alanı) */
.villa-single-video-showcase {
  margin: 0 0 50px 0;
}

.villa-video-inner-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(32, 37, 34, 0.04);
  text-align: center;
}

.villa-video-title-bar {
  max-width: 650px;
  margin: 0 auto 24px auto;
}

.villa-video-title-bar h4 {
  font-size: 1.65rem;
  color: var(--text-primary);
  margin: 10px 0 6px 0;
}

.villa-video-title-bar p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.villa-video-frame {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 1.5px solid var(--border-subtle);
  background: #000000;
  aspect-ratio: 16 / 9;
}

.villa-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-badge-float {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--color-forest);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.featured-project-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-forest);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.featured-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Daire Tipleri Kartları (1+1 & 2+1) */
.apartment-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.apartment-type-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: var(--transition);
}

.apartment-type-card:hover {
  border-color: var(--color-forest);
  background: var(--bg-sage-tint);
}

.apartment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.apartment-tag {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-forest);
}

.apartment-area {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.apartment-features {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Proje Özellikleri İkonları */
.project-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-item i {
  color: var(--color-forest);
  font-size: 16px;
}

/* ==========================================================================
   BÜTÜNLEŞİK LÜKS VİLLA FOTOĞRAF GALERİSİ (10 AÇI)
   ========================================================================== */
.villa-gallery-title-box {
  margin: 50px 0 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.villa-gallery-title-box h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
}

.villa-gallery-title-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.villa-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.villa-photo-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  background: #FFFFFF;
}

.villa-photo-item:nth-child(1),
.villa-photo-item:nth-child(6) {
  grid-column: span 2;
  height: 320px;
}

.villa-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-photo-item:hover img {
  transform: scale(1.08);
}

.villa-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 37, 34, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.villa-photo-item:hover .villa-photo-overlay {
  background: linear-gradient(180deg, rgba(32, 37, 34, 0.2) 0%, rgba(32, 37, 34, 0.92) 100%);
}

.villa-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-forest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.villa-photo-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.villa-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-antrasit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition);
}

.villa-photo-item:hover .villa-zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Thumbnail Çubuğu (10 Resim) */
.modal-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

/* ==========================================================================
   5. NEDEN MODA YAPI? (GÜVEN & MİMARİ ANLAYIŞ)
   ========================================================================== */
.why-us-section {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-sage-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(41, 72, 58, 0.15);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   6. PROJE ÖZELLİKLERİ (TEKNİK & KONFOR DONANIMLARI)
   ========================================================================== */
.features-section {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-item-card:hover {
  border-color: var(--color-forest);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background: var(--bg-sage-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 18px;
  margin-bottom: 14px;
}

.feature-item-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-item-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   7. LOKASYON & BÖLGE AVANTAJLARI (DAVUTLAR - GÜZELÇAMLI)
   ========================================================================== */
.location-section {
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-lead {
  font-size: 1.15rem;
  color: var(--color-forest);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.location-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.location-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.location-point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.location-point-item i {
  color: var(--color-forest);
  font-size: 18px;
}

.location-point-item div h5 {
  font-size: 0.9rem;
  margin-bottom: 1px;
}

.location-point-item div span {
  font-size: 0.78rem;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.location-map-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   8. İNŞAAT SÜRECİ & TİMELİNE
   ========================================================================== */
.process-section {
  background: var(--bg-secondary);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border-sand);
  z-index: 0;
}

.timeline-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.timeline-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-sage-tint);
  border: 2px solid var(--color-forest);
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.timeline-step-card.active .timeline-step-num {
  background: var(--color-forest);
  color: #FFFFFF;
}

.timeline-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline-step-badge {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-sage-tint);
  color: var(--color-forest);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(41, 72, 58, 0.15);
}

.timeline-step-badge i {
  color: var(--color-forest);
  font-size: 13px;
}

/* ==========================================================================
   9. TAMAMLANAN PROJELER / REFERANSLAR
   ========================================================================== */
.references-section {
  background: var(--bg-primary);
}

.ref-counter-banner {
  background: #FFFFFF;
  border: 1.5px solid rgba(168, 137, 90, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 6px 24px rgba(168, 137, 90, 0.08);
  flex-wrap: wrap;
}

.ref-counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ref-counter-digit {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--color-forest);
}

.ref-counter-text h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.ref-counter-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reference-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-forest);
}

.reference-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.reference-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reference-card:hover .reference-img-box img {
  transform: scale(1.08);
}

.reference-tag-float {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-forest);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.reference-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.reference-body h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.reference-location {
  font-size: 0.8rem;
  color: var(--color-forest);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.reference-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
/* Öne Çıkan Tamamlanan Rezidans Projesi (3 Fotoğraflı) */
.featured-reference-block {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.featured-reference-block:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-lg);
}

.featured-reference-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.ref-3photos-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 160px);
  gap: 12px;
}

.ref-photo-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.ref-photo-thumb:first-child {
  grid-row: span 2;
}

.ref-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ref-photo-thumb:hover img {
  transform: scale(1.08);
}

.ref-photo-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(32, 37, 34, 0.85);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.ref-content-col h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.ref-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.ref-features-list li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ref-features-list li i {
  color: var(--color-forest);
}

 /* ==========================================================================
   10. İLETİŞİM & HAYALİNİZDEKİ YAŞAM ALANI (SADE, AÇIK & FERAH)
   ========================================================================== */
.contact-cta-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.contact-card-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 10px 30px rgba(32, 37, 34, 0.04);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.contact-info-col h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  line-height: 1.25;
}

.contact-info-col p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-direct-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.contact-direct-item:hover {
  border-color: var(--color-forest);
  background: var(--bg-sage-tint);
}

.contact-icon-bubble {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid rgba(41, 72, 58, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-direct-item h5 {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-direct-item p, .contact-direct-item a {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}

.contact-form-col {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group-field label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-control-input {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.form-control-input:focus {
  border-color: var(--color-forest);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(41, 72, 58, 0.1);
}

textarea.form-control-input {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   11. PROJE DETAY MODAL PENCERESİ (POPUP)
   ========================================================================== */
.project-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 37, 34, 0.7);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.project-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: var(--transition);
}

.project-modal-backdrop.active .project-modal-container {
  transform: scale(1);
}

.modal-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-button:hover {
  background: var(--color-forest);
  color: #FFFFFF;
}

.modal-inner-body {
  padding: 40px;
}

.modal-main-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-primary);
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.modal-spec-cell h6 {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-spec-cell p {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-forest);
}

.modal-features-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 30px 0;
}

.modal-features-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-features-checklist li i {
  color: var(--color-forest);
}

.modal-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.modal-thumb-btn {
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: var(--transition);
}

.modal-thumb-btn:hover,
.modal-thumb-btn.active {
  border-color: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   11.5. MODA YAPI PROMOSYON VİDEO MODALI
   ========================================================================== */
.promo-video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 18, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.promo-video-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.promo-video-modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.promo-video-modal-backdrop.active .promo-video-modal-container {
  transform: scale(1) translateY(0);
}

.promo-video-header {
  padding: 24px 28px 16px 28px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.promo-video-player-wrapper {
  position: relative;
  width: 100%;
  background: #000000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-video-player-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #000000;
}

.promo-video-footer {
  padding: 18px 28px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   12. FOOTER (SADE, MODERN, FERAH)
   ========================================================================== */
.site-footer {
  background: #181D1A;
  color: var(--color-offwhite);
  padding: 60px 0 24px 0;
  border-top: 1px solid rgba(216, 203, 181, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.7);
}

.footer-col h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(247, 245, 240, 0.75);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(247, 245, 240, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   10. KAT KARŞILIĞI & ARSA DEĞERLEME (SADE, ESTETİK & FERAH)
   ========================================================================== */
.land-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.land-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.land-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(32, 37, 34, 0.03);
  transition: var(--transition);
}

.land-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
}

.land-pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-primary);
  border: 1px solid rgba(41, 72, 58, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 22px;
  margin-bottom: 20px;
}

.land-pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.land-pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.land-cta-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(32, 37, 34, 0.03);
}

.land-cta-text h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.land-cta-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. İLETİŞİM & BİZE ULAŞIN (LÜKS, FERAH & SADE)
   ========================================================================== */
.contact-cta-section {
  background: var(--bg-primary);
  padding: 60px 0;
}

.contact-luxury-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px 36px 40px;
  box-shadow: 0 10px 30px rgba(32, 37, 34, 0.03);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.contact-luxury-header {
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.contact-luxury-title {
  font-size: 2.2rem;
  margin: 12px 0 10px 0;
  color: var(--text-primary);
  line-height: 1.25;
}

.contact-luxury-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-action-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.contact-pill-item {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-pill-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.contact-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.contact-pill-item:hover .contact-pill-icon {
  background: var(--color-forest);
  color: #FFFFFF;
  border-color: var(--color-forest);
}

.contact-pill-text span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-pill-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.contact-pill-text small {
  display: block;
  font-size: 0.78rem;
  color: var(--color-forest);
  font-weight: 600;
}

/* WhatsApp Vurgulu Kart */
.contact-pill-item.pill-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.04);
}

.contact-pill-item.pill-whatsapp:hover {
  border-color: #25D366;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.15);
}

.contact-pill-item.pill-whatsapp .contact-pill-icon {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-pill-item.pill-whatsapp:hover .contact-pill-icon {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.contact-office-footer-note {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   12. FOOTER (MİNİMALİST, PREMİUM & ESTETİK)
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  color: var(--text-primary);
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-modern-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-aesthetic-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-aesthetic-nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.footer-aesthetic-nav a:hover {
  color: var(--color-forest);
  transform: translateY(-1px);
}

.footer-minimal-copyright {
  text-align: right;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.footer-minimal-copyright p {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.footer-minimal-copyright span {
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* Floating WhatsApp Düğmesi */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   13. RESPONSIVE TASARIM (TABLET & MOBİL)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid,
  .featured-project-grid,
  .location-grid,
  .contact-card-wrapper,
  .land-card-wrapper,
  .featured-reference-grid,
  .future-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .future-main-image-box {
    height: 380px;
  }
  
  .why-grid,
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .land-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .land-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-simple-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .footer-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .villa-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-photo-item:nth-child(1),
  .villa-photo-item:nth-child(6) {
    grid-column: span 2;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-track {
    grid-template-columns: 1fr;
  }
  
  .timeline-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }

  .future-content-box h2 {
    font-size: 1.8rem;
  }

  .future-main-image-box {
    height: 260px;
  }

  .future-thumbs-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .future-thumb-btn {
    height: 55px;
  }

  .future-specs-list {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-pillars,
  .apartment-types-grid,
  .project-highlights-grid,
  .location-points-grid,
  .form-grid-2,
  .modal-specs-row,
  .modal-features-checklist,
  .modal-thumbnails-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .villa-photo-grid {
    grid-template-columns: 1fr;
  }

  .villa-photo-item:nth-child(1),
  .villa-photo-item:nth-child(6) {
    grid-column: span 1;
    height: 240px;
  }

  .ref-3photos-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ref-photo-thumb {
    height: 200px;
  }

  .ref-photo-thumb:first-child {
    grid-row: span 1;
  }
  
  .why-grid,
  .features-grid,
  .references-grid,
  .land-pillars-grid,
  .footer-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-simple-grid,
  .contact-card-wrapper,
  .land-card-wrapper,
  .featured-project-content,
  .featured-reference-block,
  .modal-inner-body {
    padding: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .promo-video-modal-container {
    border-radius: var(--radius-md);
  }

  .promo-video-header {
    padding: 16px 18px 12px 18px;
  }

  .promo-video-footer {
    padding: 14px 18px;
    flex-direction: column;
    gap: 10px;
  }

  .promo-video-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .contact-action-pills {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-luxury-card {
    padding: 32px 20px 24px 20px;
  }

  .contact-luxury-title {
    font-size: 1.7rem;
  }

  .footer-modern-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-aesthetic-nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .footer-minimal-copyright {
    text-align: center;
  }

  .future-units-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .villa-cinematic-banner {
    padding: 24px 16px;
    margin-bottom: 36px;
  }

  .villa-cinematic-header h3 {
    font-size: 1.35rem;
  }

  .ref-counter-banner {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ref-counter-box {
    gap: 14px;
  }

  .ref-counter-digit {
    font-size: 2.2rem;
  }
}
