/* =========================================
   ALLURE THAI SPA — FRANCHISE PAGE STYLES
   Theme: Gold, Cream, Dark Brown
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --cream: #F8F4EE;
  --cream-dark: #EDE6D8;
  --brown-dark: #2C1A0E;
  --brown-mid: #5C3D1E;
  --brown-light: #8B6340;
  --white: #FFFFFF;
  --text-dark: #1A1208;
  --text-mid: #4A3520;
  --text-light: #7A6550;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 8px 32px rgba(44, 26, 14, 0.14);
  --shadow-lg: 0 20px 60px rgba(44, 26, 14, 0.2);
  --radius: 12px;
  --radius-sm: 6px;
}

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

/* Elementor content area — full width, no extra spacing */
#franchise-content,
#franchise-content .elementor,
#franchise-content .elementor-section-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---- Section Labels & Titles ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 20px 48px; font-size: 0.95rem; }

/* =========================================
   HEADER
   ========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

#site-header.scrolled {
  background: rgba(44, 26, 14, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

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

.btn-cta-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-header:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--brown-dark);
  padding: 16px 24px 24px;
  gap: 16px;
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.btn-cta-mobile {
  background: var(--gold) !important;
  color: var(--brown-dark) !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 50px;
  border-bottom: none !important;
  margin-top: 8px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/spa_hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 14, 4, 0.82) 0%,
    rgba(44, 26, 14, 0.65) 50%,
    rgba(28, 14, 4, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px 60px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.trust-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =========================================
   WHY ALLURE SECTION
   ========================================= */
.why-allure {
  padding: 64px 0;
  background: var(--white);
}

.why-allure .container { text-align: center; }

.why-allure .section-desc {
  margin: 0 auto 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 14px;
}

.why-icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

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

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  position: relative;
  padding: 52px 0;
  background: url('images/spa_couple.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,14,4,0.92) 0%, rgba(92,61,30,0.88) 100%);
}

.stats-section .container { position: relative; z-index: 2; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* =========================================
   FRANCHISE MODELS SECTION
   ========================================= */
.models-section {
  padding: 64px 0;
  background: var(--cream);
}

.models-section .section-desc { margin-bottom: 36px; }

.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
  width: 100%;
}

.model-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.model-featured {
  background: var(--brown-dark);
  border-color: var(--gold);
  border-width: 2px;
}

.model-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--cream-dark);
  color: var(--brown-mid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

.badge-premium {
  background: var(--gold);
  color: var(--brown-dark);
}

.model-header {
  margin-bottom: 18px;
}

.model-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--gold);
}

.model-icon svg { width: 100%; height: 100%; }

.model-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.model-featured .model-name { color: var(--white); }

.model-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.model-featured .model-tagline { color: rgba(255,255,255,0.6); }

.model-investment {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.model-featured .model-investment {
  background: rgba(255,255,255,0.08);
}

.invest-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.model-featured .invest-label { color: rgba(255,255,255,0.5); }

.invest-amount {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.model-featured .invest-amount { color: var(--gold-light); }

.invest-fee {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.model-featured .invest-fee { color: rgba(255,255,255,0.5); }

.model-specs {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.87rem;
  flex-wrap: wrap;
}

.model-featured .spec-row { border-bottom-color: rgba(255,255,255,0.1); }

.spec-key { color: var(--text-light); font-weight: 500; }
.model-featured .spec-key { color: rgba(255,255,255,0.55); }

.spec-val { color: var(--brown-dark); font-weight: 600; }
.model-featured .spec-val { color: var(--white); }

.model-services {
  flex: 1;
  margin-bottom: 28px;
}

.services-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.model-services ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.model-services li {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.model-featured .model-services li { color: rgba(255,255,255,0.75); }

.model-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.btn-model {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--brown-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
}

.btn-model:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-model-featured {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.btn-model-featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hotel Model Banner */
.hotel-model-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  border-radius: var(--radius);
  padding: 30px 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
}

.hotel-model-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hotel-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.hotel-model-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.hotel-model-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
}

.btn-hotel {
  display: inline-block;
  background: transparent;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  white-space: normal;
  text-align: center;
  word-break: break-word;
}

.btn-hotel:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 380px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-large {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,14,4,0.8));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 24px 16px 14px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* =========================================
   SUPPORT SECTION
   ========================================= */
.support-section {
  padding: 64px 0;
  background: var(--white);
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.support-text .section-title { margin-bottom: 16px; }

.support-text > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.support-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

.support-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 3px;
}

.support-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.support-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.support-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.support-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =========================================
   LOCATIONS SECTION
   ========================================= */
.locations-section {
  padding: 64px 0;
  background: var(--cream);
  text-align: center;
}

.locations-section .section-desc { margin: 0 auto 32px; }

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.location-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.active-loc {
  background: var(--brown-dark);
  color: var(--gold-light);
  border: 1px solid var(--brown-mid);
}

.expanding {
  background: var(--white);
  color: var(--text-mid);
  border: 1px dashed var(--brown-light);
}

.locations-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.legend-active, .legend-expanding {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-left: 20px;
  position: relative;
}

.legend-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brown-dark);
}

.legend-expanding::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px dashed var(--brown-light);
  background: var(--white);
}

/* =========================================
   LEAD FORM SECTION
   ========================================= */
