/* ==========================================================================
   DİLLİ MOBİLYA — ARCHITECTURAL LUXURY DESIGN SYSTEM (V4 MASTER EDITION)
   ========================================================================== */

:root {
  /* Core Colors */
  --gold-100: #fef7ec;
  --gold-200: #fce8cc;
  --gold-300: #f7ce95;
  --gold-400: #eeb05d;
  --gold-500: #c98836;
  --gold-600: #ab6d25;
  --gold-700: #88501c;
  --gold-gradient: linear-gradient(135deg, #d49746 0%, #f3c27e 50%, #b37324 100%);
  --gold-glow: 0 10px 30px -5px rgba(201, 136, 54, 0.4);

  /* Dark Luxury Base */
  --bg-dark-900: #070a10;
  --bg-dark-800: #0d121c;
  --bg-dark-700: #151c2b;
  --bg-dark-600: #1f293d;

  /* Light Canvas */
  --bg-main: #f8f9fa;
  --bg-card: #ffffff;
  --bg-subtle: #f1f4f8;

  /* Typography Colors */
  --text-dark: #0a0f1d;
  --text-muted: #5a6882;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Accents */
  --emerald: #10b981;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebd5a;

  /* Borders & Glass */
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-light: #e5e9f0;
  --border-gold: rgba(201, 136, 54, 0.35);

  /* Shadows */
  --shadow-subtle: 0 4px 12px rgba(10, 15, 29, 0.04);
  --shadow-card: 0 10px 28px -4px rgba(10, 15, 29, 0.08);
  --shadow-hover: 0 20px 42px -6px rgba(10, 15, 29, 0.14);
  --shadow-luxury: 0 30px 60px -12px rgba(7, 10, 16, 0.25);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */

.top-bar {
  background: var(--bg-dark-900);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.top-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-badge {
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.top-quick-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  transition: var(--transition);
}

.top-link:hover {
  color: var(--gold-400);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulseDot 2s infinite;
  display: inline-block;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 15, 29, 0.06);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-crest {
  width: 44px;
  height: 44px;
  background: var(--bg-dark-900);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(201, 136, 54, 0.2);
  transition: var(--transition);
}

.brand-identity:hover .brand-crest {
  transform: scale(1.05);
  box-shadow: var(--gold-glow);
}

.brand-titles h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--bg-dark-900);
  line-height: 1.1;
}

.brand-titles span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-item-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.4rem 0;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item-link:hover {
  color: var(--gold-500);
}

.nav-item-link.highlight-pulse {
  background: var(--gold-100);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  color: var(--gold-700);
  border: 1.5px solid var(--gold-300);
  font-weight: 700;
  white-space: nowrap;
}

.nav-item-link.highlight-pulse:hover {
  background: var(--gold-gradient);
  color: #fff;
  border-color: transparent;
}

.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Button System */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

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

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(201, 136, 54, 0.5);
}

.btn-wa-lux {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 16px -2px rgba(37, 211, 102, 0.35);
}

.btn-wa-lux:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -3px rgba(37, 211, 102, 0.5);
}

.btn-outline-lux {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--bg-dark-900);
}

.btn-outline-lux:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  background: var(--gold-100);
}

.btn-sm-lux {
  padding: 0.45rem 0.9rem;
  font-size: 0.825rem;
  border-radius: var(--radius-sm);
}

.btn-lg-lux {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--bg-dark-900);
  cursor: pointer;
  padding: 0.25rem;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 16, 0.92);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.hero-wrapper {
  position: relative;
  background: radial-gradient(circle at 85% 20%, #1a2538 0%, #070a10 75%);
  color: #fff;
  padding: 5rem 0 6.5rem;
  overflow: hidden;
}

.hero-mesh-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(201, 136, 54, 0.12) 1px, transparent 1px),
    radial-gradient(at 10% 90%, rgba(201, 136, 54, 0.08) 0px, transparent 50%);
  background-size: 36px 36px, 100% 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 136, 54, 0.14);
  border: 1px solid var(--border-gold);
  color: var(--gold-300);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

