/* ==========================================================================
   SUNPROJE - Modern Ultra-Luxury Compact & Boxed Layout Design System
   ========================================================================== */

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

:root {
  /* Modern Luxury Color Palette - Midnight Onyx, Brushed Champagne & Liquid Platinum */
  --bg-page-outer: #040507;
  --bg-dark: #0A0C11;
  --bg-surface: #10131B;
  --bg-card: rgba(18, 22, 32, 0.78);
  --bg-card-hover: rgba(25, 30, 44, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.025);
  --bg-glass-border: rgba(229, 197, 131, 0.22);
  
  /* Modern Brushed Champagne Gold & Metallic Platinum */
  --gold-primary: #E5C583;
  --gold-light: #F8F0DE;
  --gold-dark: #B8964F;
  --platinum-glow: rgba(226, 232, 240, 0.15);
  
  --gold-gradient: linear-gradient(135deg, #FBF3DC 0%, #E5C583 45%, #C29F54 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(251, 243, 220, 0.12) 0%, rgba(229, 197, 131, 0.04) 100%);
  --platinum-gradient: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);

  /* Text colors */
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --accent-emerald: #10B981;
  
  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Spacing */
  --boxed-max-width: 1380px;
  --container-max: 1240px;
  --header-height: 85px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  
  /* Shadows & Effects */
  --shadow-boxed: 0 35px 100px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(229, 197, 131, 0.25);
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 0 1px var(--bg-glass-border);
  --shadow-gold: 0 12px 35px rgba(229, 197, 131, 0.28);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-page-outer);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 197, 131, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(226, 232, 240, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 1.25rem 0;
}

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

/* ==========================================
   BOXED LAYOUT CONTAINER
   ========================================== */
.page-boxed-wrapper {
  max-width: var(--boxed-max-width);
  margin: 0 auto;
  background-color: var(--bg-dark);
  border: 1px solid rgba(229, 197, 131, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-boxed);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1420px) {
  .page-boxed-wrapper {
    margin: 0 1rem;
  }
}

@media (max-width: 992px) {
  .page-boxed-wrapper {
    margin: 0;
    border-radius: 0;
    border: none;
  }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #FFFFFF;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

p {
  color: var(--text-muted);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1E2330;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Layout Utilities - Tight Compact Spacing */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 2.8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 2rem 0;
  }
}

