/* ==========================================
   NOVA DAVET EVİ - PREMİUM MİNİMAL STİL SİSTEMİ
   ========================================== */

:root {
  --bg-primary: #FAF7F2;      /* Sıcak Krem Fildişi */
  --bg-secondary: #F3ECE2;    /* Hafif Koyu Krem */
  --text-dark: #0A2342;       /* Marka Laciverti (Logodan) */
  --text-muted: #536278;      /* Yumuşak Slate Mavi/Gri */
  --primary-gold: #C5A059;    /* Lüks Mat Altın */
  --gold-hover: #A37F3D;      /* Koyu Altın */
  --white: #FFFFFF;
  
  --border: #E5DDD3;          /* Krem Rengi Çizgi */
  --border-focus: #C5A059;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px rgba(30, 34, 31, 0.05);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tag ve Başlık Tasarımları */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 18px; /* Increased padding below uppercase tag */
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.7rem; /* Generous title font size */
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px; /* Increased margin bottom for breathing room */
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* --- BUTONLAR --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 700;
  border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --- HEADER --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-typography {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title-text {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dark);
  line-height: 1;
}

.logo-subtitle-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary-gold);
  margin-top: 3px;
}

.brand-logo-svg {
  color: var(--text-dark);
  transition: var(--transition);
}

.logo-brand:hover .brand-logo-svg {
  color: var(--primary-gold);
  transform: rotate(-10deg) scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  opacity: 0.85;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:hover {
  color: var(--primary-gold);
  opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-phone svg {
  color: inherit;
  fill: currentColor;
  transition: var(--transition);
}

.btn-phone:hover {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Mobilde sadeleştirmek için menüyü gizliyoruz */
  }
}

/* --- ENTRANCE SECTION (SPLIT HERO/FORM) --- */
.entrance-header {
  text-align: center;
  margin-bottom: 50px;
}

.entrance-main-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 10px 0 16px 0;
  line-height: 1.2;
}

.entrance-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.slider-hero-section {
  padding: 0;
  background: var(--bg-primary);
  width: 100%;
}

.entrance-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 600px;
  border-radius: 0; /* Full bleed layout removes rounded corners */
  overflow: hidden;
}

/* Progressive Fade & Smooth Blur Transitions (Top & Bottom) */
.entrance-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px; /* Reduced height to cover only the header area */
  background: linear-gradient(to bottom, var(--bg-primary) 0%, rgba(250, 247, 242, 0.4) 50%, rgba(250, 247, 242, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

.entrance-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px; /* Reduced height to keep badges sharp and clear */
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(250, 247, 242, 0.3) 50%, rgba(250, 247, 242, 0) 100%);
  pointer-events: none;
  z-index: 3;
}

/* --- HAKKIMIZDA & FORM BÖLÜMÜ (YAN YANA YERLEŞİM) --- */
.about-form-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.about-form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: start;
}

.about-text-column {
  padding-right: 20px;
}

.about-paragraph {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Hakkımızda 2x2 Künye Kartları */
.about-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-fact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.12); /* Subtle gold border instead of gray */
  border-radius: 16px; /* Rounded luxury corners */
  box-shadow: 0 10px 25px rgba(10, 35, 66, 0.03); /* Richer premium shadow */
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 90px;
}

.about-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.12);
  border-color: var(--primary-gold);
}

.about-fact-card .fact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%; /* Perfect circle */
  background: rgba(197, 160, 89, 0.08);
  color: var(--primary-gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-fact-card:hover .fact-icon-wrapper {
  background: var(--primary-gold);
  color: var(--white);
  transform: scale(1.05);
}

.about-fact-card .fact-details h4 {
  font-family: var(--font-body); /* Clean, modern geometric sans-serif */
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.about-fact-card .fact-details p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted); /* Soft elegant slate blue/gray */
  font-weight: 500;
  margin: 0;
}