.hero-main-title .gold-shimmer {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-paragraph {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
}

.metric-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-card p {
  font-size: 0.825rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Right Featured Card */
.hero-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-slow);
}

.hero-glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

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

.hero-glass-card:hover .hero-img-box img {
  transform: scale(1.05);
}

.hero-float-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-zoom-cue {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-card-meta h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hero-card-meta p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.15rem;
}

.hero-pricing-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.price-sub {
  font-size: 0.725rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.price-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-300);
}

/* ==========================================================================
   4. TRUST PILLARS
   ========================================================================== */

.trust-section {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-100);
  color: var(--gold-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid var(--gold-200);
}

.pillar-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark-900);
  margin-bottom: 0.2rem;
}

.pillar-content p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   5. DEDICATED DÜĞÜN PAKETLERİ SHOWCASE (DETAYLI ÇEYİZ SETLERİ)
   ========================================================================== */

.wedding-sets-wrapper {
  padding: 6rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.wedding-sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wedding-set-card {
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.wedding-set-card.featured-gold {
  border-color: var(--gold-500);
  box-shadow: var(--gold-glow);
  transform: translateY(-8px);
}

.wedding-set-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.set-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  background: #e2e8f0;
}

.set-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wedding-set-card:hover .set-card-media img {
  transform: scale(1.08);
}

.set-badge-banner {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.set-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.set-title-h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bg-dark-900);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.set-subtitle-p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

/* Package Checklist Box */
.set-checklist-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.set-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.set-check-row i {
  color: var(--emerald);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.set-gift-banner {
  background: rgba(201, 136, 54, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.775rem;
  color: var(--gold-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.set-price-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.set-price-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-700);
  line-height: 1.1;
}

.set-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-light);
}

/* ==========================================================================
   6. VISUAL PACKAGE BUILDER
   ========================================================================== */

.builder-wrapper {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #edf1f7 100%);
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.25rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid var(--gold-200);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bg-dark-900);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.builder-container-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
}

.builder-interactive-left {
  padding: 2.5rem;
}

.config-group {
  margin-bottom: 2.5rem;
}

.config-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bg-dark-900);
  margin-bottom: 1.15rem;
}

.config-step-badge {
  width: 30px;
  height: 30px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--gold-glow);
}

.visual-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.visual-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.visual-option-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.visual-option-card.active {
  border-color: var(--gold-500);
  background: var(--gold-100);
  box-shadow: 0 8px 24px rgba(201, 136, 54, 0.22);
}

.visual-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

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

.visual-option-card:hover .visual-card-thumb img {
  transform: scale(1.08);
}

.card-check-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  transition: var(--transition);
}

.visual-option-card.active .card-check-pill {
  background: var(--gold-500);
  box-shadow: 0 0 10px var(--gold-500);
}

.card-badge-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(7, 10, 16, 0.85);
  color: var(--gold-300);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

.visual-card-body {
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.visual-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bg-dark-900);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.visual-card-sub {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-color-swatches {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.65rem;
}

.swatch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.visual-card-price-row {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visual-price-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-700);
}

.visual-inst-sub {
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 700;
}

/* Builder Summary Panel */
.builder-summary-panel {
  background: var(--bg-dark-900);
  color: #fff;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.visual-selected-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.selected-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #1e293b;
  cursor: pointer;
}

.selected-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-item-meta {
  flex-grow: 1;
}

.selected-item-meta strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.2;
}

.selected-item-meta span {
  font-size: 0.7rem;
  color: var(--gold-300);
}

.selected-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.summary-calculations-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.calc-row.grand-total {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-300);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.calc-installment-banner {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

/* ==========================================================================
   7. CATALOGUE & SHOWCASE
   ========================================================================== */

.catalogue-wrapper {
  padding: 5.5rem 0;
}

.filter-pills-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
}