.lead-form-section {
  position: relative;
  padding: 72px 0;
  background: url('images/spa_franchise_bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.lead-form-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,14,4,0.94) 0%, rgba(92,61,30,0.88) 100%);
}

.lead-form-section .container { position: relative; z-index: 2; }

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.light-label { color: var(--gold-light); }

.light-title {
  color: var(--white) !important;
}

.light-desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-direct { display: flex; flex-direction: column; gap: 16px; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold-light); }

.contact-link svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: var(--gold);
}

.contact-link strong { color: var(--white); font-size: 1rem; }

/* Form Card */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 32px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
}

.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.req { color: var(--gold-dark); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237A6550' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--white);
}

.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
}

.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  display: none;
}

.field-error.visible { display: block; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

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

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0faf4;
  border: 1px solid #68d391;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #276749;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}

.form-success svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: #38a169;
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 64px 0;
  background: var(--white);
}

.faq-section .section-desc { margin-bottom: 32px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-icon svg { width: 100%; height: 100%; }

.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold-dark); }

.faq-answer {
  display: none;
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
  position: relative;
  padding: 72px 0;
  background: url('images/spa_massage.jpg') center 30% / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,14,4,0.9) 0%, rgba(92,61,30,0.85) 100%);
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  transition: color var(--transition);
}

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

.footer-col em { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

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

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* =========================================
   ANIMATIONS
   Cards are visible by default (opacity: 1) so they always show
   even if JS fails to load. JS adds .aos-animate which triggers
   the slide-up animation as a progressive enhancement.
   ========================================= */
[data-aos] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* JS adds .aos-ready to <body> once loaded, enabling the hidden-first effect */
body.aos-ready [data-aos] {
  opacity: 0;
  transform: translateY(30px);
}

body.aos-ready [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-aos-delay="500"] { transition-delay: 0.5s; }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; }
  .gallery-large { grid-column: span 2; }
  .support-inner { grid-template-columns: 1fr; gap: 48px; }
  .support-image img { height: 360px; }
  .hotel-model-banner { padding: 32px 36px; }
}

@media (max-width: 768px) {
  .main-nav, .btn-cta-header { display: none; }
  .hamburger { display: flex; }

  /* Prevent any horizontal overflow */
  section, .container, .hero-content, .lead-form-inner,
  .models-section, .hotel-model-banner, .why-allure,
  .stats-section, .support-section, .faq-section,
  .final-cta, .site-footer { max-width: 100%; overflow-x: hidden; }

  .hero-content { padding: 100px 16px 60px; }

  .hero-trust-bar {
    padding: 14px 16px;
    width: 100%;
    justify-content: center;
  }

  .trust-item { padding: 0 12px; }
  .trust-num { font-size: 1.3rem; }

  .why-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .lead-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-card { padding: 24px 20px; }

  /* Hotel model — stack vertically and constrain button */
  .hotel-model-banner { padding: 28px 20px; }
  .hotel-model-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .btn-hotel {
    width: 100%;
    text-align: center;
    white-space: normal;
    padding: 14px 20px;
    box-sizing: border-box;
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  /* Support section */
  .support-image img { height: 280px; }

  /* Locations */
  .locations-grid { gap: 8px; }

  /* Presence section */
  .presence-section .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-trust-bar {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px;
  }
  .trust-divider { width: 50px; height: 1px; }
  .trust-item { padding: 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 12px; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .gallery-large { grid-column: span 1; }

  .locations-grid { gap: 6px; }
  .section-title { font-size: 1.7rem; }

  /* Hotel model on very small screens */
  .hotel-model-banner { padding: 24px 16px; }
  .hotel-model-text h3 { font-size: 1.3rem; }
  .btn-hotel { font-size: 0.75rem; padding: 12px 16px; }

  /* Why cards */
  .why-card { padding: 28px 20px; }

  /* Form */
  .lead-form-card { padding: 20px 16px; }
  .form-group input,
  .form-group select { font-size: 16px; } /* Prevent iOS zoom */

  /* Footer */
  .footer-grid { gap: 24px; }

  /* Final CTA */
  .final-cta { padding: 72px 0; }

  /* Models */
  .model-card { padding: 28px 20px; }
  .model-featured { padding: 28px 20px; }
}

/* =========================================
   ADDITIONAL OVERFLOW SAFEGUARDS
   ========================================= */

/* Ensure all sections never exceed viewport width */
section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent any absolutely-positioned elements from causing scroll */
.hero, .stats-section, .lead-form-section, .final-cta {
  overflow-x: hidden;
}

/* Prevent trust bar from causing overflow on very narrow screens */
@media (max-width: 400px) {
  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    width: 100%;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 4px 0; }
  .trust-num { font-size: 1.2rem; }

  .hero-title { font-size: 2.2rem; }
  .hero-eyebrow { font-size: 0.65rem; padding: 6px 14px; }

  .hotel-model-banner { padding: 20px 14px; border-radius: 8px; }
  .hotel-model-text h3 { font-size: 1.2rem; }
  .btn-hotel { padding: 12px 14px; font-size: 0.72rem; }

  .model-card, .model-featured { padding: 24px 16px; }
  .invest-amount { font-size: 1.6rem; }

  .container { padding: 0 14px; }
  .lead-form-card { padding: 18px 14px; }
  .form-title { font-size: 1.3rem; }
}