.salon-quick-info {
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.salon-quick-info p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-card-column {
  position: sticky;
  top: 100px;
}

.slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 80px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: none;
  font-size: 3.5rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.slider-arrow:hover {
  color: var(--primary-gold);
  transform: translateY(-50%) scale(1.15);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.slider-badge {
  position: absolute;
  bottom: 20px;
  background: rgba(10, 35, 66, 0.45); /* Glassmorphic transparency */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  user-select: none;
  font-family: var(--font-body);
  box-shadow: 0 8px 32px 0 rgba(10, 35, 66, 0.15);
}

.badge-left {
  left: 20px;
  padding: 0 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-right {
  right: 20px;
  width: 34px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.badge-right:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* --- BOOKING CARD HEADER --- */
.booking-card-header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 0;
  /* Removed border-bottom for card-external placement */
}

.booking-card-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.booking-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 320px;
  margin: 0 auto;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 15, 30, 0.96);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

.prev-lightbox { left: 40px; }
.next-lightbox { right: 40px; }

/* Mobilde Giriş ve Slider Ayarları */
@media (max-width: 992px) {
  .about-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-card-column {
    position: relative;
    top: 0;
  }
  .entrance-slider {
    height: 380px;
  }
}

@media (max-width: 580px) {
  .slider-hero-section {
    padding: 85px 0 20px 0;
  }
  .about-form-section {
    padding: 40px 0 60px 0;
  }
  .entrance-slider {
    height: 280px;
  }
  .slider-arrow {
    width: auto;
    height: auto;
    font-size: 2.2rem;
    background: transparent;
    border: none;
  }
  .prev-arrow { left: 10px; }
  .next-arrow { right: 10px; }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .prev-lightbox { left: 15px; }
  .next-lightbox { right: 15px; }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  .header-container {
    padding: 12px 16px;
  }
  .logo-brand svg {
    width: 50px;
    height: 50px;
  }
  .btn-phone span {
    display: none; /* Mobilde numara metnini gizle */
  }
  .btn-phone {
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--primary-gold);
  }
}



/* --- HİZMETLERİMİZ --- */
.services-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch; /* Stretch card heights to be identical! */
}

.service-card {
  background: #FDFBF9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.03); /* Soft elegant shadow */
  transition: var(--transition);
  border: 1px solid #EAE1D4; /* Defined warm border */
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(197, 160, 89, 0.12); /* Warm premium glow on hover */
  border-color: var(--primary-gold);
}

.service-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px; /* soft transition height */
  background: linear-gradient(to bottom, transparent, #FDFBF9);
  pointer-events: none;
}

.service-img-wrapper img,
.service-img-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper img,
.service-card:hover .service-img-wrapper video {
  transform: scale(1.04);
}

.service-card-body {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: stretch;
  justify-content: flex-start;
}

.service-card-body h3 {
  font-family: var(--font-title);
  font-size: 1.45rem; /* Marginally smaller for better word wrap */
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  text-align: center; /* Title remains centered */
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left; /* Description aligned left for readability */
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 24px 20px 24px;
    margin: 0 -24px;
    gap: 20px;
    scrollbar-width: none;
    align-items: stretch; /* Forces equal heights on mobile scroll cards */
  }
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
}

/* --- TEKLİF & REZERVASYON --- */
.booking-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.booking-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.quick-contact-info p {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-card {
  background: var(--white);
  padding: 26px 30px; /* Reduced vertical padding */
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(10, 35, 66, 0.03);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #FCFAF7;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

textarea {
  resize: vertical;
}

/* Form Buton Tasarımı */
#simple-quote-form button[type="submit"] {
  background: #25D366; /* WhatsApp Yeşili */
  color: var(--white);
  border: none;
  font-weight: 700;
}

#simple-quote-form button[type="submit"]:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-card {
    padding: 20px 15px; /* Super compact mobile padding */
  }
}

@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- İLETİŞİM & HARİTA --- */
.contact-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item p,
.info-item a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.info-item a {
  font-weight: 600;
}

.info-item a:hover {
  color: var(--primary-gold);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

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

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 300px;
  }
  .contact-card {
    padding: 30px 20px;
  }
}

/* --- FOOTER --- */
.main-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- 6 ADIMLI RANDEVU FORMU / WIZARD STİLLERİ --- */

.booking-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px; /* Reduced margin-bottom */
  position: relative;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 0 6px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}

.step-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-top: 6px;
  transition: var(--transition);
}