.filter-pill-btn.active {
  background: var(--bg-dark-900);
  border-color: var(--bg-dark-900);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(7, 10, 16, 0.25);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card-lux {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card-lux:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.product-visual-box {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
  cursor: pointer;
}

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

.product-card-lux:hover .product-visual-box img {
  transform: scale(1.06);
}

.product-badge-float {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.product-score-float {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(6px);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-content-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--bg-dark-900);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-sub-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.specs-mini-table {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: var(--text-dark);
  margin-bottom: 1.15rem;
  background: var(--bg-subtle);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
}

.spec-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-card-pricing {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.old-price-strike {
  font-size: 0.825rem;
  text-decoration: line-through;
  color: var(--text-light);
  display: block;
}

.current-price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1.1;
}

.installment-monthly {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 800;
}

.product-card-ctas {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ==========================================================================
   8. SHOWROOMS & MAP
   ========================================================================== */

.showrooms-section {
  padding: 5.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.showrooms-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
}

.showrooms-scroll-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 580px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.showroom-card-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-main);
}

.showroom-card-item:hover {
  border-color: var(--gold-400);
  background: #ffffff;
}

.showroom-card-item.active {
  border-color: var(--gold-500);
  background: var(--gold-100);
  box-shadow: var(--shadow-card);
}

.showroom-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.45rem;
}

.showroom-title-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bg-dark-900);
}

.showroom-type-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--bg-dark-900);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.showroom-address-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.showroom-actions-row {
  display: flex;
  gap: 0.5rem;
}

.map-embed-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-hover);
  position: relative;
  min-height: 480px;
  background: #e2e8f0;
}

.map-embed-iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}


/* ==========================================================================
   9. TESTIMONIALS SECTION (DARK LUXURY SHOWCASE)
   ========================================================================== */

