/* ==========================================================================
   UYGAR DEKORASYON - DETAYLI İNCELE MODAL & GLASS DRAWER
   ========================================================================== */

:root {
  --bg-black: #040406;
  --bg-dark: #09090d;
  --bg-card: #121218;
  --bg-glass-modal: rgba(14, 14, 20, 0.94);
  --text-white: #ffffff;
  --text-muted: #8e8e9e;
  --text-gold: #e2c044;
  --accent-blue: #0071e3;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius-pill: 999px;
  --radius-card: 28px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: #252533;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* Typography Scale */
.giant-display-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.hero-title-line {
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: heroTitleFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title-gold {
  position: relative;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff5b8 0%, #e2c044 50%, #b89114 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateX(-14px);
  animation: goldTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-gold.line-delay-1 {
  animation-delay: 0.3s;
}

.hero-title-gold.line-delay-2 {
  animation-delay: 0.7s;
}

@keyframes heroTitleFade {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldTextReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(-14px);
    filter: blur(5px);
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
  }
}

.sub-display-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.scrolly-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-clean-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 350;
  color: rgba(240, 240, 248, 0.9);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.badge-cinematic-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-gold);
  border: 1px solid rgba(226, 192, 68, 0.35);
  backdrop-filter: blur(12px);
}

/* Header Navbar */
.cinematic-nav-header {
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}

.cinematic-nav-header .container-fluid {
  height: 100%;
}

/* Pure Architectural Typography Logo */
.cinematic-brand-logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none !important;
  margin: 0;
  padding: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cinematic-brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-pure-title {
  font-family: 'Cinzel', var(--font-display, 'Outfit', sans-serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f8 50%, #d8d8e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.brand-pure-subtitle {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: #e2c044;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
  text-shadow: 0 0 12px rgba(226, 192, 68, 0.4);
}

/* Mobile Header Toggle Button */
.btn-luxury-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(22, 22, 32, 0.7);
  border: 1px solid rgba(226, 192, 68, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1;
  margin: 0;
}

.btn-luxury-menu-toggle:hover, .btn-luxury-menu-toggle:focus {
  background: rgba(226, 192, 68, 0.2);
  border-color: #e2c044;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(226, 192, 68, 0.3);
}

/* Luxury Offcanvas Drawer */
.cinematic-offcanvas {
  width: 320px !important;
  max-width: 85vw !important;
  background: rgba(10, 10, 16, 0.97) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-left: 1px solid rgba(226, 192, 68, 0.2) !important;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8) !important;
}

.btn-close-luxury {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-close-luxury:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg);
}

.mobile-nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(22, 22, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-card:hover, .mobile-nav-card.active {
  background: rgba(226, 192, 68, 0.12);
  border-color: rgba(226, 192, 68, 0.35);
  transform: translateX(4px);
}

.mobile-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(226, 192, 68, 0.1);
  color: #e2c044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.mobile-nav-card:hover .mobile-nav-icon, .mobile-nav-card.active .mobile-nav-icon {
  background: #e2c044;
  color: #0d0d12;
  box-shadow: 0 0 12px rgba(226, 192, 68, 0.4);
}

.mobile-nav-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-nav-arrow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-card:hover .mobile-nav-arrow, .mobile-nav-card.active .mobile-nav-arrow {
  color: #e2c044;
  transform: translateX(3px);
}

.btn-whatsapp-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-whatsapp-mobile:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.nav-link-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-link-item:hover {
  color: var(--text-white);
}

/* Pill Buttons */
.btn-cinematic-pill {
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn-glow {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: 0 0 35px rgba(0, 113, 227, 0.5);
}

.btn-glow:hover {
  background: #0077ed;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 113, 227, 0.8);
}

.btn-cinematic-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.btn-cinematic-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   FULLSCREEN ANIMATED SCROLL SECTIONS (DEV EKRAN 100VH)
   -------------------------------------------------------------------------- */
.dev-screen-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-black);
}

.dev-screen-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
}

.dev-screen-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4,4,6,0.3) 0%, rgba(4,4,6,0.92) 100%),
              linear-gradient(to bottom, rgba(4,4,6,0.4) 0%, rgba(4,4,6,0.95) 95%);
}