/* Header & Nav */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(10, 12, 17, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.sticky-scrolled {
  position: fixed;
  max-width: var(--boxed-max-width);
  margin: 0 auto;
  left: 0;
  right: 0;
  background: rgba(10, 12, 17, 0.95);
  border-bottom-color: var(--bg-glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Modern Metallic Champagne Brand Logo with Metallic Shine Animation */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  position: relative;
}

.brand-logo span {
  background: linear-gradient(
    120deg,
    #FFFFFF 0%,
    #E5C583 22%,
    #FFFFFF 45%,
    #FBF3DC 55%,
    #E5C583 78%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShine 4.5s ease-in-out infinite;
  text-shadow: 0 2px 14px rgba(229, 197, 131, 0.25);
}

@keyframes logoShine {
  0% {
    background-position: -200% center;
  }
  50%, 100% {
    background-position: 200% center;
  }
}

.brand-emblem {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='50,5 90,27.5 90,72.5 50,95 10,72.5 10,27.5' fill='none' stroke='black' stroke-width='6'/%3E%3Ccircle cx='50' cy='50' r='20' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='50,5 90,27.5 90,72.5 50,95 10,72.5 10,27.5' fill='none' stroke='black' stroke-width='6'/%3E%3Ccircle cx='50' cy='50' r='20' fill='black'/%3E%3C/svg%3E") no-repeat center/contain;
  box-shadow: 0 0 14px rgba(229, 197, 131, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: emblemPulse 4.5s ease-in-out infinite;
}

@keyframes emblemPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(229, 197, 131, 0.35);
  }
  30% {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.8), 0 0 12px var(--gold-primary);
  }
}

.brand-logo:hover .brand-emblem {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 26px rgba(229, 197, 131, 0.8);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  background: var(--gold-gradient);
  color: #0A0C11;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(229, 197, 131, 0.45);
  filter: brightness(1.06);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  background: rgba(255, 255, 255, 0.025);
  color: #FFFFFF;
  border: 1px solid var(--bg-glass-border);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-outline:hover {
  background: rgba(229, 197, 131, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 48px;
  min-height: 48px;
}

/* ==========================================
   ULTRA-MODERN MOBILE HEADER STYLES
   ========================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }

  .navbar {
    height: var(--header-height);
    background: rgba(10, 12, 17, 0.85);
    border-bottom: 1px solid rgba(229, 197, 131, 0.18);
  }

  .nav-container {
    padding: 0 1.2rem;
  }

  .brand-logo {
    font-size: 1.25rem;
    gap: 0.55rem;
  }

  .brand-emblem {
    width: 28px;
    height: 28px;
  }

  /* Hide "Teklif Alın" button in header on mobile screens */
  .nav-container .btn-primary {
    display: none !important;
  }

  /* Ultra-Modern Frosted Glass Toggle Button */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(229, 197, 131, 0.08);
    border: 1px solid rgba(229, 197, 131, 0.25);
    color: var(--gold-light);
    font-size: 1.15rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .mobile-toggle:active {
    transform: scale(0.92);
    background: rgba(229, 197, 131, 0.18);
    border-color: var(--gold-primary);
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
  }

  .nav-menu {
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    padding: 2.5rem 1.8rem;
    background: rgba(10, 12, 17, 0.98);
    border-left: 1px solid var(--bg-glass-border);
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 0;
  }
}

/* Footer Badge Link Pills */
.footer-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  background: rgba(229, 197, 131, 0.06);
  border: 1px solid rgba(229, 197, 131, 0.22);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-badge-link:hover {
  background: var(--gold-gradient);
  color: #0A0C11;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 197, 131, 0.35);
}

/* Floating Quick Action Buttons (WhatsApp & Phone) - Desktop Only */
.floating-actions-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1950;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (max-width: 768px) {
  .floating-actions-wrapper {
    display: none !important;
  }
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.45rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.float-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.float-btn-phone {
  background: var(--gold-gradient);
  color: #0A0C11;
  box-shadow: 0 10px 25px rgba(229, 197, 131, 0.45);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.float-btn-wa:hover {
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.7);
}

.float-btn-phone:hover {
  box-shadow: 0 14px 35px rgba(229, 197, 131, 0.7);
}

/* Hero Section - Refined Ultra Modern Visual Backdrop */
.hero {
  position: relative;
  min-height: auto;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 18%, rgba(229, 197, 131, 0.15) 0%, rgba(10, 12, 17, 1) 75%);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.45;
  object-fit: cover;
  filter: contrast(108%) brightness(92%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at 50% 30%, rgba(10, 12, 17, 0.35) 0%, rgba(10, 12, 17, 0.82) 65%, rgba(10, 12, 17, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(229, 197, 131, 0.09);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 197, 131, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(229, 197, 131, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 197, 131, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 2rem auto;
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

/* Section Header - Tight Margin */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 2.2rem auto;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

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

/* Services Grid (01 - 06) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--bg-glass-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(229, 197, 131, 0.22);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: var(--gold-primary);
}

.service-title {
  font-size: 1.28rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-features li i {
  color: var(--gold-primary);
  font-size: 0.78rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-top: auto;
  cursor: pointer;
  padding: 0.3rem 0;
}

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

.service-link:hover i {
  transform: translateX(5px);
}

/* Strategy Estimator / Calculator Module */
.calculator-box {
  background: linear-gradient(145deg, rgba(16, 19, 27, 0.92) 0%, rgba(22, 27, 39, 0.96) 100%);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.form-val-display {
  color: var(--gold-primary);
  font-weight: 700;
}

.form-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1C2230;
  outline: none;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(229, 197, 131, 0.7);
  transition: transform 0.2s ease;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
  min-height: 46px;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(229, 197, 131, 0.25);
}

.calc-results {
  background: rgba(10, 12, 17, 0.7);
  border: 1px solid rgba(229, 197, 131, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-res-header {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.calc-metric-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.calc-metric-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.calc-metric-lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Virtual Tour Showcase */
.virtual-tour-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-glass-border);
  box-shadow: var(--shadow-card);
  background: var(--bg-surface);
}

.tour-media-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
}

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

.tour-overlay-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: rgba(10, 12, 17, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  background: rgba(229, 197, 131, 0.88);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0C11;
  font-weight: bold;
  box-shadow: 0 0 18px var(--gold-primary);
  animation: pulseGlow 2.5s infinite;
  transition: transform 0.3s ease;
}

.tour-hotspot:hover {
  transform: scale(1.25);
}

/* About / Philosophy Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-glass-border);
}

.about-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contact Section */
.contact-card {
  background: linear-gradient(135deg, rgba(18, 22, 32, 0.92) 0%, rgba(10, 12, 17, 0.96) 100%);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-card);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  .contact-card {
    padding: 1.8rem 1.2rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--bg-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.contact-info-text a, .contact-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Footer */
.footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 1.5rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile Quick Action Bar */
.mobile-quick-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1900;
  background: rgba(10, 12, 17, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--bg-glass-border);
  padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
  .mobile-quick-action-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.mobile-quick-action-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
}

.btn-mobile-call {
  background: var(--gold-gradient);
  color: #0A0C11;
}

.btn-mobile-wa {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid #10B981;
  color: #10B981;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-card);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

/* Responsive Mobile Navigation Drawer */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background: rgba(16, 19, 27, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--bg-glass-border);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }
}
