/* ==========================================================================
   TANRIVERDİLER YAPI VE TADİLAT - ULTRA LUXURY LIGHT DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Corporate Brand Color Tokens */
  --gold-primary: #fcba03;      /* Primary Brand Amber Gold */
  --gold-light: #ffd043;        /* Primary Light / Hover */
  --gold-dark: #d49b00;         /* Primary Dark Accent */
  --gold-glow: rgba(252, 186, 3, 0.22);

  --color-secondary: #1f0061;   /* Secondary Deep Royal Indigo */
  --color-secondary-light: #32078c;
  --color-secondary-glow: rgba(31, 0, 97, 0.12);

  --bg-dark: #fdfcfb;           /* Pure Clean Light Background */
  --bg-surface: #f7f5fa;        /* Light Indigo-Gold Tint Surface */
  --bg-card: #ffffff;           /* Pure White Card */
  --bg-card-hover: #ffffff;
  
  --text-bright: #140933;       /* Deep Indigo Black Headings */
  --text-body: #343045;         /* Rich Charcoal Body */
  --text-muted: #645f78;        /* Soft Muted Slate */
  
  --border-gold: rgba(252, 186, 3, 0.3);
  --border-secondary: rgba(31, 0, 97, 0.15);
  --border-subtle: rgba(31, 0, 97, 0.08);

  /* Typography - Space Grotesk (Headlines & Header) & Titillium Web (Body) */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Titillium Web', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-bright);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--gold-dark);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--color-secondary);
  font-weight: 700;
  box-shadow: 0 6px 25px var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(252, 186, 3, 0.4);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.subtitle-badge {
  display: inline-block;
  padding: 0.45rem 1.3rem;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(31, 0, 97, 0.06);
  border: 1px solid var(--border-secondary);
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

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

/* Header & Navigation */
.top-bar {
  background: var(--color-secondary);
  border-bottom: 1px solid rgba(252, 186, 3, 0.3);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  color: #ffffff;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.8rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header .container.header-container,
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: 1480px;
  padding: 0 2rem;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .container.header-container,
.site-header.is-scrolled .header-container {
  height: 82px;
}

.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle Golden Ambient Halo Behind Logo */
.site-logo::before {
  content: '';
  position: absolute;
  inset: -6px -12px;
  background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.14) 0%, rgba(254, 243, 199, 0.05) 55%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: logo-ambient-glow 5s ease-in-out infinite alternate;
}

@keyframes logo-ambient-glow {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

/* Minimalist Architectural Gold Baseline Indicator */
.site-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.8), #ffd043, rgba(217, 119, 6, 0.8), transparent);
  border-radius: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center center;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.brand-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

/* Normal Header vs Sticky Header Logo Switching */
.site-header .site-logo .logo-sticky {
  display: none !important;
}

.site-header .site-logo .logo-normal {
  display: block !important;
}

.site-header.is-scrolled .site-logo .logo-normal {
  display: none !important;
}

.site-header.is-scrolled .site-logo .logo-sticky {
  display: block !important;
  max-height: 64px !important;
  height: 64px !important;
}

/* Hover States */
.site-logo:hover::before {
  opacity: 0.9;
  transform: scale(1.18);
  background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.22) 0%, rgba(254, 243, 199, 0.08) 60%, transparent 80%);
}

.site-logo:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-logo:hover .brand-logo-img {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 6px 18px rgba(217, 119, 6, 0.22)) drop-shadow(0 2px 6px rgba(15, 23, 42, 0.06));
}

/* Footer Logo Minimalist Styling */
.footer-branding {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-branding::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 20%;
  height: 1.5px;
  background: linear-gradient(90deg, #d97706, #ffd043, transparent);
  border-radius: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.footer-logo-img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

.footer-branding:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.footer-branding:hover .footer-logo-img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 16px rgba(217, 119, 6, 0.25));
}

.main-navigation > ul,
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.38rem 0.6rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 163, 89, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 22px -2px rgba(13, 0, 38, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.main-navigation > ul > li {
  position: relative;
}

.main-navigation > ul > li > a {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
  color: #26193d;
  position: relative;
  padding: 0.65rem 1.35rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li:hover > a {
  color: #8c5b00;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.16) 0%, rgba(212, 163, 89, 0.08) 100%);
  border-color: rgba(212, 163, 89, 0.38);
  box-shadow: 0 2px 12px rgba(252, 186, 3, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.active > a {
  color: #8c5b00;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.22) 0%, rgba(212, 163, 89, 0.12) 100%);
  border-color: rgba(212, 163, 89, 0.45);
  box-shadow: 0 2px 14px rgba(252, 186, 3, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.main-navigation > ul > li.current-menu-item > a::after,
.main-navigation > ul > li.active > a::after {
  display: none !important;
  content: none !important;
}

/* Signature Architectural Gold Crest Active & Hover Line */
.main-navigation > ul > li > a .nav-crest-divider {
  display: flex !important;
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  margin: 0 !important;
  padding: 0;
  gap: 0.35rem;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform: scaleX(0.4) translateY(2px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

.main-navigation > ul > li.current-menu-item > a .nav-crest-divider,
.main-navigation > ul > li.active > a .nav-crest-divider,
.main-navigation > ul > li:hover > a .nav-crest-divider,
.main-navigation > ul > li > a:hover .nav-crest-divider {
  opacity: 1 !important;
  transform: scaleX(1) translateY(0) !important;
}

.nav-crest-divider .page-title-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent 0%, #1a1a1a 100%);
  border-radius: 50px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.nav-crest-divider .page-title-line.reverse {
  background: linear-gradient(270deg, transparent 0%, #1a1a1a 100%);
}

.nav-crest-divider .page-title-dot {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: none;
  flex-shrink: 0;
}

.nav-crest-divider .page-title-diamond-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.nav-crest-divider .page-title-diamond-outer {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: #1a1a1a;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-crest-divider .page-title-diamond-inner {
  width: 3.5px;
  height: 3.5px;
  background: #ffffff;
  border: none;
  border-radius: 0.5px;
}

/* Animated Luxury Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: rgba(18, 5, 45, 0.7);
  border: 1.5px solid rgba(252, 186, 3, 0.5);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1002;
  flex-shrink: 0;
}

.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 22px;
  height: 2.2px;
  background: #fcba03;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle.is-active .line-1 {
  transform: translateY(7.7px) rotate(45deg);
  background: #ffd043;
}

.mobile-menu-toggle.is-active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-active .line-3 {
  transform: translateY(-7.7px) rotate(-45deg);
  background: #ffd043;
}

/* Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.mobile-nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Drawer Panel & Elements (Hidden completely on Desktop) */
.mobile-drawer-panel,
.mobile-nav-backdrop,
.mobile-drawer-header,
.mobile-drawer-footer {
  display: none;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

/* ==========================================================================
   Header Ultra-Luxury CTA Button ("Fiyat Teklifi Al" - 24K Gold Edition)
   ========================================================================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-luxury-quote {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(135deg, #ffd700 0%, #fcba03 40%, #e09600 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 22px rgba(252, 186, 3, 0.38), 0 0 0 1px rgba(252, 186, 3, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  will-change: transform, box-shadow;
}

.btn-luxury-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff3a8 0%, #fcba03 45%, #cc8400 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* 45-Degree Animated Liquid Gold Shimmer Beam */
.btn-luxury-shimmer {
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.3) 75%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #0c021f;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-text {
  position: relative;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-luxury-arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  color: #0c021f;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Luxury Hover States */
.btn-luxury-quote:hover {
  transform: translateY(-2.5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(252, 186, 3, 0.55),
              0 0 22px rgba(252, 186, 3, 0.45),
              0 0 0 1.5px rgba(252, 186, 3, 0.6),
              inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.btn-luxury-quote:hover .btn-luxury-bg {
  opacity: 1;
}

.btn-luxury-quote:hover .btn-luxury-shimmer {
  left: 170%;
}

.btn-luxury-quote:hover .btn-luxury-arrow {
  transform: translateX(4px);
}

/* Active / Click State */
.btn-luxury-quote:active {
  transform: translateY(-0.5px) scale(0.98);
  box-shadow: 0 5px 15px rgba(252, 186, 3, 0.4);
}

/* ==========================================================================
   Main Video Hero Section (Tanıtım Filmi Fullscreen Ultra Luxury Edition)
   ========================================================================== */
.video-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #050212;
  z-index: 2;
}

.video-hero-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.video-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) contrast(1.02) saturate(1.05);
  transform: scale(1.02);
  transition: filter 0.6s ease;
}

.video-hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(6, 2, 20, 0.12) 0%, rgba(6, 2, 20, 0.22) 60%, rgba(6, 2, 20, 0.42) 100%);
  z-index: 2;
  pointer-events: none;
}

.video-hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 2, 20, 0.45) 0%, rgba(6, 2, 20, 0.18) 45%, transparent 75%),
              linear-gradient(180deg, rgba(6, 2, 20, 0.22) 0%, transparent 30%, rgba(6, 2, 20, 0.28) 100%);
  z-index: 3;
  pointer-events: none;
}

.video-hero-mesh-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(252, 186, 3, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.15;
  z-index: 4;
  pointer-events: none;
}

.video-hero-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 5;
  opacity: 0.22;
}

.video-hero-ambient-glow.glow-top {
  top: -150px;
  left: 20%;
  background: radial-gradient(circle, #fcba03 0%, rgba(252, 186, 3, 0) 70%);
}

.video-hero-ambient-glow.glow-bottom {
  bottom: -200px;
  right: 10%;
  background: radial-gradient(circle, #d97706 0%, rgba(217, 119, 6, 0) 70%);
}

.video-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 2.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
}

.video-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  margin: 0;
  max-width: 900px;
}

/* Heading Group for Perfectly Centered Divider Under Heading */
.video-hero-heading-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

/* Main Heading (Left-aligned & Vertically Centered) */
.video-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.video-title-light {
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: hero-fade-slide-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: transform, opacity, filter;
}

.video-title-gold {
  background: linear-gradient(135deg, #ffffff 0%, #fff1a1 20%, #ffd043 45%, #fcba03 70%, #d48b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(252, 186, 3, 0.45)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  opacity: 0;
  animation: hero-fade-slide-up 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
  will-change: transform, opacity, filter;
}

/* Signature Architectural Gold Crest Divider for Hero (Centered Under Heading) */
.video-hero-divider {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem;
  width: auto !important;
  max-width: 100%;
  margin: 1.25rem auto 0 auto !important;
  padding: 0 !important;
  opacity: 0;
  transform-origin: center center;
  animation: hero-divider-expand 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
  will-change: transform, opacity, filter;
}

.video-hero-divider .page-title-line {
  height: 2.5px;
  width: 140px;
  flex: 0 0 140px;
  background: linear-gradient(90deg, transparent 0%, #ffd043 30%, #fcba03 100%) !important;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(252, 186, 3, 0.85);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
}

.video-hero-divider .page-title-line.reverse {
  width: 140px;
  flex: 0 0 140px;
  background: linear-gradient(270deg, transparent 0%, #ffd043 30%, #fcba03 100%) !important;
}

.video-hero-divider .page-title-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fcba03 !important;
  box-shadow: 0 0 12px rgba(252, 186, 3, 0.95);
  flex-shrink: 0;
  margin: 0 !important;
}

.video-hero-divider .page-title-diamond-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  flex-shrink: 0;
  margin: 0 !important;
}

.video-hero-divider .page-title-diamond-outer {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background: #120038 !important;
  border: 2px solid #fcba03 !important;
  box-shadow: 0 0 16px rgba(252, 186, 3, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: hero-diamond-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.video-hero-divider .page-title-diamond-inner {
  width: 6px;
  height: 6px;
  background: #fcba03 !important;
  box-shadow: 0 0 8px rgba(252, 186, 3, 0.95);
  border-radius: 1px;
}

.video-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.1rem 0 0 0;
  max-width: 620px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: hero-fade-slide-up 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.45s forwards;
  will-change: transform, opacity, filter;
}

/* Slow Cinematic Luxury Keyframes */
@keyframes hero-fade-slide-up {
  0% {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-divider-expand {
  0% {
    opacity: 0;
    transform: scaleX(0.2);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
    filter: blur(0);
  }
}

@keyframes hero-diamond-reveal {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  60% {
    transform: scale(1.25) rotate(50deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}

/* Scroll Down Teaser */
.video-hero-scroll-teaser {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.teaser-text {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ffd043;
  text-transform: uppercase;
}

.teaser-mouse {
  width: 20px;
  height: 32px;
  border-radius: 12px;
  border: 1.5px solid rgba(252, 186, 3, 0.5);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.teaser-wheel {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #ffd043;
  animation: teaser-wheel-move 1.8s ease-in-out infinite;
}

@keyframes teaser-wheel-move {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.teaser-arrow {
  color: #ffd043;
  animation: teaser-arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes teaser-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.video-hero-scroll-teaser:hover {
  transform: translateX(-50%) translateY(3px);
}

.video-hero-scroll-teaser:hover .teaser-text {
  color: #ffffff;
}

/* Responsive Media Queries for Video Hero */
@media (max-width: 991px) {
  .video-hero-container {
    padding: 0 2.5rem;
  }
  .video-hero-title {
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  }
  .video-hero-divider {
    margin-top: 1rem;
  }
  .video-hero-divider .page-title-line,
  .video-hero-divider .page-title-line.reverse {
    width: 120px;
    flex: 0 0 120px;
  }
}

@media (max-width: 767px) {
  .video-hero-container {
    padding: 0 1.25rem;
  }
  .video-hero-title {
    font-size: 1.65rem;
    line-height: 1.22;
  }
  .video-hero-divider {
    margin-top: 0.85rem;
  }
  .video-hero-divider .page-title-line,
  .video-hero-divider .page-title-line.reverse {
    width: 95px;
    flex: 0 0 95px;
  }
  .video-hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 0.85rem;
  }
  .hero-desc-br {
    display: none;
  }
  .video-hero-scroll-teaser {
    display: none;
  }
}

/* ==========================================================================
   Scroll Expansion Hero Section (21st.dev Style Ultra Luxury Edition)
   ========================================================================== */
.scroll-expand-hero-section {
  position: relative;
  height: 200vh;
  background: #060214;
  overflow-x: clip;
}

.scroll-expand-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scroll-expand-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.1s linear;
}

.scroll-expand-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.05);
}

.scroll-expand-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 9, 51, 0.3) 0%, rgba(6, 2, 20, 0.8) 100%);
}

.scroll-expand-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}

/* Center Expandable Media Frame */
.scroll-expand-media-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 420px;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(252, 186, 3, 0.2);
  border: 1.5px solid rgba(252, 186, 3, 0.4);
  z-index: 2;
  will-change: width, height, border-radius;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.scroll-expand-media-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.scroll-expand-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.35s ease-in-out;
}

.scroll-expand-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 2, 20, 0.15) 0%, rgba(6, 2, 20, 0.75) 100%);
}

/* Subtle frame texts */
.scroll-expand-frame-info {
  position: absolute;
  bottom: 1.75rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.2s ease;
}

.scroll-info-date {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffd043;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.scroll-info-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.scroll-info-hint svg {
  animation: scrollHintBounce 2s infinite ease-in-out;
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Split Animated Typography */
.scroll-expand-title-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.scroll-title-word {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.6rem, 3.8vw, 4.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.05 !important;
  color: #ffffff !important;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(252, 186, 3, 0.35);
  margin: 0 !important;
  will-change: transform;
  white-space: nowrap !important;
  text-align: center;
}

.scroll-title-left {
  color: #fcba03 !important;
  background: linear-gradient(135deg, #ffffff 0%, #ffd043 50%, #fcba03 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.scroll-title-right {
  color: #ffffff !important;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

/* Media Switcher Buttons on Top Right (5 Ultra Luxury Spaces) */
.scroll-media-switcher {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(8, 3, 25, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.35rem 0.45rem;
  border-radius: 50px;
  border: 1px solid rgba(252, 186, 3, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  max-width: calc(100% - 3rem);
  overflow-x: auto;
  scrollbar-width: none;
}

.scroll-media-switcher::-webkit-scrollbar {
  display: none;
}

.media-switch-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-switch-btn:hover {
  color: #fcba03;
  background: rgba(252, 186, 3, 0.12);
}

.media-switch-btn.is-active {
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%);
  color: #140933;
  box-shadow: 0 4px 14px rgba(252, 186, 3, 0.5);
  transform: scale(1.02);
}

/* Action Bar on Full Expansion */
.scroll-expand-action-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  padding: 2.5rem 2rem 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 2, 20, 0.85) 40%, rgba(6, 2, 20, 0.98) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-expand-action-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-action-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Luxury Badge in Action Bar */
.scroll-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(18, 5, 45, 0.85);
  border: 1.5px solid rgba(252, 186, 3, 0.65);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(252, 186, 3, 0.25);
  margin-bottom: 1rem;
}

.scroll-badge-glow {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fcba03;
  box-shadow: 0 0 10px #fcba03, 0 0 20px #ffd043;
  animation: badgePulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

.scroll-badge-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffd043;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.scroll-action-text {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #f1edff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-action-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-action-btns .btn {
  border-radius: 50px;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.scroll-action-btns .btn-primary {
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%);
  color: #140933;
  border: 1px solid rgba(252, 186, 3, 0.6);
  box-shadow: 0 8px 25px rgba(252, 186, 3, 0.4);
}

.scroll-action-btns .btn-primary:hover {
  background: linear-gradient(135deg, #ffd043 0%, #fcba03 100%);
  color: #08011a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(252, 186, 3, 0.55);
}

.scroll-action-btns .scroll-proj-btn:hover {
  background: #fcba03 !important;
  color: #140933 !important;
  border-color: #fcba03 !important;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .scroll-media-switcher {
    top: 1.25rem !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 0.35rem 0.45rem !important;
    gap: 0.35rem !important;
    max-width: calc(100% - 1.5rem) !important;
    width: max-content !important;
  }
  .media-switch-btn {
    font-size: 0.84rem !important;
    padding: 0.48rem 0.95rem !important;
    font-weight: 700 !important;
  }
  .scroll-action-text {
    font-size: 0.98rem;
  }
  .scroll-action-btns {
    flex-direction: column;
    width: 100%;
  }
  .scroll-action-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Stats Counter Grid - Atmospheric Ultra Luxury Showcase Container (Clean Separate) */
.stats-section {
  background: var(--bg-dark);
  padding: 6rem 0 7.5rem;
  position: relative;
}

.stats-luxury-container {
  position: relative;
  background: radial-gradient(circle at 10% 15%, rgba(252, 186, 3, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 90% 85%, rgba(37, 99, 235, 0.22) 0%, transparent 45%),
              radial-gradient(rgba(252, 186, 3, 0.12) 1px, transparent 1px),
              linear-gradient(135deg, #050d24 0%, #0a1b47 38%, #0f2766 70%, #061130 100%);
  background-size: auto, auto, 28px 28px, 100% 100%;
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 35px 90px -20px rgba(4, 11, 30, 0.85), 0 0 60px rgba(37, 99, 235, 0.2);
  overflow: hidden;
}

.stats-luxury-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(252, 186, 3, 0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.stats-luxury-container::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Interactive Ultra-Luxury Transformation & Vision Showcase Section
   ========================================================================== */
.transformation-showcase-section {
  position: relative;
  background: linear-gradient(180deg, #09090b 0%, #121114 50%, #09090b 100%);
  padding: 7rem 0 6.5rem;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  user-select: none;
}

/* Background Ambient Atmosphere & Grid Texture */
.transform-ambient-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 70%, transparent 100%);
}

.transform-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(160px);
  z-index: 1;
}

.glow-top-left {
  top: -160px;
  left: -160px;
  background: rgba(252, 186, 3, 0.06);
}

.glow-bottom-right {
  bottom: -160px;
  right: -160px;
  background: rgba(252, 186, 3, 0.06);
}

/* 2-Column Grid Layout */
.transformation-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: start;
  position: relative;
  z-index: 10;
}

/* Left Column: Sticky Interactive Stage */
.transformation-media-col {
  position: sticky;
  top: 110px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 20;
}

.transformation-stage-sticky-box {
  position: sticky;
  top: 110px;
  width: 100%;
}

.transformation-stage-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: #09090b;
  --clip-pos: 50%;
}

.transformation-stage-frame:hover {
  border-color: rgba(252, 186, 3, 0.35);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(252, 186, 3, 0.15);
}

.transformation-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.transformation-layer.layer-after {
  z-index: 1;
}

.transformation-layer.layer-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--clip-pos, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--clip-pos, 50%)) 0 0);
}

.transformation-layer .transform-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-stage-frame:hover .transform-img {
  transform: scale(1.03);
}

/* Status Badges */
.transform-badge {
  position: absolute;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-before {
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.badge-after {
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(252, 186, 3, 0.92);
  border: 1px solid rgba(252, 186, 3, 0.3);
  color: #140933;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 186, 3, 0.3);
}

.transform-badge.badge-before.is-active {
  background: rgba(9, 9, 11, 0.95);
  border-color: #fcba03;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(252, 186, 3, 0.35);
  transform: scale(1.04);
}

.transform-badge.badge-after.is-active {
  background: #fcba03;
  color: #140933;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 25px rgba(252, 186, 3, 0.5);
  transform: scale(1.04);
}

.transform-badge.is-inactive {
  opacity: 0.55;
  transform: scale(0.96);
}

.transform-badge.is-inactive:hover {
  opacity: 0.95;
  transform: scale(1);
}

.transform-badge.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-dot.gold {
  background: #fcba03;
  box-shadow: 0 0 8px #fcba03;
}

.badge-dot.green {
  background: #140933;
}

/* Handle Laser Line & Chevron Lens */
.transformation-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--clip-pos, 50%);
  width: 48px;
  margin-left: -24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.handle-laser-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 15px rgba(241, 152, 34, 0.7), 0 0 30px rgba(241, 152, 34, 0.35);
}

.handle-chevron-disc {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #09090b;
  border: 2px solid #fcba03;
  color: #fcba03;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 0 20px rgba(241, 152, 34, 0.4), 0 8px 25px rgba(0, 0, 0, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-stage-frame:hover .handle-chevron-disc {
  transform: scale(1.1);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(241, 152, 34, 0.8), 0 10px 30px rgba(0, 0, 0, 0.7);
}

.handle-icon-left, .handle-icon-right {
  stroke-width: 2.8;
}

/* Right Column: Editorial & Interactive Steps */
.transformation-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

/* Live Badge */
.transformation-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fcba03;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sparkle-spin-icon {
  color: #fcba03;
  animation: sparkle-spin 8s linear infinite;
}

@keyframes sparkle-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Main Title */
.transformation-main-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', var(--font-heading), sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.title-white {
  display: block;
  color: #ffffff;
  font-weight: 900;
}