.step-indicator.active .step-number {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25);
}

.step-indicator.active .step-label {
  color: var(--primary-gold);
}

.step-indicator.completed .step-number {
  border-color: #25D366;
  background: #25D366;
  color: var(--white);
}

/* Form Adımları */
.booking-form-step {
  display: none;
}

.booking-form-step.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 4px; /* Reduced margin-bottom */
  text-align: center;
}

.step-question {
  font-family: var(--font-title);
  font-size: 1.3rem; /* Slightly smaller question title */
  font-weight: 600;
  margin-bottom: 16px; /* Reduced margin-bottom */
  text-align: center;
}

/* Seçenekler Listesi (Tekli Sütun) */
.selection-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

/* Seçenekler Izgarası (İkili Sütun) */
.selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

/* Seçenek Kart Satırları */
.selection-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px; /* Tighter padding for a slim, compact option layout */
  background: #FCFAF7;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.selection-row:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(197, 160, 89, 0.02);
}

.selection-row.selected {
  border-color: var(--primary-gold);
  background: rgba(197, 160, 89, 0.08);
}

.selection-row span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.selection-row.selected span {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Seçim Çemberi */
.selection-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.selection-row:hover .selection-circle {
  border-color: rgba(197, 160, 89, 0.5);
}

.selection-row.selected .selection-circle {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
}

.selection-circle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  opacity: 0;
  transition: var(--transition);
}

.selection-row.selected .selection-circle svg {
  opacity: 1;
}

/* Navigasyon Butonları */
.booking-form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 16px;
}

.booking-form-navigation .btn {
  flex: 1;
}

/* Mobil Ekran Düzenlemeleri (Zorunlu) */
@media (max-width: 768px) {
  .booking-steps::before {
    top: 14px;
  }
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .step-label {
    display: none; /* Mobilde yazılar sığmayacağı için gizliyoruz, temiz tasarım kalıyor */
  }
  .step-question {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .selection-grid,
  .selection-list {
    grid-template-columns: 1fr 1fr; /* Mobilde de 2 sütunlu düzen korunur */
    gap: 10px;
  }
  .selection-row {
    padding: 12px 10px;
  }
  .selection-row span {
    font-size: 0.82rem; /* Prevent layout wraps on smaller screens */
  }
}

/* --- FOTOĞRAF STÜDYOMUZ BÖLÜMÜ --- */
.studio-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.studio-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 500px;
  margin: 35px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.studio-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.studio-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.studio-slide.active {
  opacity: 1;
  z-index: 2;
}

.studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.studio-arrow:hover {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
  transform: translateY(-50%) scale(1.05);
}

.studio-arrow-prev {
  left: 24px;
}

.studio-arrow-next {
  right: 24px;
}

.studio-counter {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(19, 21, 31, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  letter-spacing: 1px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .studio-slider-wrapper {
    height: 320px;
    margin-top: 20px;
    border-radius: 12px;
  }
  .studio-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .studio-arrow-prev { left: 12px; }
  .studio-arrow-next { right: 12px; }
}

/* --- GOOGLE REVIEWS SECTION --- */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

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

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  position: relative;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF7F2;
  color: var(--primary-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.google-icon-badge {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.review-stars {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-form-section,
  .services-section,
  .studio-section,
  .reviews-section,
  .contact-section {
    padding: 40px 0 !important;
  }
  .section-header {
    margin-bottom: 25px !important;
  }
  .wa-text { display: none; }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
  .review-card {
    padding: 24px;
  }
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold-outline:hover {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
}

.btn-gold-outline svg {
  color: inherit;
  fill: currentColor;
  transition: var(--transition);
}

/* --- MUTLU ÇİFTLERİMİZ KART SLIDER --- */
.happy-couples-section {
  padding: 50px 0 60px;
  background: transparent;
  overflow: hidden;
}

.happy-couples-section .section-header {
  margin-bottom: 35px !important;
}

.couples-slider-wrapper {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.couples-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Bireysel kart */
.couple-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 220px;
  animation: slideIn 0.5s ease;
}

.couple-slide.active {
  display: flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* İsim */
.slide-name {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* Alt açıklama */
.slide-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--primary-gold);
  text-transform: uppercase;
}

/* Nokta navigasyonu */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
}

.slider-dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}

/* Font sınıfları (kart içi isim fontları) */
.font-cursive1  { font-family: 'Alex Brush', cursive; font-size: clamp(2.2rem, 5.5vw, 3.1rem); font-weight: 400; }
.font-cursive2  { font-family: 'Great Vibes', cursive; font-size: clamp(2.2rem, 5.5vw, 3.1rem); font-weight: 400; }
.font-luxury    { font-family: 'Cinzel', serif; font-size: clamp(1.3rem, 3vw, 1.7rem); letter-spacing: 2px; font-weight: 600; }
.font-elegant   { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4.5vw, 2.5rem); font-style: italic; font-weight: 600; }
.font-modern    { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; letter-spacing: -0.5px; }
.font-serif     { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4vw, 2.3rem); font-style: italic; font-weight: 700; }

/* Mobile */
@media (max-width: 768px) {
  .happy-couples-section { padding: 35px 0 45px; }
  .couples-slider-wrapper { max-width: 92vw; }
  .couple-slide { padding: 36px 24px 30px; min-height: 180px; }
  .slider-dots { gap: 5px; }
  .slider-dot  { width: 6px; height: 6px; }
}

/* --- INSTAGRAM STORY MODAL STYLES --- */
.story-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.story-modal.active {
  display: flex;
}

.story-container {
  width: 100%;
  max-width: 460px;
  height: 100%;
  max-height: 820px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

/* Progress Bars at top */
.story-progress-bar-container {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 102;
}

.story-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.story-progress-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.1s linear;
}

/* Header */
.story-header {
  position: absolute;
  top: 28px;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 102;
  color: #fff;
}

.story-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1.5px solid #fff;
}

