/* ================================================================
   DESERT ORCHID SPA MASSAGE — LUXURY WEBSITE
   Fonts: Cormorant Garamond · Jost · Great Vibes
   Palette: Black · White · Gold · Pink
================================================================ */

@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=Great+Vibes&family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============ VARIABLES ============ */
:root {
  --black:        #070707;
  --dark:         #111111;
  --dark-2:       #181818;
  --dark-3:       #202020;
  --gold:         #C9A84C;
  --gold-light:   #F0D080;
  --gold-dark:    #9B7B2A;
  --gold-grad:    linear-gradient(135deg, #9B7B2A 0%, #C9A84C 35%, #F0D080 50%, #C9A84C 65%, #9B7B2A 100%);
  --pink:         #E8829A;
  --pink-dark:    #C06080;
  --pink-light:   #FBDAE4;
  --white:        #FFFFFF;
  --warm-white:   #F8F4F0;
  --text-light:   #ECE4DC;
  --text-muted:   #9A8878;
  --border-gold:  rgba(201,168,76,0.28);
  --transition:   all 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow:       0 30px 90px rgba(0,0,0,0.65);
  --shadow-gold:  0 15px 55px rgba(201,168,76,0.28);
  --shadow-pink:  0 15px 55px rgba(232,130,154,0.28);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; letter-spacing: 0.01em; }
.script-text  { font-family: 'Great Vibes', cursive; font-size: 2.8rem; color: var(--gold); display: block; line-height: 1.3; }
.section-label {
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.7rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--white); margin-bottom: 1.1rem; }
.section-title span, .section-title em { color: var(--gold); font-style: italic; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.9; font-weight: 300; }

/* ============ DIVIDER ============ */
.divider { display: flex; align-items: center; gap: 0.9rem; margin: 1.1rem 0; }
.divider-line { width: 55px; height: 1px; background: var(--border-gold); }
.divider-icon { color: var(--gold); font-size: 0.78rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.2rem; font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,0.07); transition: left 0.4s ease; }
.btn:hover::before { left: 0; }
.btn-gold  { background: var(--gold-grad); color: var(--black); }
.btn-gold:hover  { transform: translateY(-3px); box-shadow: var(--shadow-gold); color: var(--black); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-pink  { background: var(--pink); color: var(--white); }
.btn-pink:hover  { background: var(--pink-dark); transform: translateY(-3px); box-shadow: var(--shadow-pink); color: var(--white); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-3px); color: #fff; }
.btn-sm  { padding: 0.62rem 1.5rem; font-size: 0.7rem; }

/* ============ CONTAINER ============ */
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; background: var(--black); z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { display:flex; align-items:center; justify-content:center; font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--gold); letter-spacing: 0.45em; }
.preloader-logo img { filter: drop-shadow(0 0 20px rgba(197,160,60,0.4)); }
.preloader-script { font-family: 'Great Vibes', cursive; font-size: 1.6rem; color: rgba(201,168,76,0.6); margin-top: -0.5rem; }
.preloader-bar { will-change: width; width: 180px; height: 1px; background: rgba(201,168,76,0.12); position: relative; overflow: hidden; margin-top: 0.3rem; }
.preloader-bar::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold-grad); animation: barLoad 1.7s ease forwards; }
@keyframes barLoad { to { left: 0; } }