.title-gold-gradient {
  display: block;
  font-weight: 900;
  background: linear-gradient(135deg, #fcba03 0%, #ffd043 30%, #f59e0b 70%, #d49b00 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 18px rgba(252, 186, 3, 0.22));
}

/* Description */
.transformation-lead-text {
  font-family: var(--font-sans);
  font-size: 1.06rem;
  color: #a1a1aa;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* 3 Interactive Step Cards */
.transformation-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2.25rem;
  position: relative;
}

.transform-step-card {
  position: relative;
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 1.45rem 1.65rem;
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.transform-step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.transform-step-card.is-active {
  background: linear-gradient(135deg, #18181b 0%, #131215 100%);
  border-color: rgba(252, 186, 3, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(252, 186, 3, 0.12);
  transform: scale(1.02) translateX(4px);
}

.transform-step-card.is-active .step-card-active-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #ffd043 0%, #fcba03 50%, #d49b00 100%);
  border-radius: 1.5rem 0 0 1.5rem;
  box-shadow: 0 0 12px #fcba03;
}

.step-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
  transition: all 0.35s ease;
}

.step-num {
  position: absolute;
  top: 4px;
  right: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #71717a;
  transition: color 0.3s ease;
}

.step-svg {
  margin-top: 4px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.transform-step-card:hover .step-icon-wrap {
  color: #fcba03;
  border-color: rgba(252, 186, 3, 0.3);
  background: rgba(252, 186, 3, 0.08);
}

.transform-step-card:hover .step-svg {
  transform: rotate(8deg);
}

.transform-step-card.is-active .step-icon-wrap {
  background: #fcba03;
  border-color: #fcba03;
  color: #140933;
  box-shadow: 0 0 16px rgba(252, 186, 3, 0.45);
}

.transform-step-card.is-active .step-num {
  color: #140933;
  font-weight: 900;
}

.step-content-body {
  flex: 1;
}

.step-title {
  font-family: 'Plus Jakarta Sans', var(--font-heading), sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #f4f4f5;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
  line-height: 1.35;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.62;
  color: #9ca3af;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.transform-step-card:hover .step-title {
  color: #ffffff;
}

.transform-step-card:hover .step-desc {
  color: #d1d5db;
}

.transform-step-card.is-active .step-title {
  color: #fcba03;
}

.transform-step-card.is-active .step-desc {
  color: #e4e4e7;
}

/* Action Buttons & Luxury Pill Buttons */
.transformation-actions-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Primary Luxury Gold Pill Button */
.globe-pill-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.88rem 1.6rem 0.88rem 1.85rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #12072b !important;
  text-decoration: none !important;
  user-select: none;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd700 0%, #fcba03 45%, #e09600 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(252, 186, 3, 0.38), 
              0 2px 6px rgba(0, 0, 0, 0.2), 
              inset 0 1px 1px rgba(255, 255, 255, 0.85);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Shimmer Light Reflection Effect */
.globe-pill-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.3) 75%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.globe-pill-text {
  position: relative;
  z-index: 3;
  color: #12072b;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.globe-pill-arrow {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #12072b;
  color: #fcba03;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.globe-pill-arrow svg {
  transition: transform 0.35s ease;
}

.globe-pill-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 35px rgba(252, 186, 3, 0.55),
              0 0 25px rgba(252, 186, 3, 0.4),
              inset 0 1px 2px rgba(255, 255, 255, 0.95);
  color: #12072b !important;
}

.globe-pill-btn:hover::before {
  left: 170%;
}

.globe-pill-btn:hover .globe-pill-arrow {
  background: #000000;
  color: #ffd700;
  transform: scale(1.08) rotate(5deg);
}

.globe-pill-btn:hover .globe-pill-arrow svg {
  transform: translate(1px, -1px);
}

.globe-pill-btn:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 18px rgba(252, 186, 3, 0.4);
}

/* Secondary Frosted Glass Pill Button */
.transform-ghost-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.88rem 1.6rem 0.88rem 1.85rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  z-index: 1;
}

.transform-ghost-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.transform-ghost-arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.transform-ghost-arrow svg {
  transition: transform 0.35s ease;
}

.transform-ghost-btn:hover {
  background: rgba(252, 186, 3, 0.12);
  border-color: rgba(252, 186, 3, 0.65);
  color: #fcba03 !important;
  box-shadow: 0 10px 30px rgba(252, 186, 3, 0.25), 0 0 15px rgba(252, 186, 3, 0.15), inset 0 1px 0 rgba(252, 186, 3, 0.3);
  transform: translateY(-3px);
}

.transform-ghost-btn:hover .transform-ghost-arrow {
  background: #fcba03;
  border-color: #fcba03;
  color: #12072b;
  transform: scale(1.08) translateX(2px);
}

.transform-ghost-btn:hover .transform-ghost-arrow svg {
  transform: translateX(2px);
}

.transform-ghost-btn:active {
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 640px) {
  .globe-pill-btn,
  .transform-ghost-btn {
    padding: 0.72rem 1.15rem 0.72rem 1.25rem !important;
    gap: 0.6rem !important;
    max-width: calc(100% - 1rem) !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.01em !important;
    box-sizing: border-box !important;
  }
  .globe-pill-text,
  .transform-ghost-text {
    font-size: 0.84rem !important;
    white-space: nowrap !important;
  }
  .globe-pill-arrow,
  .transform-ghost-arrow {
    width: 26px !important;
    height: 26px !important;
  }
  .globe-pill-arrow svg,
  .transform-ghost-arrow svg {
    width: 12px !important;
    height: 12px !important;
  }
}

.transformation-stats-bar {
  margin-top: 4.5rem;
}

/* ==========================================================================
   Architectural Gold Crest Divider (Universal Section Divider)
   ========================================================================== */
.section-crest-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  margin: 1.15rem auto 1.5rem;
  position: relative;
  z-index: 2;
}

.section-crest-divider.align-left {
  margin: 1.15rem 0 1.5rem;
  justify-content: flex-start;
}

/* White/Light Background Sections: Lines use secondary deep navy */
.globe-showcase-section .page-title-line,
.atelier-manifesto-stage .page-title-line,
.services-visual-section .page-title-line,
.apple-horizontal-section .page-title-line,
.architectural-studio-booking-hub .page-title-line {
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 100%) !important;
  box-shadow: 0 0 10px rgba(31, 0, 97, 0.35) !important;
}

.globe-showcase-section .page-title-line.reverse,
.atelier-manifesto-stage .page-title-line.reverse,
.services-visual-section .page-title-line.reverse,
.apple-horizontal-section .page-title-line.reverse,
.architectural-studio-booking-hub .page-title-line.reverse {
  background: linear-gradient(270deg, transparent 0%, var(--color-secondary) 100%) !important;
  box-shadow: 0 0 10px rgba(31, 0, 97, 0.35) !important;
}

@media (max-width: 1024px) {
  .section-crest-divider.align-left {
    margin: 1.15rem auto 1.5rem;
    justify-content: center;
  }
}

/* Bottom Row: 3 Floating Luxury Navy Frosted Glass Stat Cards (Apple Style Cinematic Wing Expansion) */
.globe-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 10;
  margin-top: 3.5rem;
  perspective: 1200px;
}

.globe-stat-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96) 0%, rgba(3, 7, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
}

