:root {
  --black: #000000;
  --bg-alt: #060606;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.50);
  --text-dim: rgba(255, 255, 255, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  --accent-green: #4ade80;
  --whatsapp: #25D366;
  --radius: 20px;
  --radius-pill: 100px;
  --font-main: 'Manrope', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background-color: #f7f7f7;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a,
button,
input,
select,
textarea,
.transition-base {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Arystan SVG Logo Styles */
.arystan-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.arystan-logo:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.arystan-logo-img {
  display: block;
  object-fit: contain;
}

/* Header Logo */
.header-logo-link {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 90px;
  width: auto;
}

/* Preloader Logo */
.preloader .arystan-logo {
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 0;
  transform: translateY(-20px);
}

.preloader-logo-img {
  height: 120px;
  width: auto;
}



/* 
  Global rule: Content starts transparent, GSAP reveals it.
  NOTE: Do NOT use visibility:hidden here — it blocks search engine indexing.
  Googlebot needs to "see" the text even if it's visually transparent.
*/
.hidden-content {
  opacity: 0;
}

/* SEO: Ensure content is fully visible when JS is disabled (search bots, noscript) */
.no-js .hidden-content {
  opacity: 1 !important;
}

/* Main content sits ABOVE footer for reveal effect */
#main-content {
  position: relative;
  z-index: 2;
  background: var(--black);
}

/* GSAP Start States & Performance */
.reveal,
.reveal-stagger,
.cta-title,
.cta-btn,
.footer-headline,
.footer-info,
.footer-form-wrap,
.footer-copyright {
  opacity: 0;
  will-change: transform, opacity;
}

::selection {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* Section Gradients */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-alt) 100%);
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0) 0%, var(--black) 100%);
}

.process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-alt) 100%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0) 0%, var(--black) 100%);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  /* GSAP will reveal this */
  pointer-events: none;
  /* Disable until revealed */
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 32px 48px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 32px;
  border-radius: 100px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.nav-wrapper.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-logo {
  height: 120px;
  width: auto;
  display: block;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .logo:hover {
    opacity: 0.7;
  }
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-light);
  transition: width 0.3s ease;
}

@media (hover: hover) {
  .nav a:hover {
    color: var(--text-light);
  }

  .nav a:hover::after {
    width: 100%;
  }
}

.header-cta {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

@media (hover: hover) {
  .header-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
  position: relative;
  z-index: 1001;
  /* Above mobile menu */
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  position: absolute;
  left: 0;
  transform-origin: center;
}

.burger span:first-child {
  top: calc(50% - 3.5px);
}

.burger span:last-child {
  top: calc(50% + 3.5px);
}

.burger.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.burger.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 48px) 48px);
  /* Initial closed state */
  visibility: hidden;
  /* For GSAP */
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.mobile-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0;
  /* GSAP stagger start */
  transform: translateY(20px);
}

.mobile-cta {
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .nav-wrapper {
    display: none;
  }

  .burger {
    display: block;
    flex-shrink: 0;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

/* Overlays Layering */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.2) 30%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.95) 100%);
}

.hero-vignette {
  z-index: 3;
  background: radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-noise {
  z-index: 4;
  opacity: 0.05;
}

.hero-noise::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: noise 0.5s steps(3) infinite;
}