.story-author-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.story-time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.8;
  margin-left: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transition: transform 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-control-btn:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

/* Media Content Area */
.story-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
}

.story-content img,
.story-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}

/* Tap Zones for Navigation */
.story-nav-zone {
  position: absolute;
  top: 60px;
  bottom: 0;
  z-index: 101;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.story-nav-zone.left {
  left: 0;
  width: 35%;
}

.story-nav-zone.right {
  right: 0;
  width: 65%;
}

/* Service Card Click Pointer */
.service-card {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.12);
}

/* Mobile full screen overrides */
@media (max-width: 768px) {
  .story-container {
    max-width: 100%;
    max-height: 100%;
    height: 100vh;
    border-radius: 0;
  }
  .story-progress-bar-container {
    top: env(safe-area-inset-top, 15px);
  }
  .story-header {
    top: calc(env(safe-area-inset-top, 15px) + 12px);
  }
}

/* ==========================================
   SIKÇA SORULAN SORULAR (FAQ) BÖLÜMÜ
   ========================================== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.05);
}

.faq-item.active {
  border-left: 3px solid var(--primary-gold);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.faq-trigger {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger:focus,
.faq-trigger:active,
.faq-trigger:hover {
  color: var(--text-dark);
  border-color: transparent;
  background: none;
  outline: none;
}

.faq-item:focus,
.faq-item:focus-within {
  border-color: var(--border);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: var(--white);
  transition: background-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.faq-icon .v-line {
  transition: opacity 0.2s ease;
}

.faq-item.active .faq-icon .v-line {
  opacity: 0;
}

.faq-item.active .faq-icon {
  background: var(--text-dark);
  color: var(--white);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel-content {
  padding: 0 18px 16px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #6B6A66;
  border-top: 1px solid #F1EDE1;
  margin-top: 2px;
  padding-top: 12px;
}

/* SSS Mobil Uyum */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-trigger {
    padding: 14px 16px;
    font-size: 14px;
  }
  .faq-panel-content {
    padding: 0 16px 14px 16px;
    font-size: 13.5px;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================
   YENİ LİNK HİYERARŞİSİ VE NAVİGASYON STİLLERİ
   ========================================== */

/* Breadcrumbs (Yol Haritası) */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-gold);
}

.breadcrumbs .separator {
  color: var(--border);
  font-size: 0.8rem;
  user-select: none;
}