.dev-screen-content {
  position: relative;
  z-index: 20;
  max-width: 1100px;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dev-screen-section.active .dev-screen-content {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   8 UNIQUE LUXURY SCROLL REVEAL EFFECTS
   ========================================================================== */

/* 1. ALÇIPAN: Ceiling Light Beam & Architectural Depth */
.ceiling-light-beam {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(226,192,68,0.4) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 14;
  pointer-events: none;
}
.dev-screen-section.effect-alcipan-depth.active .ceiling-light-beam {
  opacity: 1;
  transform: translateY(0);
}
.dev-screen-section.effect-alcipan-depth .dev-screen-bg {
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.dev-screen-section.effect-alcipan-depth.active .dev-screen-bg {
  transform: scale(1.15);
  opacity: 0.6;
}

/* 2. BOYA BADANA: Paint Roller Sweeper Reveal */
.dev-screen-roller-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #040406;
  z-index: 15;
  transition: width 0.1s linear;
  overflow: hidden;
}
.dev-screen-roller-layer img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.9;
}
.roller-sweeper-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 100%;
  background: var(--text-gold);
  box-shadow: 0 0 40px var(--text-gold), 0 0 15px #ffffff;
}

/* 3. FAYANS & SERAMİK: Tile Quad Split Reveal */
.tile-quad-overlay {
  position: absolute;
  inset: 0;
  z-index: 14;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  pointer-events: none;
}
.tile-quad-panel {
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(226, 192, 68, 0.25);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.dev-screen-section.effect-fayans-tiles.active .tile-quad-panel:nth-child(1) { transform: translate(-100%, -100%); }
.dev-screen-section.effect-fayans-tiles.active .tile-quad-panel:nth-child(2) { transform: translate(100%, -100%); }
.dev-screen-section.effect-fayans-tiles.active .tile-quad-panel:nth-child(3) { transform: translate(-100%, 100%); }
.dev-screen-section.effect-fayans-tiles.active .tile-quad-panel:nth-child(4) { transform: translate(100%, 100%); }

/* 4. DUŞAKABİN: Frosted Glass Shimmer Sweep */
.glass-frosted-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 20%, rgba(255,255,255,0.25) 50%, transparent 80%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateX(-100%);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 16;
  pointer-events: none;
}
.dev-screen-section.effect-dusa-glass.active .glass-frosted-shine {
  transform: translateX(100%);
}

/* 5. MUTFAK: Cabinet Door Split Reveal */
.cabinet-doors-wrapper {
  position: absolute;
  inset: 0;
  z-index: 15;
  pointer-events: none;
}
.cabinet-door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, #151821 0%, #06070a 100%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cabinet-door-left { left: 0; border-right: 2px solid var(--text-gold); }
.cabinet-door-right { right: 0; border-left: 2px solid var(--text-gold); }
.dev-screen-section.effect-mutfak-split.active .cabinet-door-left { transform: translateX(-100%); }
.dev-screen-section.effect-mutfak-split.active .cabinet-door-right { transform: translateX(100%); }

/* 6. BANYO: Steam Dissolve & Focus */
.steam-dissolve-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, rgba(4,4,6,0.95) 80%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 14;
  pointer-events: none;
}
.dev-screen-section.effect-banyo-steam.active .steam-dissolve-layer {
  opacity: 0;
}
.dev-screen-section.effect-banyo-steam .dev-screen-bg {
  filter: blur(15px);
  transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}
.dev-screen-section.effect-banyo-steam.active .dev-screen-bg {
  filter: blur(0px);
  opacity: 0.6;
}