/* ============ NAVIGATION ============ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.6rem 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(7,7,7,0.97); backdrop-filter: blur(24px); padding: 0.9rem 0; border-bottom: 1px solid var(--border-gold); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.navbar-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.navbar-logo-img { height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block; filter: drop-shadow(0 2px 8px rgba(197,160,60,0.18)); transition: opacity 0.2s; }
.navbar-logo-img:hover { opacity: 0.85; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.logo-sub  { font-family: 'Jost', sans-serif; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.5em; text-transform: uppercase; color: var(--text-muted); }
.navbar-menu { display: flex; align-items: center; gap: 2.2rem; }
.navbar-link { font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light); position: relative; padding-bottom: 4px; cursor: pointer; }
.navbar-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.navbar-link:hover { color: var(--gold); }
.navbar-link:hover::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 0.8rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* NAV DROPDOWN */
.nav-item { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.35rem; }
.nav-dropdown-toggle i { font-size: 0.55rem; transition: transform 0.3s ease; }
.nav-item:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 1.2rem); left: 50%; transform: translateX(-50%);
  width: 700px; background: rgba(17,17,17,0.98); border: 1px solid var(--border-gold);
  backdrop-filter: blur(24px); padding: 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 200;
}
.nav-item:hover .nav-dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 0.6rem); }
.dd-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0.9rem; color: var(--text-muted); transition: var(--transition); border: 1px solid transparent; }
.dd-item:hover { border-color: var(--border-gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.dd-item i { color: var(--gold); font-size: 0.85rem; width: 18px; text-align: center; flex-shrink: 0; }
.dd-item span { font-size: 0.78rem; font-weight: 500; white-space: nowrap; }

/* ============ MOBILE MENU ============ */
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(360px, 100%); height: 100vh; background: var(--dark); z-index: 1001; padding: 5.5rem 2.5rem 3rem; display: flex; flex-direction: column; gap: 2rem; transition: right 0.42s cubic-bezier(0.25,0.46,0.45,0.94); border-left: 1px solid var(--border-gold); }
.mobile-menu.open { right: 0; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: transparent; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-link { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--text-light); transition: var(--transition); padding: 1.1rem 0; border-bottom: 1px solid rgba(201,168,76,0.08); display: block; }
.mobile-nav-link:hover { color: var(--gold); padding-left: 1rem; }
.mobile-nav-sub { padding-left: 1.5rem; }
.mobile-nav-sub .mobile-nav-link { font-size: 1.1rem; padding: 0.7rem 0; border-bottom-color: rgba(201,168,76,0.05); }
.mobile-contact { margin-top: auto; }
.mobile-contact p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.mobile-contact a { color: var(--gold); font-weight: 600; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.82); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); }
.overlay.active { opacity: 1; visibility: visible; }

/* ============ HERO — 2-COLUMN GRID ============ */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.hero-bg-subtle {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(232,130,154,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 3rem 0 3rem; min-height: 100vh; width: 100%; }
/* LEFT CONTENT */
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.32); padding: 0.5rem 1.3rem; margin-bottom: 1rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 600; color: var(--white); line-height: 1.07; margin-bottom: 1.4rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: 1.02rem; color: rgba(236,228,220,0.72); max-width: 480px; line-height: 1.9; margin-bottom: 2.8rem; font-weight: 300; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
/* RIGHT VISUAL — PORTRAIT IMAGE */
.hero-visual { position: relative; height: 700px; display: flex; align-items: stretch; }
.hero-img-portrait {
  position: relative; width: 100%; height: 100%;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.25);
}
.hero-img-portrait img { will-change: transform;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform 10s ease;
  display: block;
}
.hero-img-portrait:hover img { transform: scale(1.04); }
.hero-img-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,7,7,0.45) 0%, transparent 40%),
              linear-gradient(to top, rgba(7,7,7,0.35) 0%, transparent 50%);
  pointer-events: none;
}
/* Accent card on image */
.hero-img-accent-card {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  display: flex; align-items: center; gap: 1rem; z-index: 4;
  background: rgba(7,7,7,0.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 1rem 1.5rem;
}
.hiac-line { width: 1px; height: 2.5rem; background: var(--gold); opacity: 0.5; }
.hiac-content { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.hiac-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hiac-text { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-align: center; }
/* Award badge top-right */
.hero-img-badge-top {
  position: absolute; top: 2rem; right: 2rem; z-index: 4;
  background: var(--gold-grad); color: var(--black);
  padding: 0.9rem 1.2rem; text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.hero-img-badge-top i { font-size: 1.2rem; }
.hero-img-badge-top span { font-size: 0.55rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.5; }
.hero-gold-ring { position: absolute; top: -1.5rem; left: -1.5rem; width: 120px; height: 120px; border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; z-index: 5; pointer-events: none; }
.hero-gold-ring::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(201,168,76,0.1); border-radius: 50%; }
.hero-gold-ring-2 { position: absolute; bottom: -1rem; right: -1rem; width: 80px; height: 80px; border: 1px solid rgba(201,168,76,0.15); border-radius: 50%; z-index: 5; pointer-events: none; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; z-index: 2; cursor: pointer; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2.3s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--dark-2); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); padding: 1.3rem 0; }
.stats-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 0.8rem; }
.stat-item { display: flex; align-items: center; gap: 1rem; padding: 0.4rem 0.8rem; }
.stat-icon { color: var(--gold); font-size: 1.1rem; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 34px; background: var(--border-gold); }