@keyframes noise {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -5%);
  }

  20% {
    transform: translate(-10%, 5%);
  }

  30% {
    transform: translate(5%, -10%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(15%, 0);
  }

  70% {
    transform: translate(0, 15%);
  }

  80% {
    transform: translate(3%, 35%);
  }

  90% {
    transform: translate(-10%, 10%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}

.hero-content.centered-aligned {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: -2vh;
}

/* Base style for GSAP initials */
.hero-reveal,
.hero-reveal-stagger {
  opacity: 0;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 195, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.1);
  color: #fff;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 195, 255, 1);
}

.badge-svg {
  animation: fly 3s ease-in-out infinite;
}

@keyframes fly {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Giant Typography */
.hero-main-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.title-line {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
}

.title-accent {
  background: linear-gradient(90deg, #ffffff, #aaaaaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subtitle */
.hero-subtitle {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #a0a0a0;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* CTA */
.hero-cta-wrapper {
  position: relative;
  z-index: 15;
}

.btn-glow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  border-radius: 100px;
  background: linear-gradient(135deg, #003366, #0088ff);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 195, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
  transition: all 0.4s ease;
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  border-radius: 100px;
  background: #ff0000;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.btn-primary-red:hover {
  background: #cc0000;
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (hover: hover) {
  .btn-glow:hover {
    box-shadow: 0 0 50px rgba(0, 195, 255, 0.6);
    transform: translateY(-2px);
  }

  .btn-glow:hover::before {
    opacity: 1;
  }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  z-index: 20;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-location {
  top: 25%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}

.card-condition {
  bottom: 25%;
  right: 8%;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {

  .card-location,
  .card-condition {
    display: none;
  }

  .hero-subtitle {
    max-width: 90%;
  }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* Start hidden natively, GSAP adds Y */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding-bottom: 20px;
}

.scroll-text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.scroll-glint {
  width: 100%;
  height: 10px;
  background: var(--white);
  position: absolute;
  top: -10px;
  left: 0;
  animation: glintDown 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes glintDown {
  0% {
    top: -10px;
    opacity: 1;
  }

  100% {
    top: 32px;
    opacity: 0;
  }
}

/* ==========================================================================
   Preloader (New Design)
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--black);
  display: flex;
  color: #f5f5f5;
  font-family: 'Manrope', sans-serif;
}

.preloader-logo-new {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 180px;
  height: auto;
  opacity: 0;
  /* GSAP will animate */
  transform: translateY(-20px);
}

.preloader-words {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-words .word {
  position: absolute;
  font-family: 'Cormorant Garamond', 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(48px, 8vw, 72px);
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
}

.preloader-counter {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transform: translateY(20px);
  color: #f5f5f5;
}

.preloader-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}

.preloader-fill {
  width: 100%;
  height: 100%;
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transform-origin: left;
  transform: scaleX(0);
  /* GSAP will animate */
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  background: var(--bg-alt);
  padding: 200px 0;
  position: relative;
  z-index: 10;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.about-label {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.about-statement {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 120px;
}

.about-statement em {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  font-size: 1.25em;
  letter-spacing: -0.01em;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
  }
}

.glass-card-number {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.glass-card-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Gallery Section (Dome Gallery)
   ========================================================================== */
.gallery-section {
  position: relative;
  z-index: 10;
  background: var(--bg-alt);
  padding: 100px 0 0;
  overflow: hidden;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  margin-bottom: 40px;
}

.gallery-label {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.gallery-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0;
}

.gallery-title em {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  font-size: 1.25em;
  letter-spacing: -0.01em;
}

.gallery-subtitle {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #888;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.gallery-cta-wrapper {
  text-align: center;
  padding: 32px 0 60px;
  position: relative;
  z-index: 10;
}

.gallery-insta-btn {
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
}

/* Dome Gallery Core */
.dome-root {
  --dome-radius: 520px;
  --dome-segments: 20;
  --dome-circ: calc(var(--dome-radius) * 3.14);
  --dome-rot-unit: calc(360deg / var(--dome-segments) / 2);
  --dome-tile-size: calc(var(--dome-circ) / var(--dome-segments));
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.dome-root:active {
  cursor: grabbing;
}

.dome-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  perspective: calc(var(--dome-radius) * 2);
  perspective-origin: 50% 50%;
}

.dome-sphere {
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--dome-radius) * -1)) rotateX(0deg) rotateY(0deg);
  will-change: transform;
}

.dome-tile {
  position: absolute;
  width: calc(var(--dome-tile-size) * 2);
  height: calc(var(--dome-tile-size) * 2);
  top: -999px;
  bottom: -999px;
  left: -999px;
  right: -999px;
  margin: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform:
    rotateY(calc(var(--dome-rot-unit) * var(--col))) rotateX(calc(var(--dome-rot-unit) * var(--row))) translateZ(var(--dome-radius));
}

.dome-tile-inner {
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.dome-tile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dome-tile-inner:hover img {
  opacity: 1;
}

/* Overlays */
.dome-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dome-overlay:not(.dome-overlay--blur) {
  background-image: radial-gradient(rgba(6, 6, 6, 0) 55%, var(--bg-alt) 100%);
}

.dome-overlay--blur {
  -webkit-mask-image: radial-gradient(rgba(6, 6, 6, 0) 60%, var(--bg-alt) 85%);
  mask-image: radial-gradient(rgba(6, 6, 6, 0) 60%, var(--bg-alt) 85%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.dome-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 5;
  pointer-events: none;
}

.dome-edge--top {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-alt), transparent);
}

.dome-edge--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}

@media (max-width: 768px) {
  .dome-root {
    --dome-radius: 240px;
    height: 340px;
  }
  
  .dome-overlay--blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none !important; /* disabled entirely on mobile */
  }

  .dome-scrim {
    /* Reduce filter radius for performance */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .gallery-container {
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .gallery-subtitle {
    font-size: 13px;
    margin-top: 12px;
  }

  .gallery-cta-wrapper {
    padding: 20px 24px 48px;
  }

  .gallery-insta-btn {
    padding: 14px 28px;
    font-size: 12px;
    width: 100%;
    max-width: 320px;
  }
}

/* Dome Gallery Scrim & Enlarge */
.dome-scrim {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.dome-scrim.active {
  opacity: 1;
  pointer-events: all;
}

.dome-enlarged {
  position: fixed;
  z-index: 9999;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  background: #111;
}

.dome-enlarged-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.dome-enlarged-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.dome-enlarged-info {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.dome-enlarged-car {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.dome-enlarged-work {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #999;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
  background: var(--black);
  padding: 160px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-label {
  text-align: center;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.reviews-title {
  text-align: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 60px;
}

.reviews-title em {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #ff3333;
  font-size: 1.2em;
  letter-spacing: -0.01em;
}

/* Slider Layout */
.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.review-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.review-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.review-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.reviews-slider {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  align-items: stretch;
}

.review-card {
  flex: 0 0 90%;
  max-width: 750px;
  padding: 40px;
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  text-decoration: none !important;
  color: inherit !important;
  gap: 24px;
  user-select: none;
}


.review-card * {
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 650px;
    padding: 48px;
  }
}

.review-stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

@media (max-width: 768px) {
  .review-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 24px 20px;
    gap: 16px;
    border-radius: 20px;
    height: auto;
  }

  .review-stars {
    font-size: 18px;
  }
}


.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.review-author {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.review-source {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-source img {
  width: 20px;
  height: auto;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: white;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .reviews-slider-wrapper {
    gap: 0;
    padding-bottom: 64px; /* Give room for absolute arrows */
    display: block; /* Override flex so slider takes full width */
    position: relative;
  }

  .review-nav {
    position: absolute;
    bottom: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08); /* slightly stronger visibility */
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .review-nav.prev {
    left: calc(50% - 50px);
  }

  .review-nav.next {
    right: calc(50% - 50px);
  }

  .review-nav svg {
    width: 18px;
    height: 18px;
  }

  .reviews-slider {
    mask-image: none;
    -webkit-mask-image: none;
    width: 100%;
  }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  background: var(--bg-alt);
  padding: 240px 0;
  position: relative;
  z-index: 10;
}

.cta-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.cta-title {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 52px;
}

.cta-title em {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Footer Section — White Rounded Design
   ========================================================================== */
.footer-new {
  position: sticky;
  bottom: 0;
  z-index: 1;
}

/* White rounded container */
.footer-white {
  background: #f7f7f7;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 2;
  box-shadow:
    0 -20px 60px rgba(255, 255, 255, 0.08),
    0 -4px 20px rgba(255, 255, 255, 0.04);
}

.footer-white-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 56px 56px;
}

/* Headline */
.footer-headline {
  text-align: center;
  margin-bottom: 56px;
}

.footer-headline-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-headline-title em {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  color: #1a1a1a;
}

.footer-headline-sub {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  color: #666;
}

/* Main 2-column layout */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Left: Info with logo */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-dark {
  height: 100px;
  width: auto;
  display: block;
  filter: invert(1);
  opacity: 0.85;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: #999;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  a.footer-contact-item:hover {
    color: #111;
  }

  a.footer-contact-item:hover svg {
    color: #111;
  }
}

/* Right: Contact Form */
.footer-form-wrap {
  width: 100%;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field .form-select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px 18px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  resize: none;
  width: 100%;
  box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field .form-select:focus {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Custom Select */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px 18px;
  font-family: var(--font-main);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  outline: none;
}

.custom-select-trigger.has-value {
  color: #fff;
}

.custom-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.custom-select-trigger:focus,
.custom-select.open .custom-select-trigger {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.custom-select-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
  flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  opacity: 0.7;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 6px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  max-height: 280px;
  overflow-y: auto;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.custom-select-option.selected {
  background: rgba(255, 0, 0, 0.15);
  color: #fff;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, #25d366 0%, #128c42 100%);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (hover: hover) {
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  }

  .btn-submit:hover::before {
    opacity: 1;
  }

  .btn-submit:hover .btn-submit-arrow {
    transform: translateX(4px);
  }
}

.btn-submit-text {
  position: relative;
  z-index: 1;
}

.btn-submit-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
  background: var(--black);
  padding: 100px 0 80px;
}

.footer-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer-map-info {
  margin-bottom: 32px;
}

.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.footer-map-badge svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

.footer-map-address {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.footer-map-hint {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-map-frame-wrap {
  width: 100%;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  cursor: pointer;
}

.map-overlay-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Let clicks pass through to wrap */
}

.map-overlay-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 24px;
  border-radius: 30px;
  pointer-events: none;
}

.map-active .map-overlay-layer {
  opacity: 0;
}

.footer-map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.6) brightness(0.85) contrast(1.1);
  transition: filter 0.5s ease;
  pointer-events: none; /* Disabled until active */
}

.map-active .footer-map-iframe {
  pointer-events: auto;
}

.footer-map-frame-wrap:hover .footer-map-iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* Copyright strip - matches white footer */
.footer-copyright {
  background: #f7f7f7;
  padding: 20px 0;
}

.footer-copyright-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright-inner span {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

@media (hover: hover) {
  .wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  }
}

.wa-fab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media(max-width: 768px) {
  html, body {
    width: 100%;
    position: relative;
  }

  /* ── Header Mobile ── */
  .header-inner {
    padding: 10px 16px;
  }

  .header-logo-img {
    height: auto;
    width: clamp(90px, 20vw, 130px);
    display: block;
  }

  .header-cta {
    font-size: 10px;
    padding: 8px 12px;
    white-space: nowrap;
    letter-spacing: 0;
  }
  
  .header-right {
    gap: 10px;
  }

  @media (max-width: 380px) {
    .header-inner {
      padding: 10px 12px;
    }
    .header-logo-img {
      width: 85px;
    }
    .header-cta {
      font-size: 9px;
      padding: 6px 8px;
    }
    .header-right {
      gap: 8px;
    }
  }

  /* ── Hero Mobile ── */
  .hero-content {
    padding: 0 20px;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 16px;
    gap: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .badge-icon svg {
    width: 11px;
    height: 11px;
  }

  .title-line {
    font-size: clamp(26px, 8vw, 42px);
  }

  .hero-subtitle {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .btn-glow {
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .hero-scroll {
    padding-bottom: 16px;
  }

  .scroll-text {
    font-size: 8px;
    letter-spacing: 2px;
  }

  /* ── About Mobile ── */
  .about {
    padding: 80px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .about-statement {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 60px;
    line-height: 1.5;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .glass-card {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .glass-card-number {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: #fff;
  }

  .glass-card-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ── Gallery Mobile ── */
  .gallery-section {
    padding: 60px 0 0;
  }

  .gallery-container {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .gallery-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .gallery-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .dome-edge {
    height: 60px;
  }

  /* ── Process Mobile ── */
  .process {
    padding: 80px 0;
  }

  .process-container {
    padding: 0 20px;
  }

  .process-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .process-title {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 48px;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-left {
    width: auto;
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .step-num {
    font-size: 44px;
  }

  .step-divider {
    display: none;
  }

  .step-right {
    padding: 0 0 24px 0;
  }

  .step-name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* ── Footer Mobile ── */
  .footer-new {
    position: relative;
    bottom: auto;
  }

  .footer-white {
    border-radius: 24px 24px 0 0;
  }

  .footer-white-inner {
    padding: 24px 16px 24px;
  }

  .footer-headline {
    margin-bottom: 24px;
  }

  .footer-headline-title {
    font-size: clamp(18px, 5vw, 22px);
  }

  .footer-headline-sub {
    font-size: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-info {
    text-align: center;
    align-items: center;
    gap: 16px;
  }

  .footer-logo-dark {
    height: 48px;
    margin: 0 auto;
  }

  .footer-contacts-list {
    align-items: center;
    gap: 12px;
  }

  .footer-contact-item {
    font-size: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-form {
    gap: 12px;
  }

  .form-field {
    gap: 4px;
  }

  .form-field label {
    font-size: 11px;
  }

  .form-field input,
  .form-field textarea,
  .custom-select-trigger {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
  }

  .custom-select-options {
    border-radius: 8px;
  }

  .custom-select-option {
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 13px;
    margin-top: 4px;
  }

  /* ── Map Section Mobile ── */
  .map-section {
    padding: 60px 0 48px;
  }

  .footer-map-container {
    padding: 0 20px;
  }

  .footer-map-address {
    font-size: 20px;
  }

  .footer-map-frame-wrap {
    height: 70vh; /* Stretch to 70% of screen height */
    min-height: 380px;
    border-radius: 14px;
  }

  .footer-copyright {
    padding: 16px 0;
  }

  .footer-copyright-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0 20px;
  }

  .footer-copyright-inner span {
    font-size: 10px;
  }

  /* ── WhatsApp FAB Mobile ── */
  .wa-fab {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .wa-fab svg {
    width: 22px;
    height: 22px;
  }

  /* ── Preloader Mobile ── */
  .preloader-logo-new {
    top: 20px;
    left: 20px;
    width: 120px;
  }

  .preloader-words .word {
    font-size: 32px;
  }

  .preloader-counter {
    bottom: 20px;
    right: 20px;
    font-size: 48px;
  }

  /* ── Section gradients shorter on mobile ── */
  .hero::after,
  .about::after,
  .process::after {
    height: 100px;
  }

  /* ── Mobile menu tweaks ── */
  .mobile-link {
    font-size: 28px;
  }

  .mobile-nav {
    gap: 20px;
    margin-bottom: 36px;
  }
}


@media(min-width: 768px) {
  .preloader-logo-new {
    top: 48px;
    left: 48px;
    width: 240px;
  }

  .preloader-words .word {
    font-size: 72px;
  }

  .preloader-counter {
    bottom: 48px;
    right: 48px;
    font-size: 130px;
  }
}

/* ==========================================================================
   Services Section (Card Swap)
   ========================================================================== */
.services {
  position: relative;
  padding: 120px 20px;
  background: var(--black);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 6, 6, 0) 0%, var(--black) 100%);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.services-text-wrapper {
  flex: 1;
  max-width: 500px;
}

.services-label {
  font-size: 13px;
  letter-spacing: 2px;
}

.services-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.services-description {
  font-family: var(--font-main);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #a0a0a0;
  min-height: 100px;
}

.services-nav {
  margin-top: 40px;
}

.services-cards-wrapper {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: flex-end;
}

/* Card Swap Component */
.card-swap-container {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 640px;
  height: 360px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.scard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 405px;
  border-radius: 12px;
  background-color: #111;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.scard-header {
  height: 32px;
  background: rgba(20, 20, 20, 0.95);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #bbb;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-main);
}

.scard-header svg {
  opacity: 0.7;
}

.scard-body {
  flex: 1;
  background-size: cover;
  background-position: center;
}

/* Services Arrows */
.services-arrows {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  z-index: 20;
}

.services-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.services-arrow:active {
  transform: scale(0.95);
}

@media (max-width: 992px) {
  .services-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-text-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-cards-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 380px;
  }

  .card-swap-container {
    position: relative;
    bottom: auto;
    right: auto;
    width: 560px;
    height: 315px;
  }

  .scard {
    width: 560px;
    height: 315px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Reduced for performance */
  }
  
  .services-arrow {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
  }

  .services-cards-wrapper {
    height: 280px;
  }

  .card-swap-container {
    width: 440px;
    height: 247px;
  }

  .scard {
    width: 440px;
    height: 247px;
    box-shadow: none; /* Strip out shadows entirely on strict mobile for performance */
  }
}

@media (max-width: 480px) {
  .services-cards-wrapper {
    height: 220px;
  }

  .scard {
    width: 320px;
    height: 180px;
    box-shadow: none;
  }

  .card-swap-container {
    width: 320px;
    height: 180px;
  }

  .services-nav {
    margin-top: 20px;
  }
}