/* =========================================
   GRACY DAYNIGHT OUTCALL SPA — STYLE.CSS
   Premium Luxury Dark Spa Website
   ========================================= */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #9e7b2f;
  --gold-pale: #f0e4c2;
  --black: #080808;
  --charcoal: #111111;
  --charcoal-2: #1a1a1a;
  --charcoal-3: #222222;
  --dark-card: #161616;
  --cream: #f5f0e8;
  --champagne: #f4e9d0;
  --beige: #e8dcc8;
  --text-light: #d4c9b0;
  --text-muted: #8a7d68;
  --white: #ffffff;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

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

body {
  font-family: var(--sans);
  background-color: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   LOADING SCREEN
   ========================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease forwards;
}

.loader-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.loader-line-container {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.loader-line {
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineSlide 1.8s ease infinite;
}

@keyframes lineSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* =========================================
   CURSOR TRAIL (desktop only)
   ========================================= */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* =========================================
   FLOATING PARTICLES
   ========================================= */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6187252/pexels-photo-6187252.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1080&w=1920');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(8,8,8,0.85) 100%
  );
}

.hero-overlay-gold {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal-2);
  color: var(--text-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* =========================================
   SECTION GLOBALS
   ========================================= */
section {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 6rem 2rem;
}

.section-pad-sm {
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-eyebrow.center {
  justify-content: center;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title.center { text-align: center; }

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 650px;
}

.section-subtitle.center {
  text-align: center;
  margin: 0 auto;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
  opacity: 0.6;
}

.gold-rule.center { margin: 1.5rem auto; }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =========================================
   INTRODUCTION SECTION
   ========================================= */
.intro-section {
  background: var(--charcoal);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 2;
  pointer-events: none;
}

.intro-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.intro-image-wrap:hover img {
  transform: scale(1.05);
}

.intro-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
  z-index: 1;
}

.intro-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(8,8,8,0.9);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1.2rem 1.5rem;
  text-align: center;
  z-index: 3;
}

.intro-badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.intro-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.intro-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.08);
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.8) 100%);
}

.service-body {
  padding: 1.8rem;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 1rem;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.why-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.why-card:hover::after {
  width: 80%;
}

.why-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.why-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   OUTCALL BANNER SECTION
   ========================================= */
.outcall-banner {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.outcall-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6186740/pexels-photo-6186740.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=800&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.outcall-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 100%);
}

.outcall-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 4rem 2rem;
}

.outcall-banner-content .section-title {
  margin-bottom: 1.5rem;
}

.outcall-banner-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* =========================================
   LOCATION SECTION
   ========================================= */
.location-section {
  background: var(--black);
}

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

.location-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
}

.location-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.location-detail-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.location-detail-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.map-container {
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-dark);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--charcoal);
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 1rem;
}

.faq-question:hover .faq-q-text {
  color: var(--gold);
}

.faq-q-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition-fast);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.95) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.breadcrumbs span {
  color: var(--gold);
}

/* =========================================
   STEPS SECTION
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2rem;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--text-light);
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-select option {
  background: var(--charcoal);
  color: var(--text-light);
}

.form-error {
  font-size: 0.75rem;
  color: #e07070;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: #e07070;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: floatPulse 3s ease infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* =========================================
   MOBILE BOTTOM BAR
   ========================================= */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(8,8,8,0.97);
  border-top: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(10px);
}

.mobile-bottom-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 60px;
}

.mbb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.mbb-btn:nth-child(1) { color: var(--text-light); }
.mbb-btn:nth-child(1):hover, .mbb-btn:nth-child(1):active { color: var(--white); background: rgba(201,168,76,0.1); }

.mbb-btn:nth-child(2) { color: #25d366; background: rgba(37,211,102,0.05); }
.mbb-btn:nth-child(2):hover { background: rgba(37,211,102,0.15); }

.mbb-btn:nth-child(3) { color: var(--black); background: var(--gold); }
.mbb-btn:nth-child(3):hover { background: var(--gold-light); }

.mbb-icon { font-size: 1.2rem; line-height: 1; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-bottom: 70px;
}

.footer-top {
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.footer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-text a {
  color: var(--gold);
}

.footer-contact-text a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* =========================================
   SECTION SEPARATOR
   ========================================= */
.section-sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.sep-diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =========================================
   COLABA SEO PAGE
   ========================================= */
.colaba-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.colaba-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2rem;
  transition: var(--transition);
}

.colaba-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.colaba-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.colaba-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   LARGE TEXT ACCENT
   ========================================= */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.italic { font-style: italic; }

/* =========================================
   IMAGE GRID
   ========================================= */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.img-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.1);
}

.img-grid-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.img-grid-item:hover img {
  transform: scale(1.06);
}

/* =========================================
   DISCLAIMER
   ========================================= */
.disclaimer {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  margin-top: 2rem;
}

.disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Animated gold shimmer text */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .step-card:not(:last-child)::after {
    display: none;
  }

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

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 1.5rem; }
  .section-pad-sm { padding: 3rem 1.5rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .colaba-info-grid {
    grid-template-columns: 1fr;
  }

  .img-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .whatsapp-float {
    bottom: 70px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .map-container iframe {
    height: 280px;
  }

  .intro-image-wrap img {
    height: 350px;
  }
}

/* =========================================
   UTILITY
   ========================================= */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
