/* ==========================================================================
   CM KUAFÖR AKSARAY - LÜKS & AYDINLIK PREMİUM TEMA (style.css)
   Remziye Ulusoy &bull; Bayan Kuaförü & Güzellik Uzmanı
   Mobilde kusursuz, kaymasız, zarif ve ultra-premium tasarım
   ========================================================================== */

/* ---------------- CSS DEĞİŞKENLERİ (LUXURY DESIGN TOKENS) ---------------- */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Aydınlık Lüks Renk Paleti */
  --bg-main: #FAF8F5;          /* Sıcak alabaster/inci zemin */
  --bg-surface: #FFFFFF;       /* Saf beyaz lüks kartlar */
  --bg-surface-alt: #F4EFE6;   /* İkincil yumuşak zemin */
  --bg-gold-tint: #FAF3E6;     /* Altın esintili hafif arka plan */
  --bg-dark-luxury: #141211;   /* Logo ile uyumlu derin lüks siyah */

  --gold-primary: #C5A059;     /* İmza fırçalanmış altın */
  --gold-dark: #A6803B;        /* Koyu altın */
  --gold-light: #EBD9B8;       /* Yumuşak açık altın */
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #B38938 100%);
  --gold-halo: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(197, 160, 89, 0) 70%);

  --whatsapp-green: #25D366;
  --whatsapp-dark: #1EBE5D;
  --google-red: #EA4335;
  --google-yellow: #FBBC05;
  --instagram-pink: #E1306C;

  --text-dark: #181513;        /* Koyu espresso/siyah */
  --text-body: #4A453F;        /* Rahat okunan antrasit */
  --text-muted: #7E776F;       /* İkincil metin */

  --border-light: rgba(197, 160, 89, 0.22);
  --border-medium: rgba(197, 160, 89, 0.45);

  --shadow-subtle: 0 4px 20px rgba(160, 130, 80, 0.06);
  --shadow-card: 0 10px 30px rgba(140, 110, 60, 0.08);
  --shadow-hover: 0 16px 36px rgba(140, 110, 60, 0.14);
  --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.32);

  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1200px;
}

/* ---------------- TEMEL SIFIRLAMA & MOBİL GÜVENLİĞİ ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden; /* Yatay kaymaları kesin engeller */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* Mobilde alt barın içeriği örtmesini önler */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Yardımcı Sınıflar */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-danger { color: var(--google-red); }
.text-instagram { color: var(--instagram-pink); }
.font-bold { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* Mobilde ve Masaüstünde Görünürlük Kontrolü */
.d-only-mobile { display: block; }
.d-none-mobile { display: none; }

@media (min-width: 992px) {
  .d-only-mobile { display: none !important; }
  .d-none-mobile { display: block !important; }
}

/* ---------------- TİPOGRAFİ ---------------- */
h1, h2, h3, h4, .brand__title {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section {
  padding: 65px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 85px 0;
  }
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  background: var(--bg-gold-tint);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid var(--border-light);
}

.section-title {
  font-size: 2.1rem;
  line-height: 1.22;
  margin-bottom: 12px;
}

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

.section-title-divider {
  width: 55px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-title-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------------- BUTONLAR ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

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

.btn--gold:hover, .btn--gold:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.45);
  color: #FFFFFF;
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-primary);
}

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

.btn--ghost {
  background: var(--bg-surface);
  color: var(--text-dark);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-subtle);
}

.btn--ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

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

.btn--whatsapp:hover, .btn--whatsapp:active {
  background-color: var(--whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1.02rem;
}

.btn--sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}



/* ---------------- ANA MENÜ (NAVBAR) ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0; /* Mobilde taşmayı önler */
}

.brand__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand__logo-img {
    width: 50px;
    height: 50px;
  }
}

.brand__text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.brand__title {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand__subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.navbar__menu {
  display: none;
  align-items: center;
  gap: 22px;
}

@media (min-width: 1024px) {
  .navbar__menu {
    display: flex;
    margin-left: 24px;
    margin-right: auto;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
}

.nav-link--highlight {
  color: var(--gold-dark);
  font-weight: 700;
  background: var(--bg-gold-tint);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btn-appointment {
  display: none;
}

@media (min-width: 768px) {
  .nav-btn-appointment {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-xs);
  padding: 9px;
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none !important;
  }
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
}

/* ---------------- MOBİL ÇEKMECE MENÜSÜ (SOLDAN AÇILIR) ---------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 290px;
  height: 100vh;
  background-color: var(--bg-surface);
  z-index: 2500;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.drawer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}

.drawer-close {
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 4px;
}

.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
}

.mobile-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.mobile-drawer__footer {
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ---------------- HERO (LÜKS KARŞILAMA & MOBİL EMBLEM) ---------------- */
.hero {
  position: relative;
  padding: 35px 0 60px;
  background: radial-gradient(circle at 80% 10%, rgba(245, 235, 215, 0.7) 0%, rgba(250, 247, 242, 0.95) 75%);
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 80px;
  }
}

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

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 45px;
  }
}