/* 7. PARKE: Parquet Plank Stripe Reveal */
.parquet-stripes-wrapper {
  position: absolute;
  inset: 0;
  z-index: 14;
  display: flex;
  pointer-events: none;
}
.parquet-stripe {
  flex: 1;
  height: 100%;
  background: #11141c;
  border-right: 1px solid rgba(226, 192, 68, 0.15);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.dev-screen-section.effect-parke-planks.active .parquet-stripe:nth-child(1) { transform: translateY(-100%); transition-delay: 0.05s; }
.dev-screen-section.effect-parke-planks.active .parquet-stripe:nth-child(2) { transform: translateY(100%); transition-delay: 0.15s; }
.dev-screen-section.effect-parke-planks.active .parquet-stripe:nth-child(3) { transform: translateY(-100%); transition-delay: 0.25s; }
.dev-screen-section.effect-parke-planks.active .parquet-stripe:nth-child(4) { transform: translateY(100%); transition-delay: 0.35s; }
.dev-screen-section.effect-parke-planks.active .parquet-stripe:nth-child(5) { transform: translateY(-100%); transition-delay: 0.45s; }

/* 8. KOMPLE TADİLAT: Grand Luxury Pulse */
.grand-pulse-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(226, 192, 68, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 14;
  pointer-events: none;
}
.dev-screen-section.effect-komple-grand.active .grand-pulse-glow {
  opacity: 1;
  animation: pulseGoldGlow 3s infinite alternate ease-in-out;
}
@keyframes pulseGoldGlow {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}
.dev-screen-section.effect-komple-grand.active .dev-screen-bg {
  transform: scale(1.1);
  opacity: 0.65;
  filter: brightness(1.1);
}

/* --------------------------------------------------------------------------
   DETAYLI İNCELE MODAL & GLASS DRAWER
   -------------------------------------------------------------------------- */
.glass-service-modal .modal-content {
  background: var(--bg-glass-modal);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  color: #fff;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.9);
}

.modal-service-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   INTERACTIVE ROOM COLOR PICKER & HOTSPOTS
   -------------------------------------------------------------------------- */
.hotspot-showroom-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 650px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.hotspot-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hotspot-marker {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(226, 192, 68, 0.85);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(226, 192, 68, 0.8);
  animation: pulseGold 2s infinite;
  z-index: 30;
  border: 2px solid #fff;
}

.hotspot-marker:hover, .hotspot-marker.active {
  transform: scale(1.25);
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 113, 227, 0.9);
  animation: none;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(226, 192, 68, 0.8); }
  70% { box-shadow: 0 0 0 20px rgba(226, 192, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 192, 68, 0); }
}

.hotspot-detail-card {
  position: absolute;
  z-index: 50;
  width: 340px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(18, 18, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hotspot-detail-card.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.close-hotspot-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.paint-showroom-section {
  padding: 100px 0;
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.paint-wall-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #040406;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85);
}

.wall-paint-color-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #374151;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.wall-room-base-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: contrast(1.15) brightness(1.08);
}

.wall-color-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #374151;
  mix-blend-mode: color;
  opacity: 0.85;
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 70%);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

.wall-vignette-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(4, 4, 6, 0.8) 0%, rgba(4, 4, 6, 0) 50%);
  z-index: 4;
  pointer-events: none;
}

.wall-color-info-card {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 14, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 16px 28px;
  z-index: 10;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.paint-swatch-picker {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.swatch-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swatch-btn .swatch-label {
  position: absolute;
  bottom: -28px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.swatch-btn.active, .swatch-btn:hover {
  transform: scale(1.2);
  border-color: var(--text-gold);
  box-shadow: 0 0 30px rgba(226, 192, 68, 0.8);
}

.swatch-btn.active .swatch-label, .swatch-btn:hover .swatch-label {
  color: var(--text-gold);
}

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 580px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  user-select: none;
}

.before-image-layer, .after-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image-layer img, .after-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image-layer {
  width: 50%;
  overflow: hidden;
  border-right: 4px solid var(--text-gold);
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--text-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 30px rgba(226, 192, 68, 0.9);
  cursor: ew-resize;
  z-index: 40;
}

.story-stage-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-statement-section {
  padding: 120px 0;
  background-color: var(--bg-black);
  text-align: center;
}

.word-reveal-item {
  font-family: var(--font-display);
  font-size: clamp(55px, 11vw, 150px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 20px;
}

.word-reveal-item.in-view {
  color: var(--text-white);
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
  transform: scale(1.04);
}

/* ==========================================================================
   ULTRA-LUXURY FLOATING MOBILE DOCK (IOS ISLAND STYLE)
   ========================================================================== */
.mobile-floating-dock-container {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 440px;
  z-index: 99999;
  pointer-events: none;
}

.mobile-dock-wrapper {
  pointer-events: auto;
  background: rgba(10, 12, 20, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(226, 192, 68, 0.35);
  border-radius: 50px;
  padding: 6px 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(226, 192, 68, 0.15);
}

.dock-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-btn-call {
  background: linear-gradient(135deg, #fff3a8 0%, #e2c044 100%);
  color: #090b12 !important;
  box-shadow: 0 4px 15px rgba(226, 192, 68, 0.35);
}

.dock-btn-call:active {
  transform: scale(0.96);
}

.dock-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.dock-btn-whatsapp:active {
  transform: scale(0.96);
}

.dock-action-btn i {
  font-size: 18px;
}

@media (max-width: 991px) {
  .paint-wall-stage {
    height: 380px;
  }
  .before-after-container {
    height: 360px;
  }
}

/* ==========================================================================
   DIGITAL ARCHITECTURAL SHOWROOM STUDIO (CREATIVE SHOWROOM ENGINE)
   ========================================================================== */
.showroom-stage-master {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg-black);
}

.showroom-slide-deck {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  z-index: 1;
}

.showroom-slide-deck.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

/* Day vs Night Studio Lighting Atmosphere */
.showroom-slide-deck.night-atmosphere .dev-screen-bg {
  filter: brightness(0.35) contrast(1.25) hue-rotate(10deg);
}

.showroom-slide-deck.night-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(226, 192, 68, 0.3) 0%, transparent 65%);
  z-index: 12;
  pointer-events: none;
}

/* Floating Glass Studio Bottom Controller Dock */
.showroom-bottom-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9900;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 8px 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 96vw;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.dock-item-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-item-btn.active, .dock-item-btn:hover {
  background: var(--text-gold);
  color: #000;
  box-shadow: 0 0 25px rgba(226, 192, 68, 0.7);
  transform: translateY(-2px);
}

/* Day/Night & Auto Tour Floating Controller Buttons */
.studio-top-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  gap: 12px;
}

.studio-control-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.studio-control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--text-gold);
  color: var(--text-gold);
}