/* Center Card: Soft anchored pillar */
.globe-card-center {
  position: relative;
  z-index: 10;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 2.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Wing: Tucked behind center card in retracted state, slowly glides out on scroll */
.globe-card-left {
  position: relative;
  z-index: 2;
  transform: translate3d(calc(100% + 2rem), 0, 0) scale(0.92);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Right Wing: Tucked behind center card in retracted state, slowly glides out on scroll */
.globe-card-right {
  position: relative;
  z-index: 2;
  transform: translate3d(calc(-100% - 2rem), 0, 0) scale(0.92);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active State on Scroll (Slow, majestic reveal from center card) */
.globe-stats-expanded .globe-card-left {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.globe-stats-expanded .globe-card-right {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Internal Content Choreography */
.globe-card-left .globe-card-top-row,
.globe-card-left .globe-stat-num,
.globe-card-right .globe-card-top-row,
.globe-card-right .globe-stat-num {
  transition: opacity 3.0s cubic-bezier(0.12, 0.95, 0.25, 1);
}

.globe-card-left:not(.globe-stats-expanded .globe-card-left) .globe-card-top-row,
.globe-card-right:not(.globe-stats-expanded .globe-card-right) .globe-card-top-row {
  opacity: 0.2;
}

.globe-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #ffd043, #ffffff, #ffd043, transparent);
  opacity: 0.45;
  transition: all 0.75s ease;
}

.globe-stats-expanded .globe-stat-card::before {
  left: 6%;
  right: 6%;
  opacity: 0.8;
}

.globe-card-ambient {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.globe-stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(252, 186, 3, 0.65);
  box-shadow: 0 35px 70px -15px rgba(2, 6, 23, 0.7), 0 0 35px rgba(252, 186, 3, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.globe-stat-card:hover::before {
  left: 0%;
  right: 0%;
  opacity: 1;
}

.globe-stat-card:hover .globe-card-ambient {
  opacity: 1;
  transform: scale(1.35);
  background: radial-gradient(circle, rgba(252, 186, 3, 0.3) 0%, transparent 70%);
}

.globe-card-top-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.globe-card-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd043;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.globe-stat-card:hover .globe-card-icon {
  transform: scale(1.12) rotate(4deg);
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%);
  color: #020617;
  border-color: #ffd043;
  box-shadow: 0 0 30px rgba(252, 186, 3, 0.7);
}

.globe-card-titles {
  display: flex;
  flex-direction: column;
}

.globe-card-title {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ffd043 85%, #fcba03 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.globe-card-sub {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.4;
}

.globe-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.4vw, 3.85rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #fff0b3 40%, #ffd043 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  text-shadow: 0 0 30px rgba(252, 186, 3, 0.25);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   ARCHITECTURAL STAT COUNTERS (STANDALONE LUXURY PURE WHITE SECTION)
   ========================================================================== */
.architectural-stats-white-section {
  position: relative;
  background: #ffffff !important;
  padding: 4.75rem 0 5.25rem 0;
  border-top: 1px solid rgba(212, 163, 89, 0.22);
  border-bottom: 1px solid rgba(212, 163, 89, 0.22);
  overflow: hidden;
  z-index: 15;
}

.stats-white-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(252, 186, 3, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-white-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0 !important;
  position: relative;
  z-index: 2;
}

/* White Section: Left & Right Cards (Pure White Luxury) */
.architectural-stats-white-section .globe-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%) !important;
  border: 1.5px solid rgba(212, 163, 89, 0.32) !important;
  border-radius: 26px !important;
  padding: 2.25rem 2rem 2rem !important;
  min-height: 235px !important;
  box-shadow: 0 16px 40px -10px rgba(13, 0, 38, 0.07), 0 0 0 1px rgba(252, 186, 3, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.architectural-stats-white-section .globe-stat-card::before {
  display: none !important;
}

.architectural-stats-white-section .globe-card-crown-gold {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fcba03, #d4a359, transparent);
  border-radius: 26px 26px 0 0;
}

.architectural-stats-white-section .globe-card-ambient {
  background: radial-gradient(circle, rgba(252, 186, 3, 0.15) 0%, transparent 70%) !important;
  opacity: 0.5;
}

.architectural-stats-white-section .globe-card-icon {
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.18) 0%, rgba(212, 163, 89, 0.08) 100%) !important;
  border: 1.5px solid rgba(212, 163, 89, 0.42) !important;
  color: #b8811f !important;
  box-shadow: 0 4px 15px rgba(252, 186, 3, 0.16) !important;
}

.architectural-stats-white-section .globe-card-title {
  color: #1e1338 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #1e1338 !important;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.architectural-stats-white-section .globe-card-sub {
  color: #64748b !important;
  font-weight: 500;
  font-size: 0.96rem;
}

.architectural-stats-white-section .globe-stat-num {
  font-size: clamp(3rem, 4.4vw, 3.85rem) !important;
  font-weight: 900 !important;
  color: #1e1338 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #1e1338 !important;
  text-shadow: none !important;
  letter-spacing: -0.03em;
}

.architectural-stats-white-section .globe-stat-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #fcba03 !important;
  box-shadow: 0 25px 55px -12px rgba(212, 163, 89, 0.28), 0 0 25px rgba(252, 186, 3, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.architectural-stats-white-section .globe-stat-card:hover .globe-card-icon {
  background: linear-gradient(135deg, #fcba03 0%, #d4a359 100%) !important;
  color: #1e1338 !important;
  border-color: #fcba03 !important;
  box-shadow: 0 6px 22px rgba(252, 186, 3, 0.45) !important;
  transform: scale(1.1) rotate(4deg) !important;
}

/* White Section: SADECE ORTADAKİ KART (Brand Deep Luxury Navy Card) */
.architectural-stats-white-section .globe-card-center {
  background: linear-gradient(145deg, #0e1526 0%, #060b14 100%) !important;
  border: 1.5px solid rgba(212, 163, 89, 0.45) !important;
  box-shadow: 0 25px 60px -12px rgba(11, 17, 32, 0.55), 0 0 30px rgba(252, 186, 3, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.architectural-stats-white-section .globe-card-center .globe-card-ambient {
  background: radial-gradient(circle, rgba(252, 186, 3, 0.25) 0%, transparent 70%) !important;
  opacity: 0.65;
}

.architectural-stats-white-section .globe-card-center .globe-card-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  border: 1px solid rgba(252, 186, 3, 0.5) !important;
  color: #ffd043 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

.architectural-stats-white-section .globe-card-center .globe-card-title {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #ffd043 85%, #fcba03 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.architectural-stats-white-section .globe-card-center .globe-card-sub {
  color: #cbd5e1 !important;
}

.architectural-stats-white-section .globe-card-center .globe-stat-num {
  background: linear-gradient(135deg, #ffffff 0%, #fff0b3 40%, #ffd043 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 30px rgba(252, 186, 3, 0.25) !important;
}

.architectural-stats-white-section .globe-card-center:hover {
  box-shadow: 0 35px 75px -15px rgba(2, 6, 23, 0.7), 0 0 35px rgba(252, 186, 3, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.architectural-stats-white-section .globe-card-center:hover .globe-card-icon {
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%) !important;
  color: #020617 !important;
  border-color: #ffd043 !important;
  box-shadow: 0 0 30px rgba(252, 186, 3, 0.7) !important;
}

@media (max-width: 991px) {
  .stats-white-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 1200px) {
  .globe-canvas-holder {
    width: 540px;
    height: 540px;
  }
}

@media (max-width: 1024px) {
  .transformation-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .transformation-media-col {
    position: static;
    max-width: 680px;
    margin: 0 auto;
  }
  .transformation-content-col {
    text-align: left;
  }
  .transformation-actions-row {
    justify-content: flex-start;
  }
  .transformation-stats-bar {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .transformation-showcase-section {
    padding: 4.5rem 0 4rem;
  }
  .transformation-main-grid {
    gap: 2.25rem;
  }
  .transformation-stage-frame {
    border-radius: 1.5rem;
    aspect-ratio: 16 / 11;
  }
  .transform-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
  }
  .transform-step-card {
    padding: 1.15rem 1.25rem;
    border-radius: 1.25rem;
    gap: 1rem;
  }
  .step-icon-wrap {
    width: 42px;
    height: 42px;
  }
  .step-title {
    font-size: 0.95rem;
  }
  .step-desc {
    font-size: 0.82rem;
  }
  .globe-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats-showcase-title { font-size: 1.95rem !important; }
  .stat-glass-card, .stat-card { padding: 2.5rem 1.25rem 2.25rem !important; }
  .stat-glass-number, .stat-number { font-size: 2.85rem !important; }
}

/* ==========================================================================
   About Architectural Story Section (Architectural Atelier Manifesto Stage)
   ========================================================================== */
/* ==========================================================================
   Brand Philosophy Section (Ultra-Luxury Sticky Manifesto & Feature Cards)
   ========================================================================== */
.brand-philosophy-section {
  position: relative;
  padding: 7rem 0 8rem 0;
  background-color: #fbfaf8;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(252, 186, 3, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(31, 0, 97, 0.035) 0%, transparent 40%);
  color: #140933;
  overflow-x: clip;
  border-top: 1px solid rgba(20, 9, 51, 0.06);
  border-bottom: 1px solid rgba(20, 9, 51, 0.06);
}

/* Atmospheric Ambient Background Elements */
.philosophy-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.philosophy-ambient-glow.glow-left {
  top: 20%;
  left: 0;
  transform: translateX(-50%);
  background: rgba(252, 186, 3, 0.2);
}

.philosophy-ambient-glow.glow-right {
  bottom: 20%;
  right: 0;
  transform: translateX(50%);
  background: rgba(31, 0, 97, 0.1);
}

.philosophy-geom-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.philosophy-geom-ring.ring-static {
  width: 850px;
  height: 850px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(31, 0, 97, 0.035);
}

.philosophy-geom-ring.ring-dashed-spin {
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(252, 186, 3, 0.08);
  animation: philosophyRingSpin 140s linear infinite;
}

@keyframes philosophyRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.philosophy-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem 5.5rem;
  align-items: flex-start;
}

/* Left Sticky Column */
.philosophy-sticky-col {
  position: sticky;
  top: 7.5rem;
  align-self: flex-start;
}

.philosophy-left-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.philosophy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  background: rgba(252, 186, 3, 0.09);
  border: 1px solid rgba(252, 186, 3, 0.32);
  color: #92400e;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(252, 186, 3, 0.1);
}

.philosophy-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fcba03;
  box-shadow: 0 0 8px #fcba03;
  animation: pulseDot 2.2s ease-in-out infinite;
}

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

.philosophy-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  font-weight: 900;
  color: #140933;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
}

.philosophy-gold-gradient {
  background: linear-gradient(135deg, #d97706 0%, #fcba03 45%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  position: relative;
}

.philosophy-lead-desc {
  font-family: var(--font-sans);
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.philosophy-lead-desc strong {
  font-weight: 700;
  color: #140933;
}

/* Clean Trust Highlights Group */
.philosophy-trust-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.35rem 0 0.35rem 0.95rem;
  border-left: 2px solid rgba(252, 186, 3, 0.4);
}

.philosophy-trust-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  color: #374151;
}

.philosophy-trust-chip .trust-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d97706;
  flex-shrink: 0;
}

.philosophy-cta-wrap {
  padding-top: 0.5rem;
}

/* Ultra-Luxury Obsidian Story Button */
.btn-philosophy-story {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.92rem 1.65rem 0.92rem 1.95rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #140933 0%, #1f0061 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  box-shadow: 0 8px 25px rgba(31, 0, 97, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  z-index: 1;
}

.btn-philosophy-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(252, 186, 3, 0.25) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(252, 186, 3, 0.25) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.btn-philosophy-story .btn-story-text {
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.btn-philosophy-story:hover {
  background: linear-gradient(135deg, #1a0c42 0%, #29057d 100%);
  border-color: #fcba03;
  box-shadow: 0 14px 35px rgba(252, 186, 3, 0.35), 0 0 22px rgba(252, 186, 3, 0.25);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff !important;
}

.btn-philosophy-story:hover::before {
  left: 170%;
}

.philosophy-arrow-disc {
  position: relative;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fcba03;
  color: #140933;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  flex-shrink: 0;
}

.philosophy-arrow-disc svg {
  transition: transform 0.35s ease;
}

.btn-philosophy-story:hover .philosophy-arrow-disc {
  transform: scale(1.12) rotate(6deg);
  background: #ffd043;
}

.btn-philosophy-story:hover .philosophy-arrow-disc svg {
  transform: translateX(2px);
}

.btn-philosophy-story:active {
  transform: translateY(-1px) scale(0.99);
}

/* Right Column Cards */
.philosophy-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.philosophy-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.85rem;
  border: 1px solid rgba(31, 0, 97, 0.08);
  background-color: #ffffff;
  padding: 2.25rem 2.35rem;
  display: flex;
  flex-direction: row;
  gap: 2.25rem;
  align-items: center;
  cursor: default;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 32px -6px rgba(20, 9, 51, 0.05),
              0 0 0 1px rgba(31, 0, 97, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.philosophy-feature-card:hover {
  border-color: rgba(252, 186, 3, 0.6);
  box-shadow: 0 24px 55px -12px rgba(252, 186, 3, 0.22),
              0 0 25px rgba(252, 186, 3, 0.12),
              0 0 0 1.5px rgba(252, 186, 3, 0.35);
  transform: translateY(-5px);
}

.card-ambient-hover-glow {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(252, 186, 3, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.philosophy-feature-card:hover .card-ambient-hover-glow {
  opacity: 1;
}

.card-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  z-index: 10;
}

.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.card-step-badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9ca3af;
  padding: 0.32rem 0.8rem;
  border-radius: 9999px;
  background: rgba(31, 0, 97, 0.04);
  border: 1px solid rgba(31, 0, 97, 0.06);
  transition: all 0.35s ease;
}

.philosophy-feature-card:hover .card-step-badge {
  color: #92400e;
  background: rgba(252, 186, 3, 0.12);
  border-color: rgba(252, 186, 3, 0.35);
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  border: 1.5px solid rgba(252, 186, 3, 0.35);
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.14) 0%, rgba(252, 186, 3, 0.04) 100%);
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(252, 186, 3, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-feature-card:hover .card-icon-box {
  background: linear-gradient(135deg, #fcba03 0%, #ffd043 100%);
  border-color: #fcba03;
  color: #140933;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 6px 20px rgba(252, 186, 3, 0.35);
}

.card-heading-title {
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 800;
  color: #140933;
  margin: 0;
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.philosophy-feature-card:hover .card-heading-title {
  color: #b45309;
}

.card-body-desc {
  font-family: var(--font-sans);
  color: #4b5563;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.card-footer-action {
  margin-top: 0.4rem;
}

.card-footer-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.philosophy-feature-card:hover .card-footer-link {
  opacity: 1;
  color: #d97706;
  transform: translateX(4px);
}

.card-media-side {
  width: 250px;
  height: 185px;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.card-media-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 5;
  padding: 0.32rem 0.8rem;
  border-radius: 9999px;
  background: rgba(20, 9, 51, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffd043;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

.philosophy-feature-card:hover .card-feature-img {
  transform: scale(1.08);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .philosophy-sticky-col {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand-philosophy-section {
    padding: 4.5rem 0;
  }
  .philosophy-feature-card {
    flex-direction: column;
    padding: 1.6rem;
    gap: 1.5rem;
    align-items: stretch;
  }
  .card-media-side {
    width: 100%;
    height: 200px;
  }
  .philosophy-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 960px) {
  .manifesto-editorial-statement {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.75rem;
    gap: 1.5rem;
  }
  .statement-action-group {
    width: 100%;
  }
  .statement-link-btn {
    width: 100%;
    justify-content: center;
  }
}

.floating-experience-badge .badge-icon {
  font-size: 1.8rem;
}

.floating-experience-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.1;
}

.floating-experience-badge .badge-text {
  font-size: 0.85rem;
  color: #d1d5db;
  font-weight: 500;
}

/* Hybrid Power & 3 Pillars - Atmospheric Ultra Luxury Showcase Container */
.pillars-3-section {
  background: var(--bg-dark);
  padding: 6rem 0 7.5rem;
  position: relative;
}

.pillars-3-luxury-container {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(252, 186, 3, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.22) 0%, transparent 45%),
              radial-gradient(rgba(252, 186, 3, 0.12) 1px, transparent 1px),
              linear-gradient(135deg, #050d24 0%, #0a1b47 38%, #0f2766 70%, #061130 100%);
  background-size: auto, auto, 28px 28px, 100% 100%;
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 35px 90px -20px rgba(4, 11, 30, 0.85), 0 0 60px rgba(37, 99, 235, 0.2);
  overflow: hidden;
}

.pillars-3-luxury-container::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(252, 186, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.pillars-3-luxury-container::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.pillars-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.pillar-3-glass-card,
.pillar-3-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(20, 5, 48, 0.75) 50%, rgba(255, 255, 255, 0.03) 100%) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1.5px solid rgba(252, 186, 3, 0.35) !important;
  border-radius: 26px !important;
  padding: 3rem 2.25rem 2.5rem !important;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.pillar-3-glass-card::before,
.pillar-3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(252, 186, 3, 0.9), #ffffff, rgba(252, 186, 3, 0.9), transparent);
  opacity: 0.6;
  transition: all 0.45s ease;
}

.pillar-3-glass-card::after,
.pillar-3-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), #ffffff, var(--gold-primary), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-3-glass-card:hover,
.pillar-3-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(35, 10, 85, 0.8) 50%, rgba(252, 186, 3, 0.12) 100%) !important;
  border-color: rgba(252, 186, 3, 0.85) !important;
  box-shadow: 0 30px 65px -10px rgba(0, 0, 0, 0.8), 0 0 45px rgba(252, 186, 3, 0.35), inset 0 0 25px rgba(252, 186, 3, 0.15) !important;
}

.pillar-3-glass-card:hover::before,
.pillar-3-card:hover::before {
  opacity: 1;
  left: 5%;
  right: 5%;
}

.pillar-3-glass-card:hover .stat-card-glow,
.pillar-3-card:hover .stat-card-glow {
  opacity: 1;
}

.pillar-3-glass-card:hover::after,
.pillar-3-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pillar-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pillar-3-glass-icon,
.pillar-3-icon {
  width: 74px !important;
  height: 74px !important;
  min-width: 74px !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.25) 0%, rgba(252, 186, 3, 0.08) 100%) !important;
  border: 1.5px solid rgba(252, 186, 3, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffd043 !important;
  box-shadow: 0 0 25px rgba(252, 186, 3, 0.3), inset 0 0 15px rgba(252, 186, 3, 0.15) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin: 0 !important;
}

.pillar-3-glass-icon svg,
.pillar-3-icon svg {
  width: 36px !important;
  height: 36px !important;
  stroke: #ffd043 !important;
  fill: rgba(252, 186, 3, 0.35) !important;
  filter: drop-shadow(0 0 10px rgba(252, 186, 3, 0.7)) !important;
  transition: all 0.45s ease !important;
}

.pillar-3-glass-card:hover .pillar-3-glass-icon,
.pillar-3-card:hover .pillar-3-icon {
  transform: scale(1.15) rotate(4deg) !important;
  background: linear-gradient(135deg, #fcba03 0%, #ffe066 100%) !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 45px rgba(252, 186, 3, 0.85), 0 12px 30px rgba(0, 0, 0, 0.5) !important;
}

.pillar-3-glass-card:hover .pillar-3-glass-icon svg,
.pillar-3-card:hover .pillar-3-icon svg {
  stroke: #12032e !important;
  fill: #12032e !important;
  filter: none !important;
}

.pillar-glass-pill {
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: var(--gold-primary) !important;
  letter-spacing: 0.12em !important;
  padding: 0.4rem 0.95rem !important;
  border-radius: 50px !important;
  background: rgba(252, 186, 3, 0.15) !important;
  border: 1px solid rgba(252, 186, 3, 0.4) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.pillar-glass-title,
.pillar-3-title {
  font-family: var(--font-heading) !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 1.25rem 0 0.85rem 0 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
}

.pillar-glass-desc,
.pillar-3-desc {
  font-family: var(--font-sans) !important;
  color: #dcd6f0 !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin-bottom: 1.75rem !important;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: #e2dcfa;
  font-family: var(--font-sans);
  font-weight: 500;
}

.service-feature-item svg {
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(252, 186, 3, 0.18);
}

.service-card-link svg {
  transition: transform 0.3s ease;
}

.pillar-3-glass-card:hover .service-card-link {
  color: #ffffff;
}

.pillar-3-glass-card:hover .service-card-link svg {
  transform: translateX(6px);
  stroke: var(--gold-primary);
}

@media (max-width: 1024px) {
  .pillars-3-luxury-container { padding: 3.5rem 2rem; }
  .pillars-3-grid { gap: 1.5rem; }
  .pillar-glass-title { font-size: 1.45rem !important; }
}

/* ==========================================================================
   Services Showcase (Visual Luxury Architectural Image Cards Grid)
   ========================================================================== */
.services-visual-section {
  padding: 7rem 0 7.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(252, 186, 3, 0.05) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(31, 0, 97, 0.03) 0%, transparent 45%),
              #fcfbfa;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(20, 9, 51, 0.04);
  border-bottom: 1px solid rgba(20, 9, 51, 0.04);
}

.services-visual-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-tab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.services-tab-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: #fcba03;
}

.services-tab-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fcba03;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-visual-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0 0;
}

.services-title-dark {
  color: #0c1222;
  margin-right: 0.35rem;
}

.services-title-gold {
  background: linear-gradient(135deg, #b87900 0%, #d49b00 20%, #fcba03 50%, #ffd043 75%, #b87900 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Category Tabs Capsule Bar */
.services-tabs-capsule-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 5;
}

.services-tabs-nav-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  background: #ffffff;
  border: 1.5px solid rgba(212, 163, 89, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 9, 51, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.services-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #4b5563;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.services-tab-btn:hover {
  color: #b8811f;
  background: rgba(252, 186, 3, 0.08);
}

.services-tab-btn.is-active {
  background: linear-gradient(135deg, #ea8a00 0%, #d47a00 100%);
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(212, 122, 0, 0.35);
}

.tab-btn-icon {
  font-size: 1.05rem;
}

/* Tab Panels */
.services-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.services-tab-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: servicesPanelFade 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.services-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.75rem;
}

.service-visual-card {
  position: relative;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1.5px solid rgba(20, 9, 51, 0.08);
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.12);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.8s ease,
              box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  background: #090d16;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #090d16;
}

.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(5, 10, 25, 0.88) 100%);
  transition: background 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.85rem 1.85rem 1.95rem;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-card-num-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffd043;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(252, 186, 3, 0.35);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fcba03;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.cat-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fcba03;
  box-shadow: 0 0 8px #fcba03;
}

.service-corner-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-visual-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), margin 0.6s ease;
}

/* Hidden by default: slow & smooth expansion on hover */
.service-expandable-content {
  max-height: 0;
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual-p {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0.65rem 0 1.15rem 0;
}

.service-visual-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffd043;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.service-visual-link span {
  transition: transform 0.4s ease;
}

/* Hover Dynamics: Slow, Rich & High-End */
.service-visual-card:hover {
  transform: translateY(-9px);
  border-color: rgba(252, 186, 3, 0.75);
  box-shadow: 0 35px 70px -15px rgba(5, 10, 25, 0.7), 0 0 35px rgba(252, 186, 3, 0.2);
}

.service-visual-card:hover .service-card-bg img {
  transform: scale(1.07);
}

.service-visual-card:hover .service-card-scrim {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.5) 30%, rgba(5, 10, 25, 0.98) 100%);
}

.service-visual-card:hover .service-corner-arrow {
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%);
  color: #020617;
  border-color: #ffd043;
  transform: translate(3px, -3px) rotate(45deg) scale(1.08);
  box-shadow: 0 0 25px rgba(252, 186, 3, 0.75);
}