/* Mobil Giriş Amblemi (Şık Merkez) */
.hero__mobile-emblem {
  text-align: center;
  margin-bottom: 8px;
}

.emblem-halo {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 4px;
  background: var(--gold-gradient);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000000;
  border: 2px solid #FFFFFF;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 14px;
  max-width: 100%;
}

.hero__title {
  font-size: 2.2rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.4rem;
  }
}

.hero__title em {
  font-style: italic;
  color: var(--gold-primary);
  font-weight: 500;
}

.hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 22px;
  max-width: 580px;
}

/* 3 Ana Yönlendirici Kartları (Lüks & Dokunmatik Dostu) */
.hero__direct-navigators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  width: 100%;
}

@media (min-width: 600px) {
  .hero__direct-navigators {
    max-width: 540px;
  }
}

.direct-nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  width: 100%;
}

.direct-nav-card:hover, .direct-nav-card:active {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.direct-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.direct-nav-card--wa .direct-nav-icon {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-dark);
}

.direct-nav-card--google .direct-nav-icon {
  background: rgba(234, 67, 53, 0.1);
  color: var(--google-red);
}

.direct-nav-card--ig .direct-nav-icon {
  background: rgba(225, 48, 108, 0.1);
  color: var(--instagram-pink);
}

.direct-nav-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.direct-nav-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.direct-nav-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