.breadcrumbs .current {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Mobil Hamburger Menü */
.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.hamburger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition);
  border-radius: 2px;
}

/* Açık durumdayken hamburger şeklini X yapmak için */
.hamburger-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 35, 66, 0.95); /* Marka Laciverti + Opaklık */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-20px);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-nav-menu a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: var(--primary-gold);
  transform: scale(1.05);
}

.mobile-nav-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  max-width: 300px;
}

.mobile-nav-cta .btn-phone {
  justify-content: center;
  width: 100%;
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.mobile-nav-cta .btn-phone:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* Zengin Footer (4 Sütunlu) */
.rich-footer {
  background: #06162a; /* Daha koyu lacivert */
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  font-family: var(--font-body);
}

.rich-footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 2fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.rich-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.rich-footer .footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rich-footer .footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.rich-footer .col-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 8px;
}

.rich-footer .col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.rich-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rich-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rich-footer .footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.rich-footer .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rich-footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.rich-footer .contact-item svg {
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.rich-footer .contact-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.rich-footer .contact-item a:hover {
  color: var(--primary-gold);
}

.rich-footer .footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.rich-footer .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.rich-footer .social-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary-gold);
}

.rich-footer .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.rich-footer .footer-bottom-links {
  display: flex;
  gap: 20px;
}

.rich-footer .footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.rich-footer .footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* Çapraz Bağlantı Kartları (İlginizi Çekebilir) */
.cross-link-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cross-link-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: center;
}

.cross-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cross-link-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  height: 100%;
}

.cross-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.08);
  border-color: var(--primary-gold);
}

.cross-link-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

.cross-link-card:hover .cross-link-img-wrapper img {
  transform: scale(1.05);
}

.cross-link-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cross-link-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.cross-link-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.cross-link-readmore {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.cross-link-card:hover .cross-link-readmore {
  color: var(--gold-hover);
}

/* @media kuralları */
@media (max-width: 991px) {
  .rich-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .rich-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
  }
  
  .rich-footer .footer-col {
    text-align: left;
    align-items: flex-start;
  }
  
  .rich-footer .footer-col:first-child {
    grid-column: span 2;
  }
  
  .rich-footer .footer-col:last-child {
    grid-column: span 2;
  }
  
  .rich-footer .col-title::after {
    left: 0;
    transform: none;
  }
  
  .rich-footer .footer-links a:hover {
    transform: none;
  }
  
  .rich-footer .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cross-link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- AT-A-GLANCE QUICK FACTS BANNER --- */
.facts-banner-section {
  background: #faf7f2; /* Soft warm background */
  padding: 40px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
  z-index: 10;
}

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

.fact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 35, 66, 0.02);
  transition: all 0.3s ease;
}

.fact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.08);
  border-color: rgba(197, 160, 89, 0.25);
}

.fact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(197, 160, 89, 0.08);
  color: var(--primary-gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.fact-item:hover .fact-icon-wrapper {
  background: var(--primary-gold);
  color: var(--white);
}

.fact-details h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.fact-details p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(10, 35, 66, 0.6);
  margin: 0;
}

@media (max-width: 991px) {
  .facts-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .facts-banner-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .fact-item {
    justify-content: flex-start;
  }
}

/* AI-Friendly QA Section in Blog Posts */
.ai-qa-section {
  margin-top: 40px;
  padding: 25px;
  background: rgba(197, 160, 89, 0.04);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 12px 12px 0;
}

.ai-qa-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ai-qa-item {
  margin-bottom: 20px;
}

.ai-qa-item:last-child {
  margin-bottom: 0;
}

.ai-qa-question {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 8px;
}

.ai-qa-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- PREMIUM HEADER CTA BUTTONS --- */
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-header-icon svg {
  transition: transform 0.3s ease;
}

.btn-header-icon:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.btn-header-icon:hover svg {
  transform: scale(1.1);
}

.btn-header-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--primary-gold);
  color: var(--white);
  border: 1px solid var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-header-primary svg {
  transition: transform 0.3s ease;
}

.btn-header-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
}

.btn-header-primary:hover svg {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .btn-header-primary span {
    display: none;
  }
  .btn-header-primary {
    padding: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 50%;
  }
}