.service-visual-card:hover .service-expandable-content {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual-card:hover .service-visual-link {
  color: #ffffff;
}

.service-visual-card:hover .service-visual-link span {
  transform: translateX(6px);
}

.services-visual-bottom-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .services-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-visual-card {
    height: auto !important;
    min-height: 410px !important;
  }
  .service-expandable-content {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: visible !important;
  }
  .service-visual-p {
    margin: 0.5rem 0 0.85rem 0 !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }
  .service-card-content {
    padding: 1.4rem 1.4rem 1.6rem !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  .services-tabs-nav-bar {
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    gap: 0.35rem;
    padding: 0.5rem;
  }
  .services-tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .services-visual-section {
    padding: 5rem 0;
  }
  .services-visual-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-visual-card {
    height: auto !important;
    min-height: 385px !important;
    border-radius: 22px;
  }
  .service-card-content {
    padding: 1.35rem 1.35rem 1.55rem !important;
  }
  .service-visual-heading {
    font-size: 1.25rem !important;
  }
  .service-visual-p {
    font-size: 0.86rem !important;
    line-height: 1.42 !important;
    margin: 0.45rem 0 0.8rem 0 !important;
  }
  .service-visual-link {
    font-size: 0.88rem !important;
    padding-bottom: 0.2rem !important;
  }
}

/* ==========================================================================
   Ultra-Luxury Luminous Architectural Horizon Stage (Exact Match to Image 2)
   ========================================================================== */
.lamp-architectural-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #080e18;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  padding: 6.5rem 0 6.5rem;
}

/* Ambient Warm Glow in Corners */
.lamp-ambient-corner-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.lamp-ambient-corner-glow.top-left {
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.18) 0%, transparent 70%);
}

.lamp-ambient-corner-glow.top-right {
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.18) 0%, transparent 70%);
}

.lamp-ambient-corner-glow.bottom-left {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.14) 0%, transparent 70%);
}

.lamp-stage-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.lamp-illuminated-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

/* Heading */
.lamp-architectural-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem 0;
}

.lamp-title-white {
  display: block;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.lamp-title-gold {
  display: block;
  color: #facc15;
  text-shadow: 0 0 45px rgba(250, 204, 21, 0.45);
}

.lamp-architectural-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
}

.lamp-architectural-desc strong {
  color: #ffffff;
  font-weight: 700;
}

.lamp-desc-highlight {
  color: #facc15;
  font-weight: 700;
}

/* 3 Trust Feature Cards Row */
.lamp-trust-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  width: 100%;
  max-width: 860px;
}

.lamp-trust-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 204, 21, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lamp-trust-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: #facc15;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.15);
}

.lamp-card-icon {
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Dual Action Buttons */
.lamp-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.lamp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  background: #facc15;
  color: #080e18 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.lamp-btn-solid:hover {
  background: #fde047;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.45);
}

.lamp-btn-arrow-char {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.3s ease;
}

.lamp-btn-solid:hover .lamp-btn-arrow-char {
  transform: translate(2px, -2px);
}

.lamp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: transparent;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 1.5px solid #facc15;
  transition: all 0.3s ease;
}

.lamp-btn-outline svg {
  color: #facc15;
}

.lamp-btn-outline:hover {
  background: rgba(250, 204, 21, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(250, 204, 21, 0.25);
}

@media (max-width: 860px) {
  .lamp-trust-cards-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .lamp-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .lamp-btn-solid,
  .lamp-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Apple Style Pinned Horizontal Scrolling Pure Visual Portfolio Gallery
   ========================================================================== */
.apple-horizontal-pin-spacer {
  position: relative;
  height: 540vh;
  background: #ffffff;
}

.apple-horizontal-section {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
  padding: 0;
}

.horizontal-scroll-viewport {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 415px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.horizontal-header-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.horizontal-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 1.25rem 0 1rem 0;
  color: #0c1222;
}

.horizontal-title-gold {
  background: linear-gradient(135deg, #b87900 0%, #d49b00 20%, #fcba03 50%, #ffd043 75%, #b87900 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.horizontal-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.horizontal-scroll-progress-wrap {
  width: 100%;
  max-width: 280px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.horizontal-scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fcba03, #d49b00);
  border-radius: 4px;
  transition: width 0.08s linear;
}

.horizontal-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.horizontal-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
}

.horizontal-nav-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: scale(1.06);
}

.horizontal-scroll-hint {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #b87900;
  margin-left: 0.5rem;
}

.horizontal-cards-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0.5rem 2rem 0.5rem;
}

.horizontal-cards-container {
  display: flex;
  gap: 2rem;
  width: max-content;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.12s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 100% Pure Photographic Architectural Card - ZERO TEXT */
.horizontal-pure-visual-card {
  flex: 0 0 420px;
  width: 420px;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #090d16;
  border: 1.5px solid rgba(20, 9, 51, 0.08);
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.14);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}

.pure-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #090d16;
  pointer-events: none;
}

.pure-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Dynamics */
.horizontal-pure-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(252, 186, 3, 0.8);
  box-shadow: 0 35px 70px -15px rgba(5, 10, 25, 0.3), 0 0 35px rgba(252, 186, 3, 0.25);
}

.horizontal-pure-visual-card:hover .pure-card-img-wrap img {
  transform: scale(1.08);
}

.horizontal-mobile-cta-wrap {
  display: none;
}

@media (max-width: 1200px) {
  .apple-horizontal-pin-spacer {
    height: auto;
  }
  .apple-horizontal-section {
    position: relative;
    height: auto;
    max-height: none;
    padding: 5rem 0 4rem;
  }
  .horizontal-scroll-viewport {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .horizontal-header-col {
    text-align: center;
    align-items: center;
  }
  .desktop-horizontal-cta {
    display: none !important;
  }
  .horizontal-mobile-cta-wrap {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1.75rem;
  }
  .horizontal-nav-controls {
    justify-content: center;
    margin-bottom: 0.5rem;
    gap: 1rem;
  }
  .horizontal-nav-btn {
    width: 54px !important;
    height: 54px !important;
  }
  .horizontal-nav-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  .horizontal-scroll-hint {
    font-size: 1.05rem !important;
    margin-left: 0.65rem !important;
  }
  .horizontal-cards-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.75rem 0.5rem 1rem 0.5rem;
  }
  .horizontal-cards-wrapper::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .horizontal-pure-visual-card {
    flex: 0 0 300px;
    width: 300px;
    height: 400px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   Process & Methodology Timeline Section (Exact Reference Stepper Layout)
   ========================================================================== */
.architectural-timeline-process-section {
  padding: 6.5rem 0 7.5rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.timeline-process-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.timeline-process-eyebrow {
  color: #b45309;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.timeline-process-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #171717;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.timeline-gold-gradient {
  background: linear-gradient(135deg, #d97706 0%, #b45309 60%, #171717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stepper Stage & Central Spine */
.timeline-stepper-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto 4rem auto;
}

.timeline-spine-track {
  position: absolute;
  left: 50%;
  top: 1rem;
  bottom: 1rem;
  width: 6px;
  background-color: #f0ede6;
  transform: translateX(-50%);
  border-radius: 9999px;
  z-index: 1;
}

.timeline-spine-gold-fill {
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 6px;
  height: 0%;
  max-height: calc(100% - 2rem);
  background: linear-gradient(180deg, #d97706 0%, #ffd043 50%, #d97706 100%);
  transform: translateX(-50%);
  border-radius: 9999px;
  z-index: 2;
  box-shadow: 0 0 16px rgba(217, 119, 6, 0.65), 0 0 30px rgba(251, 191, 36, 0.45);
  transition: height 0.1s linear;
  will-change: height;
  pointer-events: none;
}

.timeline-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 10;
}

.timeline-step-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  width: 100%;
  transition: all 0.4s ease;
}

.timeline-step-item.is-left {
  flex-direction: row-reverse;
}

.timeline-step-item.is-right {
  flex-direction: row;
}

.timeline-empty-col {
  flex: 1;
}

.timeline-node-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #171717;
  color: #ffd043;
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-node-disc svg {
  width: 19px;
  height: 19px;
  transition: transform 0.3s ease;
}

/* Active Node State when scroll line reaches it */
.timeline-node-disc.is-active,
.timeline-step-item.is-active .timeline-node-disc,
.timeline-step-item:hover .timeline-node-disc {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  border-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.18), 0 0 20px rgba(217, 119, 6, 0.45);
}

.timeline-card-col {
  flex: 1;
}

.timeline-content-card {
  position: relative;
  padding: 2.25rem 2.5rem;
  border-radius: 24px;
  background-color: #ffffff;
  border: 1.5px solid #e7e5e4;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: default;
}

.timeline-content-card.is-active,
.timeline-step-item.is-active .timeline-content-card,
.timeline-content-card:hover {
  border-color: #d4af37;
  box-shadow: 0 16px 40px -8px rgba(212, 175, 55, 0.22), 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  background-color: #ffffff;
}

.timeline-content-card.text-right-desktop {
  text-align: right;
}

.timeline-content-card.text-left-desktop {
  text-align: left;
}

.timeline-watermark-num {
  position: absolute;
  top: 0.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(217, 119, 6, 0.09);
  pointer-events: none;
  user-select: none;
  transition: all 0.5s ease;
}

.timeline-watermark-num.num-right {
  right: 1.5rem;
}

.timeline-watermark-num.num-left {
  left: 1.5rem;
}

.timeline-content-card.is-active .timeline-watermark-num,
.timeline-step-item.is-active .timeline-watermark-num,
.timeline-content-card:hover .timeline-watermark-num {
  color: rgba(217, 119, 6, 0.22);
  transform: scale(1.06);
}

.timeline-card-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #171717;
  margin: 0 0 0.75rem 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.timeline-card-paragraph {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.75;
  color: #525252;
  margin: 0;
  position: relative;
  z-index: 2;
}

.timeline-bottom-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .timeline-spine-track,
  .timeline-spine-gold-fill {
    left: 2rem;
    transform: none;
    width: 5px;
  }
  
  .timeline-step-item {
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
  }
  
  .timeline-empty-col {
    display: none;
  }
  
  .timeline-node-disc {
    left: 2rem;
    top: 2rem;
    width: 38px;
    height: 38px;
    transform: translate(-50%, 0);
  }
  
  .timeline-node-disc svg {
    width: 17px;
    height: 17px;
  }
  
  .timeline-node-disc.is-active,
  .timeline-step-item.is-active .timeline-node-disc,
  .timeline-step-item:hover .timeline-node-disc {
    transform: translate(-50%, 0) scale(1.08);
  }
  
  .timeline-card-col {
    padding-left: 3.5rem;
    width: 100%;
  }
  
  .timeline-content-card {
    padding: 1.75rem 1.5rem;
  }
  
  .timeline-content-card.text-right-desktop,
  .timeline-content-card.text-left-desktop {
    text-align: left;
  }
  
  .timeline-watermark-num.num-right,
  .timeline-watermark-num.num-left {
    right: 1.25rem !important;
    left: auto !important;
    font-size: 3.8rem;
  }
}

.trust-item-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.trust-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcba03 0%, #d49b00 100%);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-item-divider {
  color: #cbd5e1;
  font-size: 1.2rem;
}