/* ============ SECTIONS ============ */
section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header.center .divider { justify-content: center; }

/* ============ ABOUT ============ */
.about-section { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; height: 580px; object-fit: cover; object-position: center; display: block; }
.about-img-border { position: absolute; top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem; border: 1px solid var(--border-gold); z-index: -1; }
.about-award-badge { position: absolute; bottom: 2.5rem; right: -2rem; background: var(--gold-grad); color: var(--black); padding: 1.4rem 1.8rem; text-align: center; box-shadow: var(--shadow); }
.badge-number { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; display: block; line-height: 1; }
.badge-text { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.4rem; display: block; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.af-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; }
.af-text h4 { font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--white); margin-bottom: 0.2rem; }
.af-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ============ HOMEPAGE IMAGE SERVICE CARDS ============ */
.services-section { background: var(--black); }
.services-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.service-card-v2 { contain: layout style;
  position: relative; overflow: hidden; min-height: 370px;
  cursor: pointer; transition: var(--transition); border: 1px solid rgba(0,0,0,0);
}
.service-card-v2:hover { transform: translateY(-7px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.4); z-index: 2; }
.sc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.service-card-v2:hover .sc-bg { transform: scale(1.1); }
.sc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,0.96) 30%, rgba(7,7,7,0.6) 65%, rgba(7,7,7,0.25) 100%); transition: var(--transition); }
.service-card-v2:hover .sc-overlay { background: linear-gradient(to top, rgba(7,7,7,0.98) 35%, rgba(7,7,7,0.72) 70%, rgba(7,7,7,0.35) 100%); }
.sc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.sc-icon { width: 46px; height: 46px; border: 1px solid rgba(201,168,76,0.5); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; transition: var(--transition); }
.service-card-v2:hover .sc-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.sc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; transition: var(--transition); }
.service-card-v2:hover .sc-name { color: var(--gold); }
.sc-desc { font-size: 0.84rem; color: rgba(236,228,220,0.75); line-height: 1.68; margin-bottom: 0.8rem; font-weight: 300; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.45s ease, opacity 0.45s ease; }
.service-card-v2:hover .sc-desc { max-height: 100px; opacity: 1; }
.sc-footer { display: flex; align-items: center; justify-content: space-between; }
.sc-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--pink); }
.sc-link { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); transition: var(--transition); }
.sc-link:hover { gap: 0.9rem; }
.service-card-v2::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold-grad); transition: height 0.5s ease; z-index: 2; }
.service-card-v2:hover::before { height: 100%; }
.services-cta-wrap { text-align: center; margin-top: 3.5rem; }

/* ============ EXPERIENCE BANNER ============ */
.experience-section { background: var(--dark-2); position: relative; overflow: hidden; padding: 5rem 0; }
.experience-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 85% 50%, rgba(232,130,154,0.06) 0%, transparent 60%); pointer-events: none; }
.experience-inner { text-align: center; max-width: 820px; margin: 0 auto; position: relative; }
.experience-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 500; font-style: italic; color: var(--white); line-height: 1.55; margin-bottom: 2rem; }
.experience-quote span { color: var(--gold); }
.experience-author { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }

/* ============ WHY CHOOSE US ============ */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { text-align: center; padding: 2.5rem 1.8rem; border: 1px solid var(--border-gold); transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent); opacity: 0; transition: opacity 0.4s ease; }
.why-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.why-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { content-visibility: auto; contain-intrinsic-size: 0 500px; background: var(--black); position: relative; overflow: hidden; }
.testimonials-section::after { content: '"'; position: absolute; top: -6rem; right: 4rem; font-family: 'Cormorant Garamond', serif; font-size: 28rem; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
.testimonials-track { display: flex; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-slide { min-width: 100%; }
.testimonial-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.32em; margin-bottom: 2rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-style: italic; color: var(--text-light); line-height: 1.78; margin-bottom: 2.5rem; }
.author-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); }
.author-origin { font-size: 0.76rem; color: var(--gold); margin-top: 0.3rem; font-weight: 300; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.slider-btn { width: 44px; height: 44px; border: 1px solid var(--border-gold); background: transparent; color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 0.82rem; }
.slider-btn:hover { background: var(--gold); color: var(--black); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 22px; height: 1px; background: var(--border-gold); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--gold); width: 46px; }

/* ============ GALLERY ============ */
.gallery-section { content-visibility: auto; contain-intrinsic-size: 0 500px; background: var(--dark); padding: 6rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 4px; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.68s ease; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,0.78), transparent 55%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--gold); }
.gallery-overlay-content i { font-size: 1.5rem; }

/* ============ INFO SECTION ============ */
.info-section { content-visibility: auto; contain-intrinsic-size: 0 500px; background: var(--dark-2); padding: 5rem 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-card { background: var(--dark); border: 1px solid var(--border-gold); padding: 2.5rem; }
.info-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-gold); }
.info-card-title i { color: var(--gold); margin-right: 0.6rem; }
.hours-list { display: flex; flex-direction: column; }
.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
.hours-item:last-child { border-bottom: none; }
.hours-day { font-size: 0.88rem; font-weight: 500; color: var(--text-light); }
.hours-time { font-size: 0.88rem; color: var(--gold); font-weight: 600; }
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; }
.contact-info h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; }
.contact-info a, .contact-info p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }
.contact-info a:hover { color: var(--gold); }