/* Embedded Full-Screen Before/After Slider Layer inside Studio Slides */
.embedded-ba-stage {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.embedded-ba-stage .after-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--text-gold);
}

.embedded-ba-stage img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.embedded-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 35px var(--text-gold);
  cursor: ew-resize;
  z-index: 25;
}

/* ==========================================================================
   INTERACTIVE EXHIBITION WALL GRID (DEV İZGARALI MİMARİ SERGİ DUVARI)
   ========================================================================== */
.exhibition-wall-section {
  padding: 100px 0;
  background-color: var(--bg-black);
  position: relative;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.exhibition-card {
  position: relative;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.exhibition-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.exhibition-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 6, 0.98) 0%, rgba(4, 4, 6, 0.4) 50%, rgba(4, 4, 6, 0.25) 100%);
  transition: background 0.5s ease;
}

.exhibition-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--text-gold);
  box-shadow: 0 30px 80px rgba(226, 192, 68, 0.35);
}

.exhibition-card:hover .exhibition-card-bg {
  transform: scale(1.12);
  opacity: 0.85;
}

.exhibition-card-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exhibition-card-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--text-gold);
  text-shadow: 0 0 20px rgba(226, 192, 68, 0.6);
}

.exhibition-card-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.exhibition-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.exhibition-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.exhibition-tag-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.btn-card-examine {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--text-gold);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.35s ease;
  box-shadow: 0 0 25px rgba(226, 192, 68, 0.5);
}

.exhibition-card:hover .btn-card-examine {
  background: #ffffff;
  color: #000000;
  transform: translateX(6px);
  box-shadow: 0 0 35px #ffffff;
}

/* Full-Screen 3D Exhibition Detail Modal Stage */
.exhibition-full-modal .modal-dialog {
  max-width: 95vw;
  margin: 20px auto;
}

.exhibition-full-modal .modal-content {
  background: rgba(8, 10, 14, 0.95);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  color: #fff;
  box-shadow: 0 50px 180px rgba(0, 0, 0, 0.95);
}

.modal-ba-stage {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   ULTRA LUXURY HERO HEADER & CINEMATIC ATMOSPHERE
   ========================================================================== */
.hero-exhibition-master {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 80px 20px;
  overflow: hidden;
  background-color: #040406;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: contrast(1.15) brightness(0.85);
  transform: scale(1.04);
}

.hero-ambient-spotlight {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 192, 68, 0.3) 0%, rgba(0, 113, 227, 0.18) 45%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4,4,6,0.2) 0%, rgba(4,4,6,0.92) 100%),
              linear-gradient(to bottom, rgba(4,4,6,0.3) 0%, rgba(4,4,6,1) 98%);
  z-index: 3;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
}