.process-horizontal-bottom-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1100px) {
  .process-stepper-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .process-horizontal-section {
    padding: 4rem 0 4.5rem;
  }
  .process-stepper-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-horizontal-trust-bar {
    border-radius: 20px;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
  }
  .trust-item-divider {
    display: none;
  }
}

/* ==========================================================================
   Grand Consultation & Project Studio Hub (Interactive Architectural Desk)
   ========================================================================== */
.architectural-studio-booking-hub {
  padding: 6.5rem 0 7rem;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.studio-blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.studio-master-bento {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  padding: 4.5rem 3.5rem 3.5rem;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.studio-master-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.studio-master-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #090e1a;
  margin: 0 0 1rem;
}

.studio-gold-text {
  color: #d97706;
  background: linear-gradient(135deg, #b45309 0%, #d97706 40%, #f59e0b 70%, #d97706 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.studio-master-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Interactive Architectural Discovery & Quote Calculator Wizard Styles
   ========================================================================== */
.studio-wizard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.15rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #b45309;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.wizard-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 8px #f59e0b;
  animation: badgePulse 2s infinite;
}

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

.quote-wizard-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.05);
  margin-bottom: 2.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Step Progress Track */
.wizard-progress-wrapper {
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.wizard-steps-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto;
}

.wizard-step-node {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: default;
  opacity: 0.45;
  transition: all 0.3s ease;
}

.wizard-step-node.active {
  opacity: 1;
}

.wizard-step-node.completed {
  opacity: 0.9;
}

.node-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.wizard-step-node.active .node-num {
  background: linear-gradient(135deg, #b45309, #d97706, #f59e0b);
  border-color: #f59e0b;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.wizard-step-node.completed .node-num {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.node-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 0.85rem;
  transition: background 0.3s ease;
}

/* Wizard Slides */
.wizard-slide {
  animation: slideFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.slide-header {
  margin-bottom: 2rem;
}

.slide-step-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: #d97706;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.slide-step-tag.gold {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.slide-heading {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: #090e1a;
  margin: 0 0 0.45rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.slide-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Wizard Options Grid */
.wizard-options-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.wizard-options-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.wizard-options-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.wizard-selection-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.wizard-selection-card:hover {
  background: #ffffff;
  border-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.12);
}

.wizard-selection-card.active {
  background: #fffcf5;
  border-color: #d97706;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
}

.wizard-selection-card.compact {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.35rem 1.25rem;
}

.selection-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.selection-card-icon.gold {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.selection-card-icon.navy {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.wizard-selection-card.active .selection-card-icon.gold {
  background: #d97706;
  color: #ffffff;
}

.selection-card-content {
  flex: 1;
}

.selection-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.selection-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.selection-meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
}

.selection-arrow {
  font-size: 1.4rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.wizard-selection-card:hover .selection-arrow,
.wizard-selection-card.active .selection-arrow {
  color: #d97706;
  transform: translateX(4px);
}

/* Commercial Concierge Box */
.commercial-concierge-box {
  background: linear-gradient(135deg, #090e1a 0%, #030712 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 2.75rem 2.5rem;
  color: #ffffff;
  text-align: center;
}

.concierge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.3);
  color: #facc15;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.badge-dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 6px #facc15;
}

.concierge-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.35;
}

.concierge-desc {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 1.85rem;
  line-height: 1.7;
}

.concierge-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.c-pill {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
}

.concierge-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wizard-back-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.4rem 1rem;
  transition: color 0.2s ease;
}

.wizard-back-btn:hover {
  color: #ffffff;
}

/* Fields & Chips */
.wizard-field-group {
  margin-bottom: 1.85rem;
}

.wizard-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.85rem;
}

.wizard-chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.wizard-chip {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wizard-chip:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
}

.wizard-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.wizard-chip.district.active {
  background: linear-gradient(135deg, #b45309, #d97706);
  border-color: #d97706;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.wizard-input-wrap {
  margin-top: 0.85rem;
}

.wizard-text-input {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: #0f172a;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wizard-text-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* Sub-questions Box */
.wizard-subquestions-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.25rem;
}

.subq-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.subq-group .wizard-label {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: #475569;
}

/* Multi-select Scope Grid */
.wizard-scope-multigrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.scope-checkbox-card {
  display: block;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.scope-checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.scope-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: all 0.25s ease;
}

.scope-check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all 0.2s ease;
}

.scope-checkbox-card:hover .scope-card-inner {
  background: #ffffff;
  border-color: #cbd5e1;
}

.scope-checkbox-card.active .scope-card-inner {
  background: #fffcf5;
  border-color: #d97706;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.1);
}

.scope-checkbox-card.active .scope-check-box {
  background: #d97706;
  border-color: #d97706;
  color: #ffffff;
}

.scope-checkbox-card.master {
  grid-column: 1 / -1;
  border-color: rgba(217, 119, 6, 0.4);
}

.scope-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.scope-hint {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

/* Summary Receipt Board */
.wizard-summary-receipt {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  margin-bottom: 2.25rem;
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.receipt-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.06em;
}

.receipt-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #b45309;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.receipt-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.receipt-item.full-width {
  grid-column: 1 / -1;
}

.receipt-k {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

.receipt-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
}

.receipt-scopes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.receipt-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

.receipt-contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.receipt-contact-row .wizard-field-group {
  margin-bottom: 0;
}

/* Final CTA Box */
.wizard-final-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.wizard-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-whatsapp-btn:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.55);
}

.wizard-whatsapp-btn.grand-pulse {
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4); }
  50% { box-shadow: 0 14px 45px rgba(34, 197, 94, 0.65); }
}

.wizard-alternative-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.wizard-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wizard-alt-link:hover {
  color: #0f172a;
}

.wizard-restart-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.wizard-restart-btn:hover {
  color: #d97706;
}

/* Nav Footers */
.wizard-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.wizard-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wizard-btn-outline:hover {
  border-color: #0f172a;
  color: #0f172a;
}

.wizard-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  background: #0f172a;
  border: none;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
}

.wizard-btn-solid:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.wizard-btn-solid.gold-pulse {
  background: linear-gradient(135deg, #b45309, #d97706, #f59e0b);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.wizard-btn-solid.gold-pulse:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  transform: translateY(-2px);
}

/* Responsive Wizard Rules */
@media (max-width: 860px) {
  .quote-wizard-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .wizard-steps-track {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .node-label {
    display: none;
  }
  .wizard-options-grid.two-cols,
  .wizard-options-grid.three-cols,
  .wizard-scope-multigrid,
  .receipt-grid,
  .receipt-contact-row {
    grid-template-columns: 1fr;
  }
  .scope-checkbox-card.master {
    grid-column: auto;
  }
  .wizard-whatsapp-btn {
    width: 100%;
    box-sizing: border-box;
  }
  .wizard-nav-footer {
    flex-direction: row;
  }
}

/* Understated Trust Footnote */
.studio-guarantee-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
}

.ribbon-bullet {
  color: #cbd5e1;
}

@media (max-width: 860px) {
  .studio-master-bento {
    padding: 3rem 1.25rem 2rem;
    border-radius: 24px;
  }
  .studio-guarantee-ribbon {
    flex-direction: column;
    gap: 0.4rem;
  }
  .ribbon-bullet {
    display: none;
  }
}

/* Trust Commitment Section - Atmospheric Ultra Luxury Architectural Pavilion */
.trust-section {
  padding: 8rem 0;
  position: relative;
  background-color: #09021a;
  background-image: linear-gradient(135deg, rgba(9, 2, 26, 0.96), rgba(21, 0, 63, 0.92)),
                    url('../images/craftsman_architect.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(252, 186, 3, 0.4);
  border-bottom: 1px solid rgba(252, 186, 3, 0.4);
  overflow: hidden;
}

.trust-luxury-pavilion {
  position: relative;
  z-index: 10;
}

.trust-pavilion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-key-crest {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.3), rgba(31, 0, 97, 0.6));
  border: 1.5px solid rgba(252, 186, 3, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(252, 186, 3, 0.3), 0 0 20px rgba(252, 186, 3, 0.2);
  margin-bottom: 1.5rem;
}

.trust-check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.trust-check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 186, 3, 0.25);
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-check-item .check-icon {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.trust-right-column {
  position: relative;
}

.trust-signature-card {
  background: rgba(18, 0, 56, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(252, 186, 3, 0.4);
  border-radius: 32px;
  padding: 4rem 3.5rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 50px rgba(252, 186, 3, 0.2);
  position: relative;
  overflow: hidden;
}

.trust-quote-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.trust-signature-seal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.seal-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.seal-content {
  text-align: center;
}

.seal-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
}

.seal-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #a0a7b5;
  margin-top: 0.2rem;
}

@media (max-width: 992px) {
  .trust-pavilion-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-signature-card { padding: 3rem 1.75rem; }
}

/* ==========================================================================
   Spatial Design Vision & 4 Pillars - Atmospheric Dual Luxury Pavilions
   ========================================================================== */
.philosophy-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.philosophy-pavilion-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1.5px solid rgba(252, 186, 3, 0.4);
  box-shadow: 0 30px 80px -20px rgba(9, 2, 23, 0.8), 0 0 50px rgba(252, 186, 3, 0.15);
  background: #09021a;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-pavilion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 186, 3, 0.85);
  box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.85), 0 0 60px rgba(252, 186, 3, 0.3);
}

.pavilion-bg-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.pavilion-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-pavilion-card:hover .pavilion-bg-media img {
  transform: scale(1.06);
}

.pavilion-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 2, 23, 0.75) 0%, rgba(13, 2, 33, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pavilion-media-overlay.right-overlay {
  background: linear-gradient(180deg, rgba(16, 0, 48, 0.8) 0%, rgba(9, 2, 23, 0.96) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pavilion-card-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pavilion-top-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: rgba(13, 2, 33, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(252, 186, 3, 0.5);
  border-radius: 50px;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.pavilion-main-title {
  font-family: var(--font-heading) !important;
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  margin: 0 0 1.25rem 0 !important;
  letter-spacing: -0.02em !important;
}

.pavilion-main-desc {
  font-family: var(--font-sans) !important;
  color: #dcd6f0 !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
  margin-bottom: 2rem !important;
}

.pavilion-quote-bar {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  background: rgba(252, 186, 3, 0.08);
  border: 1px solid rgba(252, 186, 3, 0.25);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.quote-gold-line {
  width: 4px;
  border-radius: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.philosophy-micro-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.philosophy-micro-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 186, 3, 0.22);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  transition: all 0.35s ease;
}

.philosophy-micro-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(252, 186, 3, 0.7);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(252, 186, 3, 0.2);
}

.micro-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.25) 0%, rgba(252, 186, 3, 0.08) 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(252, 186, 3, 0.25);
  transition: all 0.35s ease;
}

.philosophy-micro-card:hover .micro-card-icon {
  background: linear-gradient(135deg, #fcba03 0%, #ffe066 100%);
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(252, 186, 3, 0.7);
}

.philosophy-micro-card:hover .micro-card-icon svg {
  stroke: #12032e;
  fill: #12032e;
}

.micro-card-body {
  display: flex;
  flex-direction: column;
}

.micro-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.micro-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #d1caee;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .philosophy-dual-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pavilion-card-content { padding: 3rem 2rem; }
}

@media (max-width: 640px) {
  .pavilion-main-title { font-size: 1.95rem !important; }
  .pavilion-top-badge { top: 1rem; right: 1rem; padding: 0.3rem 0.75rem; }
}

/* ==========================================================================
   Expertise 6 Section - Tadilat ve Yapısal Yenileme Çözümlerimiz
   ========================================================================== */
.expertise-6-section {
  padding: 6.5rem 0;
  background: var(--bg-dark);
}

.expertise-luxury-container {
  position: relative;
  background: radial-gradient(circle at 80% 15%, rgba(252, 186, 3, 0.16) 0%, transparent 40%),
              radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.22) 0%, transparent 40%),
              radial-gradient(rgba(252, 186, 3, 0.12) 1px, transparent 1px),
              linear-gradient(135deg, #050d24 0%, #0a1b47 38%, #0f2766 70%, #061130 100%);
  background-size: auto, auto, 28px 28px, 100% 100%;
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 5rem 3.5rem;
  box-shadow: 0 35px 90px -20px rgba(4, 11, 30, 0.85), 0 0 60px rgba(37, 99, 235, 0.2);
  overflow: hidden;
}

.expertise-luxury-container::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(252, 186, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.expertise-6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

.expertise-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(252, 186, 3, 0.3);
  border-radius: 26px;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
}

.expertise-glass-card.featured-gold-card {
  background: radial-gradient(circle at 100% 0%, rgba(252, 186, 3, 0.22) 0%, transparent 70%),
              rgba(255, 255, 255, 0.07);
  border-color: rgba(252, 186, 3, 0.6);
}

.expertise-glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(252, 186, 3, 0.85);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(252, 186, 3, 0.28);
}