.direct-nav-arrow {
  color: var(--gold-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero__sub-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Mobil Uyumlu Merkezleme */
@media (max-width: 991px) {
  .hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .hero__title {
    text-align: center;
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.94rem;
  }

  .hero__direct-navigators {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub-action {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero__sub-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Masaüstü Lüks Kart Vitrini */
.hero__luxury-showcase {
  background: var(--bg-dark-luxury);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.showcase-logo-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.showcase-details h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.showcase-subtitle {
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.showcase-address {
  color: #A39B91;
  font-size: 0.82rem;
}



/* ---------------- FİYAT HESAPLAMA MODÜLÜ ---------------- */
.calculator-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 25px;
  align-items: flex-start;
  margin-top: 30px;
  width: 100%;
}

@media (min-width: 992px) {
  .calculator-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 35px;
  }
}

.calc-services-column {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .calc-services-column {
    padding: 16px 12px;
    border-radius: var(--radius-sm);
  }
}

.calc-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  gap: 8px;
}

.calc-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.calc-box-title h3 {
  font-size: 1.25rem;
  white-space: nowrap;
}

.calc-box-title span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.btn-clear-selection {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  flex-shrink: 0;
}

.btn-clear-selection:hover {
  color: #EF4444;
  border-color: #FCA5A5;
}

.calc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
  width: 100%;
}

.calc-filter-pill {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.calc-filter-pill.active {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.calc-items-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 2px;
  width: 100%;
  min-width: 0;
}

.calc-item-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-item-card:hover {
  border-color: var(--gold-primary);
  background-color: #FFFFFF;
}

.calc-item-card.selected {
  background: #FFFDF8;
  border-color: var(--gold-dark);
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.15);
}

.calc-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.calc-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border-medium);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.calc-item-card.selected .calc-checkbox {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.calc-item-title-box {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.calc-item-title-box h4 {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-item-category {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-item-price-badge {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--bg-gold-tint);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 6px;
}

.calc-item-card.selected .calc-item-price-badge {
  background: var(--gold-gradient);
  color: #FFFFFF;
}

/* Canlı Özet Kartı (Sticky) */
.calc-summary-column {
  position: sticky;
  top: 85px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-summary-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-summary-card__header {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.summary-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--bg-gold-tint);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.calc-summary-card__header h3 {
  font-size: 1.4rem;
}

.calc-summary-card__header p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-selected-list {
  min-height: 110px;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  height: 110px;
  gap: 6px;
  font-size: 0.8rem;
}

.calc-empty-state i {
  font-size: 1.6rem;
  color: var(--gold-light);
}

.calc-selected-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-main);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
}

.calc-selected-row span {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-selected-row em {
  font-style: normal;
  color: var(--gold-dark);
  font-weight: 700;
  margin-right: 6px;
}

.btn-remove-selected {
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 2px 4px;
}

.btn-remove-selected:hover {
  color: #EF4444;
}

.calc-total-box {
  background: var(--bg-gold-tint);
  border-radius: var(--radius-xs);
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border-medium);
}

.total-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-title {
  font-size: 0.88rem;
  font-weight: 700;
}

.total-amount {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.total-subnote {
  margin-top: 5px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ---------------- RESMİ FİYAT TABLOSU ---------------- */
.official-price-table-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .official-price-table-card {
    padding: 18px 12px;
    border-radius: var(--radius-sm);
  }
}

.table-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.table-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-title-wrap i {
  font-size: 1.6rem;
}

.table-title-wrap h3 {
  font-size: 1.3rem;
}

.table-title-wrap p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.official-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.official-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 460px; /* Mobilde yatay kaydırılabilir güvenli genişlik */
}

.official-price-table th {
  background: #FAF6EE;
  padding: 10px 14px;
  border-bottom: 2px solid var(--gold-primary);
  text-align: left;
  white-space: nowrap;
}

.official-price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.official-price-table tbody tr:hover {
  background: var(--bg-gold-tint);
}

.official-price-table .table-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.official-table-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--whatsapp-dark);
  font-weight: 600;
  background: rgba(37, 211, 102, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.official-table-wa-btn:hover {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

.table-footer-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------------- GOOGLE YORUMLARI BÖLÜMÜ ---------------- */
.reviews-section {
  background-color: var(--bg-surface);
}

.google-header-card {
  background: #FAF7F0;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  border: 1.5px solid var(--border-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
}

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

.google-big-icon {
  font-size: 2.5rem;
  color: var(--google-red);
}

.google-rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.score-stars {
  color: var(--google-yellow);
  font-size: 1.1rem;
  display: flex;
  gap: 2px;
}

.score-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-main);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 16px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.client-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-gold-tint);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.client-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.client-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---------------- İLETİŞİM & HARİTA ---------------- */
.contact-section {
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
  }
}

.contact-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.contact-card__title {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.contact-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-gold-tint);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-item__info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-item__info p, .contact-item__info a {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 480px) {
  .contact-actions {
    flex-direction: row;
  }
  .contact-actions .btn {
    flex: 1;
  }
}

.map-wrapper {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.map-card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: #FAF8F4;
}

.map-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
}

.map-header-left strong {
  font-size: 0.92rem;
  display: block;
}

.map-header-left span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.map-embed-container {
  width: 100%;
  min-height: 320px;
}

/* ---------------- FOOTER ---------------- */
.footer {
  background-color: var(--bg-dark-luxury);
  color: #D3CCC3;
  padding: 55px 0 25px;
  border-top: 2px solid var(--gold-primary);
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 35px;
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

.footer__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid var(--gold-primary);
}

.footer__title {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.footer__tagline {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.footer__text {
  font-size: 0.86rem;
  color: #A8A198;
  margin-bottom: 16px;
}

.footer__navigators {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #FFFFFF;
}

.footer__nav-link:hover {
  background: var(--gold-primary);
}

.footer__heading {
  font-family: var(--font-sans);
  color: #FFFFFF;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.footer-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.88rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-size: 0.8rem;
  color: #8C847B;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- YÜZEN BUTONLAR (SADECE MASAÜSTÜNDE - MOBİLDE ASLA ÇAKIŞMAZ) ---------------- */
.floating-actions {
  display: none; /* Mobilde default olarak tamamen gizli */
}

@media (min-width: 992px) {
  .floating-actions {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1200;
    flex-direction: column;
    gap: 10px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform var(--transition-fast);
  }

  .floating-btn:hover {
    transform: scale(1.08);
  }

  .floating-btn--whatsapp { background-color: var(--whatsapp-green); }
  .floating-btn--google { background-color: var(--google-red); }

  .floating-tooltip {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: #FFFFFF;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-xs);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
  }

  .floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
  }
}

/* ---------------- MOBİL SABİT ALT BAR (LÜKS APP MENÜSÜ - SADECE MOBİL) ---------------- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--border-medium);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 1500;
  padding: 6px 0 calc(env(safe-area-inset-bottom, 0px) + 6px);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-body);
  background: none;
}

.mobile-bar-btn i {
  font-size: 1.15rem;
}

.mobile-bar-btn--whatsapp i { color: var(--whatsapp-dark); }
.mobile-bar-btn--calc i { color: var(--gold-dark); }
.mobile-bar-btn--google i { color: var(--google-red); }
.mobile-bar-btn--ig i { color: var(--instagram-pink); }