.gold-gradient-text {
  background: linear-gradient(
    110deg,
    #e2c044 0%,
    #fff2c6 25%,
    #ffffff 45%,
    #fff2c6 55%,
    #e2c044 75%,
    #ca9e16 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: goldShimmerSweep 3.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  filter: drop-shadow(0 0 25px rgba(226, 192, 68, 0.45));
}

@keyframes goldShimmerSweep {
  0% {
    background-position: 200% center;
  }
  60%, 100% {
    background-position: -200% center;
  }
}

/* Luxury Metric Strip */
.hero-metrics-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  padding: 12px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Premium Gold & Glass CTA Buttons */
.btn-gold-luxury {
  padding: 16px 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #fce8a4 0%, #e2c044 50%, #ca9e16 100%);
  color: #000000;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 35px rgba(226, 192, 68, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold-luxury:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 50px #ffffff;
}

.btn-whatsapp-glass {
  padding: 16px 32px;
  border-radius: 40px;
  background: rgba(37, 211, 102, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-glass:hover {
  background: #25d366;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
}

/* 100% MOBILE RESPONSIVENESS & TOUCH OPTIMIZATION */
@media (max-width: 768px) {
  .hero-exhibition-master {
    min-height: auto;
    padding: 120px 16px 60px 16px !important;
  }
  
  .hero-exhibition-master .giant-display-title {
    font-size: clamp(26px, 7.5vw, 42px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    padding-top: 15px !important;
    margin-top: 0 !important;
    word-break: break-word;
  }

  .gold-gradient-text {
    padding: 4px 0;
    line-height: 1.25;
  }

  .hero-metrics-strip {
    width: 100%;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 20px;
  }

  .metric-num {
    font-size: 14px;
  }

  .metric-label {
    font-size: 9px;
  }

  .btn-gold-luxury, .btn-whatsapp-glass {
    width: 100% !important;
    padding: 14px 20px;
  }

  .exhibition-wall-section {
    padding: 40px 12px;
  }

  .exhibition-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .exhibition-card {
    height: 420px;
    border-radius: 22px;
  }

  .exhibition-card-content {
    padding: 24px;
  }

  .exhibition-card-title {
    font-size: 24px;
  }

  .exhibition-card-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .btn-card-examine {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .hero-cta-btn-wrapper {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px !important;
  }

  .hero-cta-btn-wrapper .btn-gold-luxury,
  .hero-cta-btn-wrapper .btn-whatsapp-glass {
    flex: 1 1 50% !important;
    width: 50% !important;
    height: 48px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   GOLD GRADIENT & BUTTON UTILITIES
   ========================================================================== */
.gold-gradient-text {
  background: linear-gradient(135deg, #fce055 0%, #dfac16 50%, #c9930f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gold-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2c044 0%, #b89114 100%);
  color: #040406;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  height: 52px;
  box-sizing: border-box;
  border: 1px solid transparent;
  box-shadow: 0 8px 30px rgba(226, 192, 68, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.btn-gold-luxury:hover {
  background: linear-gradient(135deg, #f7d559 0%, #d8a81e 100%);
  color: #040406;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(226, 192, 68, 0.6);
}

.btn-whatsapp-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  height: 52px;
  box-sizing: border-box;
  border: 1px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.btn-whatsapp-glass:hover {
  background: rgba(37, 211, 102, 0.3);
  color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   TAMAMLATAN LÜKS PROJELER & MÜŞTERİ HİKAYELERİ VİTRİNİ
   ========================================================================== */
.luxury-project-stories-section {
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 90px 0;
}

.story-stage-master {
  width: 100%;
  max-width: 1240px;
  background: rgba(14, 14, 20, 0.85);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
}

.story-panel-item {
  display: none;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-panel-item.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.story-img-wrap {
  min-height: 480px;
  overflow: hidden;
}

.story-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-stage-master:hover .story-featured-img {
  transform: scale(1.05);
}

.story-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.story-metrics-badge {
  z-index: 10;
}

.story-metric-chip {
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 192, 68, 0.35);
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.story-metric-chip .num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-gold);
}

.story-metric-chip .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-info-wrap {
  background: linear-gradient(145deg, rgba(18, 18, 26, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(226, 192, 68, 0.25) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c044 0%, #8c6e08 100%);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(226, 192, 68, 0.3);
}

.trust-feature-card {
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.trust-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 192, 68, 0.4);
  background: rgba(24, 24, 32, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(226, 192, 68, 0.12);
  border: 1px solid rgba(226, 192, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   ULTRA-CLEAN LUXURY CUSTOMER REVIEWS SHOWCASE
   ========================================================================== */
.fs-8 {
  font-size: 12px !important;
}

.clean-reviews-section {
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 85px 0;
}

.clean-review-card {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.clean-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 192, 68, 0.4);
  background: rgba(24, 24, 34, 0.9);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(226, 192, 68, 0.15);
}

.clean-card-img-wrapper {
  height: 200px;
}

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

.clean-review-card:hover .clean-card-img {
  transform: scale(1.06);
}

.clean-quote-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.clean-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c044 0%, #a37c0c 100%);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.clean-proof-bar {
  background: linear-gradient(145deg, rgba(18, 18, 26, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border: 1px solid rgba(226, 192, 68, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   LUXURY REVIEWS & CUSTOMER FEEDBACK SECTION
   ========================================================================== */
.luxury-reviews-master-section {
  background: radial-gradient(circle at 50% 30%, rgba(226, 192, 68, 0.04) 0%, rgba(8, 8, 12, 1) 70%);
  position: relative;
}

.luxury-reviews-master-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 192, 68, 0.3), transparent);
}

.luxury-review-card {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 192, 68, 0.35);
  background: rgba(22, 22, 32, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 192, 68, 0.08);
}

/* Background Quote Mark Watermark */
.card-quote-watermark {
  position: absolute;
  right: 15px;
  bottom: 65px;
  font-size: 110px;
  line-height: 0;
  color: rgba(226, 192, 68, 0.07);
  pointer-events: none;
  font-family: Georgia, serif;
  transition: color 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.luxury-review-card:hover .card-quote-watermark {
  color: rgba(226, 192, 68, 0.15);
  transform: scale(1.08) rotate(-5deg);
}

/* Verified Platform Badges */
.badge-verified-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.badge-verified-google {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.badge-verified-armut {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

/* District & Scope Tag */
.review-location-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: #e2c044;
  background: rgba(226, 192, 68, 0.08);
  border: 1px solid rgba(226, 192, 68, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
}

/* Quote Body Text */
.review-quote-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(240, 240, 245, 0.92);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* Client Avatar & Details */
.luxury-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2c044 0%, #99740e 100%);
  color: #0d0d12;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(226, 192, 68, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.review-client-district {
  font-size: 13px;
  font-weight: 600;
  color: #e2c044 !important;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.badge-service-pill {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Bottom Proof Strip */
.luxury-proof-strip {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
  border: 1px solid rgba(226, 192, 68, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.proof-stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-num {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-mono, monospace);
}

.proof-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.25;
}

@media (max-width: 767px) {
  .proof-stat-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .proof-num {
    font-size: 20px !important;
  }

  .proof-label {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    white-space: nowrap;
  }

  .luxury-proof-strip {
    padding: 16px 10px !important;
  }

  .luxury-proof-strip .btn-gold-luxury {
    font-size: 13.5px !important;
    padding: 12px 14px !important;
    width: 100%;
    justify-content: center;
  }
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ==========================================================================
   ULTRA-LUXURY ARCHITECTURAL SHOWCASE: ABOUT & WHY US SECTIONS
   ========================================================================== */
.luxury-about-why-master-section {
  background: radial-gradient(circle at 50% 0%, #0d0e15 0%, #040406 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.architectural-image-frame {
  border: 1px solid rgba(226, 192, 68, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(226, 192, 68, 0.08);
}

.architectural-img {
  min-height: 440px;
  max-height: 560px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.architectural-image-frame:hover .architectural-img {
  transform: scale(1.03);
}

.architectural-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.15) 0%, rgba(4, 4, 6, 0.75) 100%);
  pointer-events: none;
}

.floating-stats-glass-panel {
  background: rgba(14, 14, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 192, 68, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.stat-number-gold {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff5b8 0%, #e2c044 50%, #b89114 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label-muted {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.architectural-top-badge {
  background: rgba(4, 4, 6, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 192, 68, 0.4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Badges & Bullet styling */
.badge-luxury-header {
  background: rgba(226, 192, 68, 0.1);
  border: 1px solid rgba(226, 192, 68, 0.3);
}

.badge-dot-gold {
  width: 7px;
  height: 7px;
  background-color: #e2c044;
  border-radius: 50%;
  box-shadow: 0 0 10px #e2c044;
}

.badge-text-gold {
  color: #e2c044;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bullet-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(226, 192, 68, 0.15) 0%, rgba(18, 18, 24, 0.8) 100%);
  border: 1px solid rgba(226, 192, 68, 0.3);
  color: #e2c044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bullet-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bullet-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Button styles */
.btn-gold-luxury {
  background: linear-gradient(135deg, #e2c044 0%, #b89114 100%);
  color: #040406;
  font-weight: 800;
  font-size: 15px;
  border: none;
  box-shadow: 0 10px 25px rgba(226, 192, 68, 0.3);
  transition: all 0.3s ease;
}

.btn-gold-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(226, 192, 68, 0.5);
  color: #000000;
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Bento Grid Styling */
.bento-why-card {
  background: linear-gradient(160deg, rgba(20, 20, 30, 0.85) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 192, 68, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(226, 192, 68, 0.15);
}

.bento-watermark-number {
  position: absolute;
  top: -15px;
  right: 15px;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 110px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.bento-why-card:hover .bento-watermark-number {
  color: rgba(226, 192, 68, 0.08);
}

.bento-icon-pill {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(226, 192, 68, 0.08);
  border: 1px solid rgba(226, 192, 68, 0.25);
  color: #e2c044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.4s ease;
}

.bento-why-card:hover .bento-icon-pill {
  background: linear-gradient(135deg, #e2c044 0%, #b89114 100%);
  color: #040406;
  border-color: #e2c044;
  transform: scale(1.1) rotate(4deg);
}

.bento-card-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.bento-card-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

.bento-card-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(226, 192, 68, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-why-card:hover .bento-card-glow {
  opacity: 1;
}

@media (max-width: 767px) {
  .architectural-img {
    min-height: 280px !important;
    max-height: 360px !important;
  }

  .floating-stats-glass-panel {
    position: relative !important;
    margin: 12px 0 0 0 !important;
  }

  .stat-number-gold {
    font-size: 22px !important;
  }

  .stat-label-muted {
    font-size: 10px !important;
  }

  .architectural-top-badge {
    font-size: 11px !important;
    margin: 10px !important;
  }

  .bento-why-card {
    padding: 24px 20px !important;
  }

  .bento-card-title {
    font-size: 18px !important;
  }

  .bento-card-desc {
    font-size: 13.5px !important;
  }
/* ==========================================================================
   ULTRA-LUXURY ARCHITECTURAL FOOTER STYLING
   ========================================================================== */
.footer-pre-cta-section {
  background-color: #040407;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-card {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 192, 68, 0.3) !important;
}

.footer-contact-item {
  background: rgba(18, 18, 26, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.35s ease;
}

.footer-contact-item:hover {
  background: rgba(26, 26, 38, 0.95) !important;
  border-color: rgba(226, 192, 68, 0.4) !important;
  transform: translateY(-2px);
}

.footer-link {
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-link:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

.footer-link:hover .bi-chevron-right {
  opacity: 1 !important;
  color: #e2c044 !important;
}

.footer-district-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: all 0.25s ease;
}

.footer-district-pill:hover {
  background: rgba(226, 192, 68, 0.12);
  border-color: rgba(226, 192, 68, 0.4);
  color: #e2c044;
  transform: translateY(-2px);
}

/* ==========================================================================
   CUSTOM NAV DROPDOWN STYLING
   ========================================================================== */
.custom-nav-dropdown {
  position: relative;
}

.custom-nav-dropdown .dropdown-menu {
  background: rgba(10, 10, 16, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 192, 68, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(226, 192, 68, 0.08);
  margin-top: 12px;
}

.custom-nav-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.custom-nav-dropdown .dropdown-item:hover {
  background: rgba(226, 192, 68, 0.12) !important;
  color: #e2c044 !important;
  transform: translateX(4px);
}

@media (min-width: 992px) {
  .custom-nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ==========================================================================
   ABOUT PAGE: LUXURY FEATURE CARDS & WORKFLOW TIMELINE
   ========================================================================== */

/* Glass Feature Cards (Sabit Bütçe & Gününde Teslim) */
.about-feature-card {
  background: linear-gradient(145deg, rgba(26, 28, 42, 0.92) 0%, rgba(12, 13, 20, 0.96) 100%);
  border: 1px solid rgba(226, 192, 68, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 192, 68, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(226, 192, 68, 0.15);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(226, 192, 68, 0.25) 0%, rgba(226, 192, 68, 0.05) 100%);
  border: 1px solid rgba(226, 192, 68, 0.4);
  color: #e2c044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
}

.about-feature-card:hover .about-feature-icon {
  background: linear-gradient(135deg, #e2c044 0%, #b89114 100%);
  color: #040406;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 10px 25px rgba(226, 192, 68, 0.4);
}

.about-feature-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.about-feature-desc {
  color: rgba(230, 230, 242, 0.82);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 0;
}

/* 4-Step Process Timeline Cards */
.workflow-process-track {
  position: relative;
}

@media (min-width: 992px) {
  .workflow-process-track::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(226, 192, 68, 0.1) 0%, rgba(226, 192, 68, 0.5) 50%, rgba(226, 192, 68, 0.1) 100%);
    border-top: 2px dashed rgba(226, 192, 68, 0.4);
    z-index: 1;
    pointer-events: none;
  }
}

.step-process-card {
  background: linear-gradient(155deg, rgba(22, 24, 38, 0.95) 0%, rgba(10, 11, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #e2c044 !important;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 192, 68, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  height: 100%;
}

.step-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(226, 192, 68, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.step-process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(226, 192, 68, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.8), 0 0 30px rgba(226, 192, 68, 0.2);
}

.step-process-card:hover::before {
  opacity: 1;
}

.step-num-badge {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #ffe97d 40%, #e2c044 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(226, 192, 68, 0.3));
}

.step-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(226, 192, 68, 0.12);
  border: 1px solid rgba(226, 192, 68, 0.35);
  color: #e2c044;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
}

.step-process-card:hover .step-icon-bubble {
  background: #e2c044;
  color: #040406;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(226, 192, 68, 0.5);
}

.step-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-card-desc {
  color: rgba(220, 220, 235, 0.82);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-feature-card {
    padding: 20px 18px !important;
  }
  
  .step-process-card {
    padding: 22px 20px !important;
  }

  .step-num-badge {
    font-size: 30px !important;
  }
  
  .step-card-title {
    font-size: 16.5px !important;
  }
  
  .step-card-desc {
    font-size: 13.5px !important;
  }
}

/* ==========================================================================
/* ==========================================================================
   HIGH-CONTRAST DARK BREADCRUMB NAVIGATION
   ========================================================================== */
.custom-dark-breadcrumb .breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  background: transparent !important;
}

.custom-dark-breadcrumb .breadcrumb-item {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
}

.custom-dark-breadcrumb .breadcrumb-item a,
.custom-dark-breadcrumb .breadcrumb-item a:link,
.custom-dark-breadcrumb .breadcrumb-item a:visited {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.custom-dark-breadcrumb .breadcrumb-item a:hover {
  color: #e2c044 !important;
}

.custom-dark-breadcrumb .breadcrumb-item.active {
  color: #e2c044 !important;
  font-weight: 700 !important;
}

.custom-dark-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #e2c044 !important;
  content: "›" !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 0 8px !important;
}

/* ==========================================================================
   SIDEBAR SERVICE LINKS (NO DEFAULT BLUE LINKS)
   ========================================================================== */
a.sidebar-service-link,
a.sidebar-service-link:link,
a.sidebar-service-link:visited {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #f1f5f9 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

a.sidebar-service-link:hover,
a.sidebar-service-link:focus,
a.sidebar-service-link:active {
  background: rgba(226, 192, 68, 0.14) !important;
  border-color: rgba(226, 192, 68, 0.45) !important;
  color: #ffffff !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

a.sidebar-service-link span {
  color: #f1f5f9 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  transition: color 0.25s ease !important;
}

a.sidebar-service-link:hover span {
  color: #e2c044 !important;
}

/* ==========================================================================
   ULTRA LUXURY WHATSAPP QUOTE FORM CARD
   ========================================================================== */
.quote-card-luxury {
  background: linear-gradient(155deg, rgba(18, 20, 32, 0.98) 0%, rgba(8, 9, 15, 0.99) 100%) !important;
  border: 1px solid rgba(226, 192, 68, 0.32) !important;
  border-radius: 24px !important;
  padding: 26px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(226, 192, 68, 0.08) !important;
  backdrop-filter: blur(20px) !important;
}

.quote-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, rgba(226, 192, 68, 0.08) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.quote-card-luxury .input-group-text {
  background-color: #1a1e2e !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #e2c044 !important;
}

.quote-card-luxury .form-control,
.quote-card-luxury .form-select {
  background-color: #121522 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
}

.quote-card-luxury .form-control::placeholder,
.quote-card-luxury textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  font-size: 13.5px !important;
}

.quote-card-luxury .form-select option {
  background-color: #121522 !important;
  color: #ffffff !important;
}

.quote-card-luxury .input-group:focus-within .input-group-text,
.quote-card-luxury .input-group:focus-within .form-control,
.quote-card-luxury .input-group:focus-within .form-select {
  border-color: #e2c044 !important;
  box-shadow: 0 0 15px rgba(226, 192, 68, 0.25) !important;
}

.quote-card-luxury button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45) !important;
}

/* Global Standalone High-Contrast Input Placeholders */
.form-control::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

.form-control::-webkit-input-placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

.form-control::-moz-placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.form-control:-ms-input-placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

textarea::-webkit-input-placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #94a3b8 !important;
}

/* High Contrast Dedicated Input Class */
.high-contrast-input::placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.high-contrast-input::-webkit-input-placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.high-contrast-input::-moz-placeholder {
  color: #cbd5e1 !important;
  opacity: 1 !important;
}

/* Footer District Pill Hover Effect */
a.footer-district-pill:hover {
  background: rgba(226, 192, 68, 0.16) !important;
  border-color: rgba(226, 192, 68, 0.45) !important;
  color: #e2c044 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}