.expertise-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.expertise-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(252, 186, 3, 0.22) 0%, rgba(252, 186, 3, 0.06) 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(252, 186, 3, 0.22);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-glass-card:hover .expertise-card-icon {
  background: linear-gradient(135deg, #fcba03 0%, #ffe066 100%);
  border-color: #ffffff;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 0 30px rgba(252, 186, 3, 0.7);
}

.expertise-glass-card:hover .expertise-card-icon svg {
  stroke: #12032e;
  fill: #12032e;
}

.expertise-card-pill {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: rgba(252, 186, 3, 0.12);
  border: 1px solid rgba(252, 186, 3, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

.expertise-card-title {
  font-family: var(--font-heading) !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.35 !important;
  margin: 0 0 1rem 0 !important;
  position: relative;
  z-index: 2;
}

.expertise-card-desc {
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  color: #d1caee !important;
  line-height: 1.7 !important;
  margin-bottom: 1.75rem !important;
  position: relative;
  z-index: 2;
}

.expertise-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.expertise-mini-tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #f7d26d;
  background: rgba(252, 186, 3, 0.08);
  border: 1px solid rgba(252, 186, 3, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.expertise-glass-card:hover .expertise-mini-tag {
  background: rgba(252, 186, 3, 0.18);
  border-color: rgba(252, 186, 3, 0.5);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .expertise-6-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .expertise-6-grid {
    grid-template-columns: 1fr;
  }
  .expertise-luxury-container {
    padding: 3.5rem 1.75rem;
  }
}

/* ==========================================================================
   Ultra-Luxury Architectural Atelier Footer (Deep Midnight & Gold)
   ========================================================================== */
.site-footer {
  background: radial-gradient(circle at 10% 0%, rgba(252, 186, 3, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 100%, rgba(31, 0, 97, 0.25) 0%, transparent 50%),
              #050914;
  border-top: 1.5px solid rgba(252, 186, 3, 0.35);
  padding: 0;
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
}

/* ==========================================================================
   Architectural Trust & Standards Horizon Bar (Ultra Luxury Trio Boxes)
   ========================================================================== */
.architectural-horizon-trust-strip {
  scroll-margin-top: 86px;
  padding: 2rem 0 2.5rem;
  background: #f8fafc;
  position: relative;
  z-index: 10;
}

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

.horizon-trust-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 2rem 1.85rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.horizon-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 22px 50px -12px rgba(15, 23, 42, 0.12), 0 0 25px rgba(245, 158, 11, 0.1);
}

.trust-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.6) 0%, rgba(253, 230, 138, 0.3) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizon-trust-card:hover .trust-icon-box {
  background: linear-gradient(135deg, #b45309, #d97706, #f59e0b);
  border-color: #ffffff;
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.35);
}

.trust-meta-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f1f5f9;
  border: 1px solid rgba(203, 213, 225, 0.6);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.horizon-trust-card:hover .trust-meta-tag {
  color: #b45309;
  background: #fef3c7;
  border-color: rgba(245, 158, 11, 0.4);
}

.trust-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.trust-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  transition: color 0.3s ease;
}

.horizon-trust-card:hover .trust-card-title {
  color: #b45309 !important;
}

.trust-card-desc {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Subtle Bottom 24K Gold Line Accent */
.trust-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d97706, #f59e0b, #fbbf24);
  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizon-trust-card:hover .trust-card-accent {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .horizon-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Main 4-Column Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.6fr;
  gap: 3.5rem;
  padding: 4.5rem 0 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-branding {
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.footer-quote-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 186, 3, 0.3);
  border-left: 3.5px solid #fcba03;
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: serif;
  font-size: 2.8rem;
  color: #fcba03;
  opacity: 0.45;
  line-height: 1;
}

.quote-text {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 500;
  color: #f1f5f9;
  line-height: 1.6;
  margin: 0;
  padding-left: 0.6rem;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.6rem;
  letter-spacing: -0.015em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: linear-gradient(90deg, #fcba03, #d49b00);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a span {
  color: #fcba03;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

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

.footer-links a:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Minimalist & Ultra-Luxury Contact Card in Column 4 */
.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  transition: transform 0.25s ease;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(252, 186, 3, 0.08);
  border: 1px solid rgba(252, 186, 3, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcba03;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: #fcba03;
  color: #0f172a;
  border-color: #fcba03;
  box-shadow: 0 0 12px rgba(252, 186, 3, 0.35);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.04rem;
  line-height: 1.5;
}

.contact-info-text .contact-main {
  color: #e2e8f0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-text a.contact-main:hover {
  color: #fcba03;
}

.contact-info-text .contact-highlight {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.contact-info-text .contact-email {
  color: #ffd043;
  font-weight: 600;
  word-break: break-all;
}

.contact-info-text .contact-sub {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 2.25rem 0 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.12rem;
  color: #cbd5e1;
}

.footer-bottom-copy {
  font-size: 1.12rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.footer-bottom-copy strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.05rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #fcba03;
}

.footer-link-dot {
  color: #fcba03;
  opacity: 0.6;
  font-size: 1rem;
}

.footer-developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 0.35rem;
  vertical-align: middle;
}

.footer-developer-credit:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-developer-credit .dev-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #f97316 !important;
  display: inline-block;
  white-space: nowrap;
}

.footer-developer-credit .dev-logo-img {
  height: 34px;
  width: auto;
  max-height: 36px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.45));
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-headline { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .pillars-3-grid { grid-template-columns: 1fr; }
  .pillars-4-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  /* Header Container */
  .site-header .container.header-container,
  .header-container {
    height: 80px !important;
    padding: 0 1.25rem !important;
  }

  .site-header.is-scrolled .container.header-container,
  .site-header.is-scrolled .header-container {
    height: 70px !important;
  }

  .brand-logo-img {
    height: 60px !important;
    width: auto !important;
    max-height: 60px !important;
  }

  .site-header.is-scrolled .brand-logo-img {
    height: 48px !important;
    max-height: 48px !important;
  }

  .header-actions {
    gap: 0.65rem;
  }

  /* Compact button on tablets / mobile */
  .btn-luxury-quote {
    padding: 0.48rem 0.95rem !important;
    font-size: 0.82rem !important;
    border-radius: 50px !important;
  }
  
  .btn-luxury-arrow {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Hide Desktop Navigation on Mobile */
  .site-header .main-navigation {
    display: none !important;
  }

  .mobile-nav-backdrop {
    display: block !important;
  }

  /* Offcanvas Drawer Navigation Panel */
  .mobile-drawer-panel {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 295px !important;
    max-width: 78vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(180deg, rgba(16, 6, 43, 0.92) 0%, rgba(8, 2, 22, 0.96) 100%) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-left: 1px solid rgba(252, 186, 3, 0.4) !important;
    border-bottom: none !important;
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.75), inset 1px 0 0 rgba(255, 255, 255, 0.1) !important;
    z-index: 10001 !important;
    transform: translateX(105%) !important;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .mobile-drawer-panel.is-active {
    transform: translateX(0) !important;
  }

  /* Drawer Header */
  .mobile-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid rgba(252, 186, 3, 0.25);
    background: rgba(8, 2, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
  }

  .mobile-drawer-close {
    background: rgba(252, 186, 3, 0.14);
    border: 1.5px solid rgba(252, 186, 3, 0.45);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd043;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }

  .mobile-drawer-close:hover {
    background: #fcba03;
    color: #060214;
    transform: rotate(90deg) scale(1.06);
    box-shadow: 0 0 18px rgba(252, 186, 3, 0.6);
  }

  /* Drawer Body */
  .mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem 1.15rem;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-drawer-panel ul#mobile-primary-menu,
  .mobile-drawer-panel ul.nav-menu,
  .mobile-drawer-body ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.55rem !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .mobile-drawer-panel ul#mobile-primary-menu > li,
  .mobile-drawer-panel ul.nav-menu > li,
  .mobile-drawer-body ul > li {
    width: 100% !important;
    list-style: none !important;
  }

  .mobile-drawer-panel ul#mobile-primary-menu > li > a,
  .mobile-drawer-panel ul.nav-menu > li > a,
  .mobile-drawer-body ul > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.85rem 1.15rem !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(252, 186, 3, 0.16) !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.015em !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
  }

  .mobile-drawer-panel ul#mobile-primary-menu > li > a:hover,
  .mobile-drawer-panel ul#mobile-primary-menu > li > a:active,
  .mobile-drawer-panel ul#mobile-primary-menu > li.current-menu-item > a,
  .mobile-drawer-panel ul#mobile-primary-menu > li.active > a,
  .mobile-drawer-panel ul.nav-menu > li.current-menu-item > a,
  .mobile-drawer-body ul > li.current-menu-item > a {
    background: linear-gradient(135deg, rgba(252, 186, 3, 0.22) 0%, rgba(212, 163, 89, 0.08) 100%) !important;
    border-color: rgba(252, 186, 3, 0.55) !important;
    color: #ffd043 !important;
    box-shadow: 0 4px 18px rgba(252, 186, 3, 0.15) !important;
  }

  .mobile-drawer-panel .nav-crest-divider {
    display: none !important;
  }

  /* CTA Button inside Drawer Body (Placed below "İletişim") */
  .mobile-drawer-cta-wrap {
    margin-top: 0.95rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(252, 186, 3, 0.2);
    width: 100%;
  }

  .mobile-drawer-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #fcba03 50%, #d48b00 100%);
    color: #0d0426 !important;
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(252, 186, 3, 0.38);
    transition: all 0.25s ease;
  }

  .mobile-drawer-cta:hover,
  .mobile-drawer-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252, 186, 3, 0.5);
  }

  .hero-headline { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .pillars-4-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 520px) {
  /* On compact phones keep header minimal and clean */
  .header-actions .btn-luxury-quote {
    display: none !important;
  }
  
  .site-header:not(.is-scrolled) .brand-logo-img {
    height: 56px !important;
    max-height: 56px !important;
  }

  .site-header.is-scrolled .brand-logo-img {
    height: 48px !important;
    max-height: 48px !important;
  }
}

/* ==========================================================================
   TANRIVERDİLER YAPI VE TADİLAT - SUBPAGE HERO & BREADCRUMB COMPONENT
   ========================================================================== */

.page-title-hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  background-color: #120038;
  color: #ffffff;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  font-family: var(--font-sans);
}

.page-title-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: brightness(1.05);
}

.page-title-gradient-r {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(18, 0, 56, 0.9), rgba(31, 0, 97, 0.65), transparent);
}

.page-title-gradient-b {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(18, 0, 56, 0.5), transparent, rgba(18, 0, 56, 0.85));
}

.page-title-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title-heading {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-primary);
  filter: drop-shadow(0 0 25px rgba(252, 186, 3, 0.45));
  margin-bottom: 0.5rem;
}

.page-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 440px;
  margin: 1rem auto 1.5rem auto;
}

.page-title-line {
  height: 2.5px;
  flex: 1;
  background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 100%);
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(252, 186, 3, 0.6);
  position: relative;
  overflow: hidden;
}

.page-title-line.reverse {
  background: linear-gradient(270deg, transparent 0%, var(--gold-primary) 100%);
}

.page-title-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  animation: shimmer-slide 6.5s ease-in-out infinite;
}

@keyframes shimmer-slide {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.page-title-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(252, 186, 3, 0.95);
  flex-shrink: 0;
}