/* ============ CTA SECTION ============ */
.cta-section { content-visibility: auto; contain-intrinsic-size: 0 500px; background: var(--dark); position: relative; overflow: hidden; padding: 6rem 0; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(232,130,154,0.07) 0%, transparent 60%); }
.cta-inner { text-align: center; position: relative; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.cta-title span { color: var(--gold); font-style: italic; }
.cta-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.9; font-weight: 300; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { content-visibility: auto; contain-intrinsic-size: 0 500px; background: var(--dark-2); border-top: 1px solid var(--border-gold); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.9; max-width: 285px; margin: 1.2rem 0 1.8rem; font-weight: 300; }
.footer-social { display: flex; gap: 0.8rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-link { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; font-weight: 300; }
.footer-link:hover { color: var(--gold); padding-left: 0.5rem; }
.footer-link i { font-size: 0.6rem; opacity: 0.55; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-item i { color: var(--gold); font-size: 0.76rem; margin-top: 0.3rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: 0.76rem; color: var(--text-muted); }
.footer-copyright span { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.74rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; align-items: center; gap: 0; filter: drop-shadow(0 8px 28px rgba(37,211,102,0.45)); animation: floatBob 3s ease-in-out infinite; }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.whatsapp-main-btn { width: 62px; height: 62px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.9rem; transition: var(--transition); flex-shrink: 0; position: relative; }
.whatsapp-main-btn:hover { background: #1da851; transform: scale(1.1); color: white; }
.whatsapp-tooltip { background: var(--white); color: var(--black); padding: 0.5rem 1rem; border-radius: 4px 0 0 4px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; transform: translateX(14px); opacity: 0; transition: var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,0.35); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
/* ============ CALL FLOATING BUTTON ============ */
.call-float { position: fixed; bottom: 2rem; left: 2rem; z-index: 9999; display: flex; align-items: center; flex-direction: row-reverse; gap: 0; text-decoration: none; filter: drop-shadow(0 6px 24px rgba(180,140,40,0.55)); animation: floatBob 3s ease-in-out 1.5s infinite; }
.call-main-btn { width: 62px; height: 62px; background: linear-gradient(135deg, #d4a017 0%, #a07010 60%, #1a1200 100%); border: 2px solid #d4a017; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffe08a; font-size: 1.55rem; flex-shrink: 0; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 0 0 3px rgba(212,160,23,0.25), inset 0 1px 0 rgba(255,220,100,0.2); }
.call-float:hover .call-main-btn { transform: scale(1.12); box-shadow: 0 0 0 5px rgba(212,160,23,0.35), inset 0 1px 0 rgba(255,220,100,0.2); }
.call-tooltip { background: #1a1200; color: #ffe08a; border: 1px solid #d4a017; padding: 0.45rem 1rem; border-radius: 0 6px 6px 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; white-space: nowrap; transform: translateX(-10px); opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; }
.call-float:hover .call-tooltip { opacity: 1; transform: translateX(0); }
.call-pulse { position: absolute; inset: -2px; border-radius: 50%; border: 2px solid #d4a017; animation: callRing 2.2s ease-out infinite; opacity: 0; }
.call-pulse::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(212,160,23,0.4); animation: callRing 2.2s ease-out 0.7s infinite; opacity: 0; }
@keyframes callRing { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { height: 42vh; min-height: 300px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(7,7,7,0.72); }
.page-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.7rem; font-size: 0.76rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold); }

/* ============ ALL SERVICES LIST PAGE ============ */
.all-services-section { background: var(--dark); }
.all-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-detail-card { background: var(--dark-2); border: 1px solid var(--border-gold); overflow: hidden; transition: var(--transition); position: relative; }
.service-detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.sdc-img { height: 220px; overflow: hidden; position: relative; }
.sdc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.68s ease; }
.service-detail-card:hover .sdc-img img { transform: scale(1.1); }
.sdc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(7,7,7,0.6)); }
.sdc-price-badge { position: absolute; bottom: 1rem; right: 1rem; background: var(--gold-grad); color: var(--black); padding: 0.3rem 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; }
.sdc-body { padding: 2rem; }
.sdc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; transition: var(--transition); }
.service-detail-card:hover .sdc-name { color: var(--gold); }
.sdc-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }
.sdc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.sdc-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); border: 1px solid rgba(232,130,154,0.3); padding: 0.25rem 0.7rem; }
.sdc-actions { display: flex; gap: 0.8rem; }

/* ============ INDIVIDUAL SERVICE PAGES ============ */
/* Hero */
.sp-hero { min-height: 80vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 4rem; overflow: hidden; }
.sp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3); transition: transform 8s ease; transform: scale(1.05); }
.sp-hero-bg.loaded { transform: scale(1); }
/*.sp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.28) 60%, rgba(7,7,7,0.35) 100%); }*/
.sp-hero-content { position: relative; z-index: 2; width: 100%; }
.sp-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: flex-end; }
.sp-hero-category { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; display: block; }
.sp-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600; color: var(--white); line-height: 1.08; margin-bottom: 0.8rem; }
.sp-hero-tagline { font-family: 'Great Vibes', cursive; font-size: 2.2rem; color: var(--gold); margin-bottom: 1.6rem; display: block; }
.sp-hero-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.sp-meta-chip { display: flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3); padding: 0.38rem 1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.sp-hero-cta { display: flex; flex-direction: column; gap: 0.8rem; flex-shrink: 0; }

/* Overview */
.sp-overview { background: var(--dark); padding: 6rem 0; }
.sp-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.sp-overview-img-wrap { position: relative; }
.sp-overview-img { width: 100%; height: 560px; object-fit: cover; display: block; border: 1px solid var(--border-gold); }
.sp-overview-img-deco { position: absolute; top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem; border: 1px solid rgba(201,168,76,0.12); z-index: -1; }
.sp-overview-text { font-size: 0.98rem; color: var(--text-muted); line-height: 1.92; margin-bottom: 1.4rem; font-weight: 300; }
.sp-highlight-box { background: var(--dark-2); border-left: 3px solid var(--gold); padding: 1.5rem; margin: 2rem 0; }
.sp-highlight-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-style: italic; color: var(--text-light); line-height: 1.65; }
.sp-overview-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.sp-overview-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }
.sp-overview-list li i { color: var(--gold); font-size: 0.8rem; margin-top: 0.32rem; flex-shrink: 0; }