.testimonials-section {
  background: #070a10;
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-section .section-subtitle {
  color: #94a3b8;
}

.testimonials-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card-lux {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testi-card-lux:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
}

.testi-stars-row {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testi-quote-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author-meta h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.testi-author-meta span {
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 600;
}


/* ==========================================================================
   10. PRODUCT QUICK VIEW MODAL & HD LIGHTBOX
   ========================================================================== */

.product-quick-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-quick-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-dialog-box {
  background: #ffffff;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: var(--shadow-luxury);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-gold);
}

.product-quick-modal.open .modal-dialog-box {
  transform: scale(1);
}

.modal-close-x {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.modal-close-x:hover {
  background: var(--bg-subtle);
  transform: rotate(90deg);
  border-color: var(--gold-500);
}

.modal-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
}

.modal-cover-box {
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.modal-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.modal-details-pane {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-product-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-product-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.modal-spec-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
}

.modal-spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 38%;
}

.modal-spec-table td:last-child {
  color: var(--text-dark);
  font-weight: 700;
}

.modal-deal-banner {
  background: var(--bg-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-dialog {
  max-width: 1100px;
  max-height: 88vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: var(--gold-gradient);
  transform: rotate(90deg);
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 2px solid var(--border-gold);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.site-luxury-footer {
  background: #060910;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-four-columns {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-column h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.footer-brand-column p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
}

.footer-nav-list a:hover {
  color: var(--gold-300);
}

.footer-bottom-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
}

/* ==========================================================================
   12. MOBILE DOCK & FLOATING
   ========================================================================== */

.mobile-dock-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  z-index: 990;
  padding: 0.5rem 1rem;
}

.mobile-dock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.dock-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-muted);
}

.dock-action-btn.active {
  color: var(--gold-600);
}

.dock-action-btn i {
  font-size: 1.2rem;
}

.floating-wa-orb {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-wa-orb:hover {
  transform: scale(1.1);
}

/* Toast */
.live-toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 950;
  background: rgba(7, 10, 16, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-luxury);
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  max-width: 360px;
}

.live-toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon-pulse {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-text-meta h5 {
  font-size: 0.825rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.toast-text-meta p {
  font-size: 0.725rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-item-link {
    font-size: 0.875rem;
  }
  .btn-lux {
    padding: 0.55rem 1rem;
    font-size: 0.825rem;
  }
  .nav-actions-group .btn-outline-lux {
    display: none;
  }
  .wedding-sets-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .wedding-set-card.featured-gold {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .visual-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .builder-container-box {
    grid-template-columns: 1fr;
  }
  .builder-summary-panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions-group .btn-outline-lux {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-paragraph {
    margin: 0 auto 2rem;
  }

  .hero-cta-bar {
    justify-content: center;
  }

  .hero-metrics {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .showrooms-split-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .brand-titles h1 {
    font-size: 1.15rem;
  }

  .brand-titles span {
    font-size: 0.625rem;
  }

  .brand-crest {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .hero-main-title {
    font-size: 2.2rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

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

  .modal-layout-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-dock-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .floating-wa-orb {
    bottom: 4.8rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .live-toast-notification {
    left: 1rem;
    right: 1rem;
    bottom: 4.8rem;
  }
}

/* ==========================================================================
   14. CLIENT PRESENTATION WELCOME MODAL (MÜŞTERİ SUNUM KARŞILAMA MODALI)
   ========================================================================== */

.pres-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pres-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.pres-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 2px solid var(--border-gold);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pres-modal-backdrop.open .pres-modal-card {
  transform: scale(1);
}

.pres-header {
  background: var(--bg-dark-900);
  color: #fff;
  padding: 1.75rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pres-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pres-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.pres-body {
  padding: 2rem;
  color: var(--text-dark);
}

.pres-intro-p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pres-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  background: var(--bg-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.pres-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.pres-feature-item i {
  color: var(--gold-600);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pres-footer-cta {
  display: flex;
  gap: 0.75rem;
}


/* ==========================================================================
   15. STATIC SOCIAL PROOF BADGE (Toast yerine)
   ========================================================================== */

.static-social-proof {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 950;
  max-width: 340px;
}

.social-proof-inner {
  background: rgba(7, 10, 16, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: var(--shadow-luxury);
}

.social-proof-inner i {
  color: var(--gold-400);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-proof-inner strong {
  color: var(--gold-300);
}

@media (max-width: 768px) {
  .static-social-proof {
    left: 1rem;
    right: 1rem;
    bottom: 4.8rem;
    max-width: 100%;
  }
}

/* ==========================================================================
   16. HERO SLIDER
   ========================================================================== */

.hero-slider-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  cursor: pointer;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background: var(--gold-400);
  border-color: var(--gold-300);
  transform: scale(1.25);
}

/* ==========================================================================
   17. MODAL GALLERY NAVIGATION
   ========================================================================== */

.modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.modal-gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--gold-400);
}

.modal-gallery-nav.prev { left: 0.75rem; }
.modal-gallery-nav.next { right: 0.75rem; }

.modal-gallery-counter {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   18. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   19. SKELETON LOADING STATES
   ========================================================================== */

@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-card {
  background: linear-gradient(90deg, var(--bg-subtle) 25%, #e8ecf2 37%, var(--bg-subtle) 63%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-lg);
  min-height: 320px;
}

/* ==========================================================================
   20. ACCESSIBILITY FOCUS STYLES
   ========================================================================== */

*:focus-visible {
  outline: 2.5px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

.btn-lux:focus-visible,
.filter-pill-btn:focus-visible {
  outline: 2.5px solid var(--gold-400);
  outline-offset: 3px;
  box-shadow: var(--gold-glow);
}

/* Hide old toast styles */
.live-toast-notification { display: none !important; }

/* =========================================================================
   MOBİL TAŞMA DÜZELTMESİ
   =========================================================================

   Belirti: telefonda sayfa küçülmüş görünüyordu; 390px'lik ekranda
   düzen viewport'u 505px'e genişliyor ve tarayıcı her şeyi sığdırmak
   için uzaklaştırıyordu.

   Sebep — flexbox `min-width: auto` tuzağı:

   `.pres-modal-card` ve `.modal-dialog-box` doğru yazılmıştı
   (`width: 100%; max-width: 580px`). Ancak ikisi de flex öğesi ve flex
   öğelerinin varsayılan `min-width` değeri `auto`'dur: öğe, içeriğinin
   **min-content** genişliğinin altına inemez. `max-width` bu sınırı
   aşamaz.

   İçerideki `.btn-lux` ise `white-space: nowrap` taşıyordu; "Tasarımı &
   Sistemi İncele" gibi uzun bir etiket bölünemeyen ~455px'lik bir blok
   oluşturuyor, o da kartı, kart da viewport'u itiyordu.

   Çözüm iki parça — biri tek başına yetmiyor:
     1. Kartların küçülebilmesi için `min-width: 0`
     2. Dar ekranda buton etiketinin satır atlayabilmesi
   ========================================================================= */

.pres-modal-card,
.modal-dialog-box {
  min-width: 0;
}

@media (max-width: 560px) {
  /* Buton metni artık sarabilir; tek satıra sığdırma zorunluluğu
     kalktığı için min-content genişliği ekrana uyuyor. */
  .btn-lux {
    white-space: normal;
  }

  /* Modal kenar boşlukları dar ekranda içerik alanını daraltıyordu. */
  .pres-modal-backdrop {
    padding: 1rem;
  }

  .pres-header {
    padding: 1.25rem 1.25rem;
  }
}

/* --- Navbar ---------------------------------------------------------
   `.nav-links` mobilde zaten gizleniyordu, sorun orada değildi:
   marka bloğu (250px) ve aksiyon grubu (215px) birlikte 481px tutuyor
   ve ikisi de `flex-shrink: 0` taşıyordu. 390px'lik ekranda navbar
   viewport'u itiyordu.

   Marka bloğu artık daralabiliyor; sığmazsa metin üç noktayla
   kısalıyor. Logo ve telefon butonu sabit kalıyor — onlar işlevsel,
   marka yazısı ise tekrar bilgi (logoda zaten yazıyor). */
@media (max-width: 560px) {
  .nav-container {
    gap: 0.5rem;
  }

  .brand-identity {
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-identity > * {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* --- Hero: dar ekranda metin kesiliyordu ----------------------------
   `1fr` track'i aslında `minmax(auto, 1fr)` demek ve `auto` alt sınırı
   `min-content`'tir: ızgara sütunu içeriğinin en dar hâlinden daha
   fazla küçülemez. `.hero-metrics` (3 sütun) bu yüzden 360px'lik
   ekranda ~375px'e kilitleniyor, `.container`'ı ve tüm hero metnini
   dışarı itiyordu. `overflow-x: hidden` bunu gizliyordu — yani metin
   görünmüyordu, sadece taşma görünmüyordu.

   `minmax(0, 1fr)` alt sınırı kaldırıyor. Bu, CSS Grid'de taşmanın
   en sık sebebidir ve en sık gözden kaçanıdır. */
@media (max-width: 560px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-grid > *,
  .hero-metrics > * {
    min-width: 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .metric-card h3 {
    font-size: 1.5rem;
  }

  /* Rozet tek satıra sığmıyordu; sarmasına izin veriliyor. */
  .hero-tagline {
    white-space: normal;
    text-align: left;
  }
}

/* Son emniyet: beklenmedik bir öğe taşarsa sayfa yatay kaymak yerine
   kırpsın. Düzen viewport'unun genişlemesini kesin olarak engeller.
   ⚠️ Bu bir çözüm değil, ağ. Taşmanın kendisi yukarıda çözülmeli —
   aksi halde içerik sessizce kırpılır ve kimse fark etmez. */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
}