.page-title-diamond-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.page-title-diamond-outer {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: var(--gold-primary);
  border: 2px solid #ffffff;
  box-shadow: 0 0 20px rgba(252, 186, 3, 1), 0 0 35px rgba(252, 186, 3, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title-diamond-inner {
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border: 1px solid var(--gold-primary);
  border-radius: 1px;
}

.page-title-desc {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

.page-breadcrumb-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1800px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 0 1.5rem;
  text-align: left;
}

.page-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  background: rgba(18, 0, 56, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 186, 3, 0.5);
  box-shadow: 0 0 20px rgba(252, 186, 3, 0.15);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.page-breadcrumb-pill:hover {
  background: rgba(18, 0, 56, 0.95);
  border-color: var(--gold-primary);
}

.page-breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  transition: var(--transition);
}

.page-breadcrumb-home:hover {
  color: #fff0a8;
}

.page-breadcrumb-active {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .page-title-hero { 
    padding-top: 6.5rem; 
    padding-bottom: 3.5rem; 
  }
  .page-title-heading { font-size: 2.2rem; }
  .page-breadcrumb-wrapper { 
    padding-top: 2rem; 
    text-align: center; 
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .page-breadcrumb-pill {
    padding: 0.45rem 1.05rem !important;
    gap: 0.45rem !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.04em !important;
    max-width: calc(100vw - 2rem) !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    border-radius: 50px !important;
  }
  .page-breadcrumb-pill::-webkit-scrollbar {
    display: none !important;
  }
  .page-breadcrumb-home {
    gap: 0.35rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  .page-breadcrumb-home span {
    white-space: nowrap !important;
  }
  .page-breadcrumb-home svg {
    width: 13px !important;
    height: 13px !important;
  }
  .page-breadcrumb-active {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 220px !important;
    flex-shrink: 1 !important;
  }
  .page-breadcrumb-pill svg.lucide-chevron-right {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-breadcrumb-pill {
    font-size: 0.70rem !important;
    padding: 0.4rem 0.85rem !important;
    gap: 0.35rem !important;
  }
  .page-breadcrumb-active {
    max-width: 180px !important;
  }
}

/* ==========================================================================
   FLOATING PHONE & WHATSAPP ACTION BUTTONS - HIGHLY PROMINENT
   ========================================================================== */

.floating-action-btn {
  position: fixed;
  bottom: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.floating-action-btn.left-btn {
  left: 28px;
}

.floating-action-btn.right-btn {
  right: 28px;
  flex-direction: row-reverse;
}

.floating-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  transition: var(--transition);
}

.floating-action-btn.left-btn .floating-icon-circle {
  background: linear-gradient(135deg, var(--gold-primary), #d49b00);
  color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(252, 186, 3, 0.65), 0 0 0 4px rgba(252, 186, 3, 0.2);
}

.floating-action-btn.right-btn .floating-icon-circle {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65), 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.floating-action-btn.left-btn .floating-icon-circle::before,
.floating-action-btn.left-btn .floating-icon-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.floating-action-btn.right-btn .floating-icon-circle::before,
.floating-action-btn.right-btn .floating-icon-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.floating-action-btn.left-btn .floating-icon-circle::after,
.floating-action-btn.right-btn .floating-icon-circle::after {
  animation-delay: 1s;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.85; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.floating-action-btn:hover {
  transform: translateY(-4px);
}

.floating-action-btn:hover .floating-icon-circle {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .floating-action-btn.left-btn { left: 16px; bottom: 22px; }
  .floating-action-btn.right-btn { right: 16px; bottom: 22px; }
  .floating-icon-circle { width: 62px !important; height: 62px !important; }
  .floating-action-btn.left-btn .floating-icon-circle svg { width: 28px !important; height: 28px !important; }
  .floating-action-btn.right-btn .floating-icon-circle svg { width: 33px !important; height: 33px !important; }
}

/* CTA Bottom Section - Atmospheric Ultra Luxury Architectural Pavilion */
.cta-banner-section {
  padding: 7.5rem 0 8.5rem 0;
  background: var(--bg-dark);
}

.cta-luxury-pavilion {
  position: relative;
  background: linear-gradient(135deg, #0d0221 0%, #1a0050 50%, #0d0221 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 5rem 4rem;
  box-shadow: 0 35px 90px -20px rgba(0, 0, 0, 0.7), 0 0 60px rgba(252, 186, 3, 0.2);
  overflow: hidden;
}

.cta-luxury-pavilion::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 65%;
  height: 180%;
  background: radial-gradient(circle, rgba(252, 186, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-right-column {
  position: relative;
}

.cta-action-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(252, 186, 3, 0.4);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(252, 186, 3, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-action-glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(252, 186, 3, 0.25);
}

@media (max-width: 992px) {
  .cta-pavilion-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-luxury-pavilion { padding: 3rem 2rem; }
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 3.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #ffd043 50%, #d49b00 100%);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(252, 186, 3, 0.5), 0 0 0 4px rgba(252, 186, 3, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

/* Mailto Links & Email Buttons Always Lowercase */
a[href^="mailto:"],
a[href^="mailto:"] span {
  text-transform: lowercase !important;
}

.btn-primary-lg:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #ffd043 0%, var(--gold-primary) 50%, #ffd043 100%);
  color: var(--color-secondary);
  box-shadow: 0 18px 45px rgba(252, 186, 3, 0.65), 0 0 0 6px rgba(252, 186, 3, 0.3);
}

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

/* Lovable Badge Component - Refined Amber Gold Luxury Pill */
.lovable-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  background: rgba(252, 186, 3, 0.12) !important;
  border: 1px solid rgba(212, 155, 0, 0.45) !important;
  color: #946400 !important;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content !important;
  max-width: max-content !important;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(252, 186, 3, 0.15) !important;
}

.lovable-badge span:not(.badge-dot) {
  color: #946400 !important;
  font-weight: 800 !important;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse-dot 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* Quote Gold Gradient Accent - High Contrast Warm Bronze-Gold */
.quote-gold-gradient {
  background: linear-gradient(135deg, #c68a00 0%, #d49b00 50%, #996515 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800;
  display: inline-block;
}

/* Contact Page - Ultra-Luxury High-Contrast Floating Cards */
.contact-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-top-card {
  background: linear-gradient(145deg, #190246 0%, #0c0029 50%, #170048 100%) !important;
  border: 1.5px solid rgba(252, 186, 3, 0.45) !important;
  border-radius: 28px;
  padding: 3.25rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 45px rgba(252, 186, 3, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-top-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), #ffffff, var(--gold-primary));
}

.contact-top-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.8), 0 0 55px rgba(252, 186, 3, 0.35) !important;
}

.contact-card-icon-capsule {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), #ffd043) !important;
  border: 1.5px solid rgba(252, 186, 3, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem auto;
  color: #120038 !important;
  box-shadow: 0 0 25px rgba(252, 186, 3, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-icon-capsule svg {
  stroke: #120038 !important;
}

.contact-top-card:hover .contact-card-icon-capsule {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 0 35px rgba(252, 186, 3, 0.8);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.contact-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-phone-primary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1rem;
  background: rgba(252, 186, 3, 0.12) !important;
  border: 1.5px solid rgba(252, 186, 3, 0.45) !important;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-phone-primary-box:hover {
  border-color: var(--gold-primary) !important;
  background: rgba(252, 186, 3, 0.2) !important;
  transform: scale(1.02);
}

.phone-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary) !important;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.phone-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(252, 186, 3, 0.3);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.info-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.5rem 0.2rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.info-list-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #c4bde6 !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.info-val {
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.info-val:hover {
  color: var(--gold-primary) !important;
}

.contact-address-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-map-link-sleek {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-primary), #ffd043) !important;
  color: #120038 !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(252, 186, 3, 0.5);
  transition: all 0.3s ease;
}

.contact-map-link-sleek:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 35px rgba(252, 186, 3, 0.7);
  color: #120038 !important;
}

/* Middle Google Maps Pavilion */
.map-luxury-pavilion {
  position: relative;
  background: linear-gradient(135deg, #0e0426 0%, #170044 50%, #0c021e 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 50px rgba(252, 186, 3, 0.18);
  overflow: hidden;
}

.map-luxury-pavilion .story-hero-title,
.form-luxury-pavilion .story-hero-title {
  color: #ffffff !important;
}

.map-luxury-pavilion p,
.form-luxury-pavilion p {
  color: #dcd6f0 !important;
}

.google-map-luxury-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 2.5px solid rgba(252, 186, 3, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(252, 186, 3, 0.2);
  line-height: 0;
  font-size: 0;
  display: block;
}

.google-map-luxury-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

/* Bottom Ultra Luxury Contact Form Pavilion */
.form-luxury-pavilion {
  position: relative;
  background: linear-gradient(135deg, #0d0221 0%, #1a0050 50%, #0d0221 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 5rem 4rem;
  box-shadow: 0 35px 90px -20px rgba(0, 0, 0, 0.7), 0 0 60px rgba(252, 186, 3, 0.2);
  overflow: hidden;
}

.lovable-form-luxury {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.form-luxury-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-luxury-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-luxury-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.form-luxury-input,
.form-luxury-select,
.form-luxury-textarea {
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(252, 186, 3, 0.3);
  border-radius: 16px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-luxury-select option {
  background: #120038;
  color: #ffffff;
}

.form-luxury-input:focus,
.form-luxury-select:focus,
.form-luxury-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(252, 186, 3, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .contact-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-luxury-row-2 { grid-template-columns: 1fr; }
  .map-luxury-pavilion { padding: 3rem 1.75rem; }
  .form-luxury-pavilion { padding: 3rem 1.75rem; }
}

/* KVKK Page - Lovable Ultra Luxury Glassmorphic Legal Pavilion */
.kvkk-main-container {
  background: linear-gradient(135deg, #0e0426 0%, #170044 50%, #0c021e 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.45);
  border-radius: 36px;
  padding: 5rem 4rem;
  box-shadow: 0 35px 90px -20px rgba(0, 0, 0, 0.7), 0 0 60px rgba(252, 186, 3, 0.2);
  position: relative;
  overflow: hidden;
}

.kvkk-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 186, 3, 0.25);
  border-left: 4px solid var(--gold-primary);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  backdrop-filter: blur(16px);
  margin-bottom: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kvkk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 186, 3, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(252, 186, 3, 0.2);
}

.kvkk-article-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  background: rgba(252, 186, 3, 0.15);
  border: 1px solid rgba(252, 186, 3, 0.4);
  color: #fcba03;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.15rem;
}

.kvkk-contact-box {
  background: linear-gradient(135deg, #160242 0%, #0c0029 100%);
  border: 1.5px solid rgba(252, 186, 3, 0.5);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(252, 186, 3, 0.2);
}

.kvkk-mail-btn {
  font-size: 0.95rem;
  padding: 0.95rem 2.2rem;
  max-width: 380px;
  width: auto;
  margin: 0 auto;
  justify-content: center;
  text-transform: lowercase !important;
  letter-spacing: normal !important;
  box-sizing: border-box;
}

.kvkk-mail-btn span {
  letter-spacing: normal !important;
  text-transform: lowercase !important;
}

@media (max-width: 768px) {
  .kvkk-main-container { padding: 2.5rem 1.5rem; }
  .kvkk-card { padding: 2rem 1.35rem; }
  .kvkk-contact-box { 
    padding: 2.25rem 1.2rem; 
    overflow: hidden;
    box-sizing: border-box;
  }
  .kvkk-mail-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.88rem 1rem !important;
    font-size: 0.85rem !important;
    gap: 0.5rem !important;
    box-sizing: border-box !important;
  }
  .kvkk-mail-btn span {
    font-size: 0.84rem !important;
    word-break: break-all !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 400px) {
  .kvkk-mail-btn {
    font-size: 0.78rem !important;
    padding: 0.82rem 0.65rem !important;
  }
  .kvkk-mail-btn span {
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   GLOBAL ULTRA-LUXURY SCROLL ENTRANCE ANIMATION SYSTEM (Awwwards / Apple Style)
   ========================================================================== */

/* Base initial states for elements waiting to be revealed on scroll */
.reveal-on-scroll,
.reveal-fade-up,
.reveal-stagger-item,
.reveal-item,
.reveal-desc {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Specific Typographic Headings - Slow, Majestic Elevation */
.reveal-heading {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(6px);
  transition: opacity 1.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.45s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Eyebrow Badges & Pills - Subtle Floating Rise */
.reveal-badge {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.93);
  filter: blur(4px);
  transition: opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Gold Crest Dividers - Center-Outward Expansion */
.reveal-crest-line {
  opacity: 0;
  transform: scaleX(0.5);
  filter: blur(4px);
  transform-origin: center center;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Variation: Reveal from left */
.reveal-from-left {
  opacity: 0;
  transform: translate3d(-46px, 0, 0) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Variation: Reveal from right */
.reveal-from-right {
  opacity: 0;
  transform: translate3d(46px, 0, 0) scale(0.98);
  filter: blur(8px);
  transition: opacity 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Variation: Zoom / Scale in (for showcase frames, media boxes, badges) */
.reveal-zoom-in {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.93);
  filter: blur(10px);
  transition: opacity 1.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.65s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

/* Revealed active state */
.reveal-on-scroll.is-revealed,
.reveal-fade-up.is-revealed,
.reveal-stagger-item.is-revealed,
.reveal-item.is-revealed,
.reveal-desc.is-revealed,
.reveal-heading.is-revealed,
.reveal-badge.is-revealed,
.reveal-from-left.is-revealed,
.reveal-from-right.is-revealed,
.reveal-zoom-in.is-revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: blur(0px) !important;
}

.reveal-crest-line.is-revealed {
  opacity: 1 !important;
  transform: scaleX(1) !important;
  filter: blur(0px) !important;
}

/* Slow, majestic sequential cascade stagger delays for child elements */
.reveal-stagger-parent.is-revealed > *:nth-child(1),
.reveal-stagger-item:nth-child(1) { transition-delay: 0.08s; }

.reveal-stagger-parent.is-revealed > *:nth-child(2),
.reveal-stagger-item:nth-child(2) { transition-delay: 0.18s; }

.reveal-stagger-parent.is-revealed > *:nth-child(3),
.reveal-stagger-item:nth-child(3) { transition-delay: 0.28s; }

.reveal-stagger-parent.is-revealed > *:nth-child(4),
.reveal-stagger-item:nth-child(4) { transition-delay: 0.38s; }

.reveal-stagger-parent.is-revealed > *:nth-child(5),
.reveal-stagger-item:nth-child(5) { transition-delay: 0.48s; }

.reveal-stagger-parent.is-revealed > *:nth-child(6),
.reveal-stagger-item:nth-child(6) { transition-delay: 0.58s; }

.reveal-stagger-parent.is-revealed > *:nth-child(7),
.reveal-stagger-item:nth-child(7) { transition-delay: 0.68s; }

.reveal-stagger-parent.is-revealed > *:nth-child(8),
.reveal-stagger-item:nth-child(8) { transition-delay: 0.78s; }

.reveal-stagger-parent.is-revealed > *:nth-child(9),
.reveal-stagger-item:nth-child(9) { transition-delay: 0.88s; }

.reveal-stagger-parent.is-revealed > *:nth-child(10),
.reveal-stagger-item:nth-child(10) { transition-delay: 0.98s; }

.reveal-stagger-parent.is-revealed > *:nth-child(11),
.reveal-stagger-item:nth-child(11) { transition-delay: 1.08s; }

.reveal-stagger-parent.is-revealed > *:nth-child(12),
.reveal-stagger-item:nth-child(12) { transition-delay: 1.18s; }

.reveal-stagger-parent.is-revealed > *:nth-child(13),
.reveal-stagger-item:nth-child(13) { transition-delay: 1.28s; }

.reveal-stagger-parent.is-revealed > *:nth-child(14),
.reveal-stagger-item:nth-child(14) { transition-delay: 1.38s; }

.reveal-stagger-parent.is-revealed > *:nth-child(15),
.reveal-stagger-item:nth-child(15) { transition-delay: 1.48s; }

.reveal-stagger-parent.is-revealed > *:nth-child(16),
.reveal-stagger-item:nth-child(16) { transition-delay: 1.58s; }

/* Immediate safety fallback if JS is disabled or not yet initialized */
html:not(.js-reveal-active) .reveal-on-scroll,
html:not(.js-reveal-active) .reveal-fade-up,
html:not(.js-reveal-active) .reveal-stagger-item,
html:not(.js-reveal-active) .reveal-item,
html:not(.js-reveal-active) .reveal-heading,
html:not(.js-reveal-active) .reveal-badge,
html:not(.js-reveal-active) .reveal-crest-line,
html:not(.js-reveal-active) .reveal-from-left,
html:not(.js-reveal-active) .reveal-from-right,
html:not(.js-reveal-active) .reveal-zoom-in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-fade-up,
  .reveal-stagger-item,
  .reveal-item,
  .reveal-heading,
  .reveal-badge,
  .reveal-crest-line,
  .reveal-from-left,
  .reveal-from-right,
  .reveal-zoom-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   CLEAN & PROGRESSIVE 4-STEP QUOTE CALCULATOR (MDH Style)
   ========================================================================== */
/* ==========================================================================
   PROGRESSIVE 7-STEP ARCHITECTURAL QUOTE CALCULATOR (Royal Secondary Navy)
   ========================================================================== */
.quote-calculator-page-main {
  background: var(--bg-dark);
  min-height: 85vh;
}

.hesap-bolum-alt {
  padding: 4rem 0 13rem;
}

.hesaplama-kutu {
  background: var(--color-secondary);
  background: linear-gradient(145deg, #1f0061 0%, #13003e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3.75rem 4rem 4.25rem;
  box-shadow: 0 25px 70px rgba(31, 0, 97, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

/* Top Progress Track with Connecting Center Line */
.hesap-adimlar-wrapper {
  position: relative;
  margin-bottom: 3.5rem;
  padding-top: 0.5rem;
}

.hesap-adim-cizgi {
  position: absolute;
  top: 26px;
  left: 45px;
  right: 45px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.hesap-adimlar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 0.5rem;
}

.hesap-adim-gosterge {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  transition: all 0.25s ease;
  flex: 1;
}

.adim-sayi {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a004e;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px #1a004e;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.adim-etiket {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.hesap-adim-gosterge:hover .adim-sayi {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.hesap-adim-gosterge:hover .adim-etiket {
  color: #ffffff;
}

.hesap-adim-gosterge.aktif .adim-sayi {
  background: #fcba03;
  border-color: #fcba03;
  color: #140933;
  box-shadow: 0 0 0 6px #1a004e, 0 0 20px rgba(252, 186, 3, 0.5);
  transform: scale(1.1);
}

.hesap-adim-gosterge.tamamlandi .adim-sayi {
  background: #fcba03;
  border-color: #fcba03;
  color: #140933;
  box-shadow: 0 0 0 6px #1a004e;
}

/* Single-Column Clean Layout */
.hesaplama-grid {
  display: block;
  width: 100%;
}

/* Left Column Form Groups */
.hesap-sol-kolon {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-grup {
  margin-bottom: 2.75rem;
}

.form-grup-baslik {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.form-grup-not {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* Mekân Türü Grid - 2 Cards (Ev vs. Ofis) */
.mekan-turu-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.mekan-karti-buyuk {
  display: block;
  cursor: pointer;
  position: relative;
}

.mekan-karti-buyuk input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mekan-karti-govde {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem 1.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  position: relative;
}

.mekan-buyuk-ikon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fcba03;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mekan-buyuk-ikon svg {
  width: 28px;
  height: 28px;
}

.mekan-buyuk-yazi {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mekan-buyuk-yazi .mekan-baslik {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: #ffffff;
}

.mekan-buyuk-yazi .mekan-alt {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.mekan-secim-isaret {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mekan-karti-buyuk:hover .mekan-karti-govde {
  border-color: rgba(255, 255, 255, 0.35);
}

.mekan-karti-buyuk.aktif .mekan-karti-govde,
.mekan-karti-buyuk input:checked ~ .mekan-karti-govde,
.mekan-karti-buyuk:has(input:checked) .mekan-karti-govde {
  border-color: #fcba03;
  background: rgba(252, 186, 3, 0.1);
  box-shadow: 0 4px 20px rgba(252, 186, 3, 0.18);
}

.mekan-karti-buyuk:has(input:checked) .mekan-buyuk-ikon {
  background: #fcba03;
  color: #140933;
}

.mekan-karti-buyuk:has(input:checked) .mekan-secim-isaret {
  border-color: #fcba03;
  background: #fcba03;
  color: #140933;
}

/* Ofis Özel Danışmanlık Kartı */
.ofis-danismanlik-kart {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 2.25rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.ofis-ikon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(252, 186, 3, 0.15);
  color: #fcba03;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ofis-ikon-wrap svg {
  width: 32px;
  height: 32px;
}

.ofis-danismanlik-baslik {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.ofis-danismanlik-aciklama {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.ofis-ozellikler-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2.25rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  text-align: left;
}

.ofis-ozellik-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #ffffff;
}

.ofis-ozellik-tik {
  color: #22c55e;
  font-weight: 800;
  font-size: 1.15rem;
}

.ofis-butonlar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  padding: 1.15rem 2.4rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae870 0%, #16a085 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.ofis-geri-don-link {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ofis-geri-don-link:hover {
  color: #fcba03;
  text-decoration: underline;
}

/* 4-Item Structure Cards (Daire, Müstakil, Villa, Rezidans) */
.mekan-turu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.mekan-secim-karti {
  position: relative;
  cursor: pointer;
  display: block;
}

.mekan-secim-karti input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mekan-karti-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.15rem;
  min-height: 110px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.mekan-baslik {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.mekan-alt {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.mekan-secim-karti:hover .mekan-karti-inner {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.mekan-secim-karti.aktif .mekan-karti-inner,
.mekan-secim-karti input:checked ~ .mekan-karti-inner,
.mekan-secim-karti:has(input:checked) .mekan-karti-inner {
  border-color: #fcba03;
  background: rgba(252, 186, 3, 0.1);
  box-shadow: 0 4px 20px rgba(252, 186, 3, 0.18);
}

.mekan-secim-karti:has(input:checked) .mekan-baslik {
  color: #fcba03;
}

/* Dinamik Alt Panel Container */
.dinamik-alt-panel {
  background: rgba(0, 0, 0, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2rem 1.85rem 1rem;
  margin-top: 1.75rem;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Segmented Buttons */
.daire-secim {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.daire-secim.alan-secim {
  grid-template-columns: repeat(5, 1fr);
}

.daire-secim.oda-secim {
  grid-template-columns: repeat(6, 1fr);
}

.daire-secim.sehir-secim-grid {
  grid-template-columns: repeat(3, 1fr);
}

.daire-secim input[type="radio"] {
  display: none;
}

.daire-secim label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 0.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.25;
}

.daire-secim.alan-secim label {
  font-size: 1.05rem;
  padding: 1.1rem 0.4rem;
}

.daire-secim.oda-secim label {
  font-size: 1.05rem;
  padding: 1.1rem 0.4rem;
}

.daire-secim label:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.daire-secim input[type="radio"]:checked + label {
  border-color: #fcba03;
  background: rgba(252, 186, 3, 0.15);
  color: #fcba03;
  box-shadow: 0 0 0 1px #fcba03;
}

/* Ek Hizmet Sayaç Satırları (+ / -) */
.sayac-satir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sayac-satir:last-child {
  border-bottom: none;
}

.sayac-bilgi {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sayac-bilgi strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.sayac-bilgi span {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.7);
}

.sayac-kontrol {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.sayac-kontrol button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.sayac-kontrol button:hover {
  border-color: #fcba03;
  background: #fcba03;
  color: #140933;
  transform: scale(1.08);
}

.sayac-kontrol button:active {
  transform: scale(0.95);
}

.sayac-deger {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fcba03;
}

/* Durum Seçim Kartları (Daire & Duvar Durumu) */
.durum-secim {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.durum-secim input[type="radio"] {
  display: none;
}

.durum-karti {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem 1.85rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.25s ease;
}

.durum-karti:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.durum-baslik {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: #ffffff;
}

.durum-aciklama {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.durum-secim input[type="radio"]:checked + .durum-karti {
  border-color: #fcba03;
  background: rgba(252, 186, 3, 0.12);
  box-shadow: 0 0 0 1px #fcba03;
}

.durum-secim input[type="radio"]:checked + .durum-karti .durum-baslik {
  color: #fcba03;
}

/* Bilgi Kutusu */
.bilgi-kutusu {
  background: rgba(252, 186, 3, 0.1);
  border: 1px solid rgba(252, 186, 3, 0.3);
  border-left: 5px solid #fcba03;
  border-radius: 16px;
  padding: 1.4rem 1.65rem;
  margin-top: 1.75rem;
  font-size: 1.15rem;
  color: #ffd043;
  line-height: 1.65;
}

/* İmalat Kalemleri Checkbox Grid */
.scope-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.scope-chip-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.45rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scope-chip-label input[type="checkbox"] {
  accent-color: #fcba03;
  width: 22px;
  height: 22px;
}

.scope-chip-label span {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
}

.scope-chip-label:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.scope-chip-label.active,
.scope-chip-label:has(input:checked) {
  border-color: #fcba03;
  background: rgba(252, 186, 3, 0.12);
}

.scope-chip-label:has(input:checked) span {
  color: #fcba03;
}

/* Final Özet Tablosu (Step 7 - Ultra Minimalist & Sade) */
.final-ozet-paneli {
  margin-bottom: 2rem;
}

.final-ozet-tablo {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem 1.85rem;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.final-ozet-satir {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  gap: 1.5rem;
}

.final-ozet-satir:first-child {
  padding-top: 0.25rem;
}

.final-ozet-satir:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.final-ozet-baslik {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.final-ozet-veri {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .final-ozet-satir {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .final-ozet-veri {
    text-align: left;
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   Custom Luxury Dropdown Component (Downward Opening, Click-Outside Close)
   ========================================================================== */
.custom-select-kapsayici {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-tetikleyici {
  width: 100%;
  padding: 1.25rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 1.18rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.custom-select-tetikleyici:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.custom-select-kapsayici.acik .custom-select-tetikleyici,
.custom-select-tetikleyici:focus {
  border-color: #fcba03;
  box-shadow: 0 0 0 4px rgba(252, 186, 3, 0.25);
  background: rgba(0, 0, 0, 0.45);
}

.secili-deger {
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-tetikleyici .ok-ikon {
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.custom-select-kapsayici.acik .custom-select-tetikleyici .ok-ikon {
  transform: rotate(180deg);
  color: #fcba03;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 310px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #160046;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(252, 186, 3, 0.15);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.6rem 0.4rem 0.6rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(252, 186, 3, 0.5) transparent;
}

.custom-select-kapsayici.acik .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Custom Slim Luxury Scrollbar - Confined strictly inside rounded corners */
.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 14px 0;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(252, 186, 3, 0.5);
  border-radius: 10px;
}

.custom-select-menu::-webkit-scrollbar-thumb:hover {
  background: #fcba03;
}

.menu-grup-baslik {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fcba03;
  padding: 0.75rem 1rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.3rem;
}

.menu-grup-baslik:not(:first-child) {
  margin-top: 0.65rem;
  padding-top: 0.85rem;
}

.menu-oge {
  padding: 0.85rem 1.15rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-oge:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fcba03;
  padding-left: 1.35rem;
}

.menu-oge.aktif {
  background: rgba(255, 255, 255, 0.07);
  color: #fcba03;
  font-weight: 700;
  border: 1px solid rgba(252, 186, 3, 0.45);
}

.menu-oge.aktif::after {
  content: '✓';
  font-weight: 800;
  color: #fcba03;
}

/* Inputs & Textareas */
.hesaplama-kutu .wizard-text-input,
.quote-calculator-page-main .wizard-text-input,
.wizard-text-input {
  width: 100%;
  padding: 1.25rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25) !important;
  outline: none;
  resize: vertical;
  transition: all 0.25s ease;
}

.hesaplama-kutu .wizard-text-input:focus,
.quote-calculator-page-main .wizard-text-input:focus,
.wizard-text-input:focus {
  background: rgba(0, 0, 0, 0.35) !important;
  color: #ffffff !important;
  border-color: #fcba03 !important;
  box-shadow: 0 0 0 3px rgba(252, 186, 3, 0.25) !important;
}

.hesaplama-kutu .wizard-text-input::placeholder,
.quote-calculator-page-main .wizard-text-input::placeholder,
.wizard-text-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.iletisim-satir-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Step Navigation Footer */
.hesap-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.hesap-nav .hesap-geri,
.hesap-nav .hesap-ileri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-gold {
  background: #fcba03;
  color: #140933;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.05rem 2.8rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(252, 186, 3, 0.35);
  white-space: nowrap;
}

.btn-gold:hover {
  background: #ffd043;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(252, 186, 3, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.05rem 2.2rem;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ==========================================================================
   RIGHT COLUMN: Ultra-Luxury Corporate Sticky Summary Receipt Card
   ========================================================================== */
.hesap-sag-kolon {
  position: sticky;
  top: 110px;
}

.hesap-sonuc-kart {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2.15rem 1.85rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sonuc-baslik-wrap {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sonuc-baslik {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.01em;
}

.sonuc-alt-bilgi {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  display: block;
}

.hesap-satirlar {
  display: flex;
  flex-direction: column;
}

.hesap-satir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.hesap-satir:last-child {
  border-bottom: none;
}

.satir-etiket {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.sonuc-deger {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

.hesap-satir.full-width {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  border-bottom: none;
}

.sonuc-imalat-tagler {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: 100%;
}

.sonuc-imalat-tagler .receipt-tag {
  background: rgba(252, 186, 3, 0.12);
  border: 1px solid rgba(252, 186, 3, 0.3);
  color: #ffd043;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

/* Minimalist Guarantees List */
.guvence-kutusu-sade {
  margin: 1.5rem 0 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.guvence-madde-sade {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.guvence-tik-sade {
  color: #fcba03;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

/* Ultra-Luxury Corporate WhatsApp CTA Button */
.btn-teklif-kurumsal {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  padding: 1.05rem 1.35rem;
  background: linear-gradient(135deg, #fcba03 0%, #e58a1f 100%);
  color: #140933;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(252, 186, 3, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.btn-teklif-kurumsal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-teklif-kurumsal:hover::before {
  left: 100%;
}

.btn-teklif-kurumsal:hover {
  background: linear-gradient(135deg, #ffd043 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(252, 186, 3, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #0f002e;
}

.btn-teklif-kurumsal:active {
  transform: translateY(0);
}

.btn-ikon-chip {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(20, 9, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #140933;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-teklif-kurumsal:hover .btn-ikon-chip {
  transform: scale(1.08);
}

.btn-yazi {
  flex: 1;
  text-align: center;
  padding: 0 0.4rem;
  white-space: nowrap;
}

.btn-ok-ikon {
  color: #140933;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-teklif-kurumsal:hover .btn-ok-ikon {
  transform: translateX(4px);
}

/* Telephone Link */
.hesap-alt-iletisim {
  text-align: center;
  margin-top: 1.15rem;
}

.hesap-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hesap-tel-link:hover {
  color: #fcba03;
}

/* Responsive */
@media (max-width: 992px) {
  .hesap-adim-cizgi {
    left: 20px;
    right: 20px;
  }
  .hesaplama-kutu {
    padding: 2.25rem 1.5rem;
  }
  .hesap-adimlar {
    overflow-x: auto;
    padding-bottom: 0.85rem;
  }
  .daire-secim.oda-secim {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hesap-nav {
    display: flex !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
    padding-top: 1.25rem !important;
    width: 100% !important;
  }

  .hesap-nav .hesap-geri,
  .hesap-nav .hesap-ileri {
    flex: 1 !important;
    padding: 0.95rem 1rem !important;
    font-size: 1.02rem !important;
    min-width: 0 !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .daire-secim label {
    font-size: 0.96rem !important;
    padding: 0.95rem 0.5rem !important;
    line-height: 1.25 !important;
    border-radius: 13px !important;
  }

  .daire-secim.alan-secim label,
  .daire-secim.oda-secim label {
    font-size: 0.92rem !important;
    padding: 0.85rem 0.35rem !important;
  }

  .dinamik-alt-panel {
    padding: 1.35rem 1rem 0.85rem !important;
    border-radius: 14px !important;
    margin-top: 1.25rem !important;
  }

  .btn-teklif-kurumsal {
    padding: 0.95rem 0.85rem !important;
    gap: 0.4rem !important;
  }

  .btn-teklif-kurumsal .btn-yazi {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
    padding: 0 0.2rem !important;
  }

  .btn-ikon-chip {
    width: 28px !important;
    height: 28px !important;
    border-radius: 7px !important;
  }

  .btn-ikon-chip svg {
    width: 16px !important;
    height: 16px !important;
  }

  .btn-ok-ikon {
    width: 15px !important;
    height: 15px !important;
  }
}

@media (max-width: 576px) {
  .mekan-turu-grid-2,
  .mekan-turu-grid,
  .final-ozet-paneli,
  .iletisim-satir-2 {
    grid-template-columns: 1fr;
  }
  .daire-secim {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .daire-secim.alan-secim {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .daire-secim.oda-secim {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .daire-secim.sehir-secim-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .hesap-adim-cizgi {
    display: none;
  }
  .hesap-adim-gosterge .adim-etiket {
    font-size: 0.92rem;
  }
  .adim-sayi {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
  .scope-checkboxes-grid {
    grid-template-columns: 1fr;
  }
  .hesaplama-kutu {
    padding: 1.6rem 1.15rem !important;
    border-radius: 16px !important;
  }
}

/* ==========================================================================
   GOOGLE & YANDEX REVIEWS CAROUSEL (Luxury Social Proof)
   ========================================================================== */
/* ==========================================================================
   Google & Yandex Reviews Carousel Section (Ultra Luxury Pure Light Edition)
   ========================================================================== */
.google-reviews-section {
  padding: 7.5rem 0 8.5rem;
  background-color: #fafaf9;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.reviews-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.reviews-ambient-glow.left {
  top: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
}
.reviews-ambient-glow.right {
  bottom: 10%;
  right: -150px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.16) 0%, transparent 70%);
}

.google-reviews-section .container {
  position: relative;
  z-index: 1;
}

/* Header Flex */
.reviews-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.reviews-header-text {
  max-width: 640px;
}

.reviews-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #b45309;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.eyebrow-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 0 10px #d97706;
  animation: badgeGlowPulse 2s infinite;
}

.reviews-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.reviews-main-title .title-light {
  color: #171717;
  display: block;
}
.reviews-main-title .title-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 60%, #171717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.reviews-header-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #525252;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

/* Platform Rating Cards (Google & Yandex) */
.reviews-platform-badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.platform-rating-card {
  display: block;
  background: #ffffff;
  border: 1.5px solid #e7e5e4;
  border-radius: 20px;
  padding: 1.25rem 1.65rem;
  min-width: 175px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
}
.platform-rating-card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.2);
}

.platform-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.platform-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #171717;
}

.platform-external-icon {
  color: #a3a3a3;
  transition: color 0.3s;
}
.platform-rating-card:hover .platform-external-icon {
  color: #b45309;
}

.platform-card-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.platform-score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #171717;
  line-height: 1;
}

.platform-count {
  font-size: 0.88rem;
  color: #737373;
  font-weight: 500;
}

/* Carousel Track & Viewport */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -0.5rem;
  padding: 1.25rem 0.5rem 2rem;
  cursor: grab;
}
.reviews-carousel-wrapper:active {
  cursor: grabbing;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  user-select: none;
}

/* Review Card - Always fully visible, no delayed entrance animation */
.review-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  max-width: calc((100% - 3.5rem) / 3);
  min-width: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  opacity: 1 !important;
  transform: none !important;
}

.review-card-inner {
  background: #ffffff;
  border: 1.5px solid #e7e5e4;
  border-radius: 24px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.review-card-inner:hover {
  border-color: #d4af37;
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -10px rgba(212, 175, 55, 0.18);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #ffd043;
  background: #0f172a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #171717;
  margin: 0 0 0.2rem 0;
}

.reviewer-project {
  font-size: 0.78rem;
  color: #b45309;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: #f5f5f4;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  font-size: 0.72rem;
  color: #525252;
  font-weight: 700;
  white-space: nowrap;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.review-stars .star {
  color: #eab308;
  font-size: 1.15rem;
}
.review-date {
  font-size: 0.8rem;
  color: #737373;
  margin-left: 0.5rem;
  font-weight: 500;
}

.review-text {
  color: #404040;
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 1.75rem 0;
  flex-grow: 1;
  font-weight: 400;
}

.review-verified-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: #15803d;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-top: 1rem;
  border-top: 1px dashed #e5e5e5;
}

/* Header Actions (Badges + Prominent Top Navigation Arrows) */
.reviews-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reviews-top-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d4af37;
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(212, 175, 55, 0.22), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.reviews-nav-btn svg {
  transition: transform 0.25s ease, stroke 0.25s ease;
  stroke: #171717;
}

.reviews-nav-btn.prev-btn:hover svg {
  transform: translateX(-3px);
  stroke: #ffd043;
}

.reviews-nav-btn.next-btn:hover svg {
  transform: translateX(3px);
  stroke: #ffd043;
}

.reviews-nav-btn:hover:not(:disabled) {
  background: #171717;
  border-color: #171717;
  color: #ffd043;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.4);
}

.reviews-nav-btn:hover:not(:disabled) svg {
  stroke: #ffd043;
}

.reviews-nav-btn:disabled {
  opacity: 0.3;
  border-color: #e5e5e5;
  color: #a3a3a3;
  cursor: not-allowed;
  box-shadow: none;
}
.reviews-nav-btn:disabled svg {
  stroke: #a3a3a3;
}

/* Controls Bar (Dots & Google Review CTA) */
.reviews-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.75rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 600px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.review-dot.active {
  width: 24px;
  border-radius: 6px;
  background: #d97706;
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
}

.btn-review-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  background: #171717;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-review-google-cta:hover {
  background: #262626;
  border-color: #ffd043;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reviews Carousel Responsiveness */
@media (max-width: 1100px) {
  .review-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
    max-width: calc((100% - 1.75rem) / 2);
    min-width: 0;
    flex-shrink: 0;
  }
  .reviews-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .google-reviews-section {
    padding: 5rem 0 6rem;
  }
  .reviews-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .reviews-header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .reviews-platform-badges {
    width: 100%;
    justify-content: space-between;
  }
  .platform-rating-card {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.15rem;
  }
  .reviews-top-nav-arrows {
    justify-content: center;
  }
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    flex-shrink: 0;
  }
  .reviews-controls-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .btn-review-google-cta {
    width: 100%;
    justify-content: center;
  }
}