/* Benefits */
.sp-benefits { background: var(--black); padding: 5rem 0; }
.sp-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card { contain: layout style; padding: 2rem; border: 1px solid var(--border-gold); position: relative; overflow: hidden; transition: var(--transition); }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold-grad); transform: scaleX(0); transition: transform 0.45s ease; }
.benefit-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: rgba(201,168,76,0.1); line-height: 1; position: absolute; top: 0.8rem; right: 1.3rem; }
.benefit-icon { width: 50px; height: 50px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 1.2rem; transition: var(--transition); }
.benefit-card:hover .benefit-icon { background: var(--gold); color: var(--black); }
.benefit-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.55rem; }
.benefit-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.73; font-weight: 300; }

/* Process */
.sp-process { background: var(--dark-2); padding: 5rem 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px; background: var(--border-gold); z-index: 0; }
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; margin: 0 auto 1.5rem; border: 1px solid var(--border-gold); background: var(--dark-2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); position: relative; z-index: 2; transition: var(--transition); }
.process-step:hover .step-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.68; font-weight: 300; }

/* Pricing */
.sp-pricing { background: var(--dark); padding: 5rem 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: var(--dark-2); border: 1px solid var(--border-gold); padding: 2.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: 1.2rem; right: -2.5rem; background: var(--gold-grad); color: var(--black); padding: 0.25rem 3.5rem; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; transform: rotate(45deg); }
.pricing-card:hover { transform: translateY(-5px); }
.pricing-duration { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price-label { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 300; }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-feature { font-size: 0.84rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 300; }
.pricing-feature i { color: var(--gold); font-size: 0.72rem; }

/* FAQ */
.sp-faq { background: var(--dark-2); padding: 5rem 0; }
.faq-list { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.1); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; cursor: pointer; gap: 1rem; }
.faq-q-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.faq-question:hover .faq-q-text { color: var(--gold); }
.faq-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.8rem; transition: var(--transition); }
.faq-item.active .faq-icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; }
.faq-item.active .faq-answer { max-height: 350px; }

/* Related Services */
.sp-related { background: var(--black); padding: 5rem 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card { position: relative; overflow: hidden; height: 280px; cursor: pointer; border: 1px solid var(--border-gold); transition: var(--transition); display: block; }
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.related-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.65s ease; }
.related-card:hover .related-card-bg { transform: scale(1.1); }
.related-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,7,0.92) 38%, rgba(7,7,7,0.38) 100%); }
.related-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.related-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; transition: var(--transition); }
.related-card:hover .related-name { color: var(--gold); }
.related-price { font-size: 0.84rem; color: var(--pink); }
.related-link { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.88s ease, transform 0.88s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.88s ease, transform 0.88s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity 0.88s ease, transform 0.88s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr; padding: 7rem 0 3rem; }
  .hero-visual { display: none; }
  .hero-grid > .hero-content { max-width: 700px; margin: 0 auto; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-badge { display: inline-flex; }
  .nav-dropdown-menu { width: 600px; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-award-badge { right: 1rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: 1; height: 280px; }
  .gallery-item { height: 200px; }
  .sp-overview-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sp-overview-img { height: 360px; }
  .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-hero-grid { grid-template-columns: 1fr; }
  .sp-hero-cta { flex-direction: row; margin-top: 1.5rem; }
}
@media (max-width: 768px) {
  .navbar-logo-img { height: 40px; max-width: 160px; }
  .navbar-menu, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .about-img { height: 340px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid-v2 { grid-template-columns: 1fr; gap: 3px; }
  .all-services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 0.8rem; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: 1/3; height: 200px; }
  .gallery-item { height: 150px; }
  .sp-benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .process-steps { grid-template-columns: 1fr; }
}
