/* ===========================
   Oryx Spa — Main Stylesheet
   Brand: Purple #5B2D8E | Gold #C9A96E
   =========================== */

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

:root {
  --purple: #5B2D8E;
  --purple-dark: #3D1A6E;
  --purple-light: #7A3DB5;
  --gold: #C9A96E;
  --gold-dark: #A8863A;
  --gold-light: #E8D5A3;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --font-main: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(91,45,142,0.12);
  --shadow-lg: 0 8px 48px rgba(91,45,142,0.18);
  --radius: 8px;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.25;
  color: var(--purple-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: #4B5563; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--gray); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Layout ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--purple); }

/* ── Header / Nav ─────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img { height: 56px; width: auto; }
.logo-text {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.logo-text span { color: var(--gold); display: block; font-size: 0.7rem; letter-spacing: 0.3em; font-weight: 400; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { left: 0.85rem; right: 0.85rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,0.2);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 8px); }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: var(--dark);
  border-radius: 0;
  letter-spacing: 0.03em;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--purple); padding-left: 1.5rem; }

.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--purple); padding-left: 1.5rem; }
.mobile-nav .mobile-sub { padding-left: 1.5rem; font-size: 0.9rem; font-weight: 400; }
.mobile-nav .mobile-cta { margin-top: 1rem; }

/* ── Hero ─────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--purple-dark);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,26,110,0.7) 0%, rgba(91,45,142,0.4) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-top: 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }

/* ── Stats Bar ─────────────────────── */
.stats-bar {
  background: var(--purple);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 0.25rem; }

/* ── Services Grid ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201,169,110,0.15);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-card-body p { font-size: 0.88rem; margin-bottom: 1rem; color: var(--gray); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  transition: var(--transition);
}
.service-link:hover { color: var(--gold-dark); gap: 0.7rem; }

/* ── About Strip ─────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--purple);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: var(--font-main); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-text { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 0.25rem; }
.about-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(91,45,142,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
  font-size: 0.9rem;
}
.about-feature-text h4 { font-size: 0.95rem; color: var(--purple-dark); margin-bottom: 0.2rem; }
.about-feature-text p { font-size: 0.82rem; margin: 0; color: var(--gray); }

/* ── Offers ─────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.offer-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.offer-card:hover .offer-card-img img { transform: scale(1.06); }
.offer-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}
.offer-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-card-body h3 { font-size: 1.2rem; color: var(--purple-dark); margin-bottom: 0.5rem; }
.offer-card-body p { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; flex: 1; }
.offer-card-body .btn { align-self: flex-start; }

/* ── Rooms Gallery ─────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; }
.gallery-item.large img { height: 416px; }

/* ── Why Us ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 0;
}
.why-img { border-radius: 12px; overflow: hidden; }
.why-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}
.why-text h4 { font-size: 1rem; color: var(--purple-dark); margin-bottom: 0.3rem; }
.why-text p { font-size: 0.85rem; margin: 0; color: var(--gray); }

/* ── Testimonials ─────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; font-size: 0.9rem; color: #4B5563; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info h5 { font-size: 0.9rem; color: var(--purple-dark); margin-bottom: 0.1rem; }
.author-info span { font-size: 0.75rem; color: var(--gray); }

/* ── CTA Banner ─────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 1.3rem;
  font-family: var(--font-main);
  font-weight: 700;
  transition: var(--transition);
}
.cta-phone:hover { color: var(--white); }

/* ── Contact Page ─────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(91,45,142,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.25rem; }
.contact-detail a, .contact-detail p { font-size: 0.95rem; margin: 0; color: var(--dark); }
.contact-detail a:hover { color: var(--purple); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,0.15);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-dark); margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(91,45,142,0.1); }
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }
.map-wrap { margin-top: 3rem; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; display: block; border: 0; }

/* ── Service Inner Page ─────────────── */
.service-hero {
  padding-top: 80px;
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}
.service-hero-bg { position: absolute; inset: 0; }
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,26,110,0.85) 0%, rgba(61,26,110,0.4) 60%, transparent 100%);
}
.service-hero-content { position: relative; z-index: 2; color: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.service-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.service-hero p { color: rgba(255,255,255,0.85); max-width: 600px; }

.service-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.service-info h2 { margin-bottom: 1rem; }
.service-info h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; color: var(--purple); }
.service-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.service-benefit { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: #4B5563; }
.service-benefit::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.service-sidebar {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.2);
  position: sticky;
  top: 100px;
}
.service-sidebar h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--purple-dark); }
.price-table { margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(201,169,110,0.2); font-size: 0.88rem; }
.price-row:last-child { border-bottom: none; }
.price-duration { color: var(--gray); }
.price-amount { font-weight: 700; color: var(--purple); font-family: var(--font-main); font-size: 1rem; }

/* ── About Page ─────────────────────── */
.page-hero {
  padding-top: 80px;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  text-align: center;
  color: var(--white);
  padding-top: 120px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ── Footer ─────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.85rem; margin: 1rem 0 1.5rem; line-height: 1.8; }
.footer-logo { font-family: var(--font-main); font-size: 1.8rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp Float ─────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  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);
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.8} 50%{transform:scale(1.1);opacity:0.3} }

/* ── Animations ─────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Gold Divider ─────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}
.gold-divider-left { margin-left: 0; }

/* ── Offers Page ─────────────────────── */
.offers-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.offer-detail-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}
.offer-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-detail-img { aspect-ratio: 16/9; overflow: hidden; }
.offer-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.offer-detail-card:hover .offer-detail-img img { transform: scale(1.05); }
.offer-detail-body { padding: 2rem; }
.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.offer-detail-body h3 { margin-bottom: 0.75rem; }
.offer-detail-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.25rem; }
.offer-terms { font-size: 0.78rem; color: var(--gray); margin-top: 0.75rem; font-style: italic; }

/* ── Service Page Visual Redesign ─────────────────────── */
.service-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--purple);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.service-stat {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.service-stat:last-child { border-right: none; }
.service-stat-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.service-stat-num { font-family: var(--font-main); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.service-stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 0.2rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(91,45,142,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.benefit-card:hover { background: rgba(91,45,142,0.1); transform: translateX(4px); }
.benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.benefit-text h4 { font-size: 0.88rem; color: var(--purple-dark); margin-bottom: 0.15rem; font-family: var(--font-body); font-weight: 700; }
.benefit-text p { font-size: 0.78rem; color: var(--gray); margin: 0; line-height: 1.5; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--purple-light));
}
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,169,110,0.12);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.step-content h4 { font-size: 0.95rem; color: var(--purple-dark); margin-bottom: 0.2rem; }
.step-content p { font-size: 0.82rem; color: var(--gray); margin: 0; line-height: 1.5; }

.service-img-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.service-img-showcase img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 220px; }
.service-img-showcase .img-tall { height: 456px; grid-row: span 2; }

.service-book-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: var(--white);
  margin-top: 2rem;
}
.service-book-banner h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.3rem; }
.service-book-banner p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 1.25rem; }
.service-book-banner .btn-group { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.related-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: block;
}
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover img { transform: scale(1.06); }
.related-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(61,26,110,0.9), transparent);
  color: var(--white);
  padding: 1.25rem 1rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 1rem;
}

/* ── Dark Section (Deep Purple) ─────────── */
.section-dark {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.section-dark .section-tag { color: var(--gold-light); }
.section-dark .section-title { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .gold-divider { background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.3)); }
.section-dark .process-step {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.section-dark .step-num {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: rgba(255,255,255,0.2);
}
.section-dark .step-content h4 { color: var(--white); }
.section-dark .step-content p { color: rgba(255,255,255,0.7); }
.section-dark .process-steps::before { background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.2)); }

/* ── Benefits Grid 3-col (full-width sections) ── */
.benefits-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.section-alt .benefit-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* ── Process Grid 2-col (full-width, no connector line) ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large img { height: 220px; }
  .gallery-item img { height: 220px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .offers-grid, .testimonials-grid, .values-grid { grid-template-columns: 1fr; }
  .offers-page-grid { grid-template-columns: 1fr; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
  .footer-brand { display: block; }
  .footer-brand p { display: none; }
  .footer-col { display: none; }
  .footer-col:last-child { display: block; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-quick-stats { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .service-img-showcase { grid-template-columns: 1fr; }
  .service-img-showcase .img-tall { height: 220px; grid-row: auto; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-quick-stats { grid-template-columns: 1fr 1fr; }
  .benefits-grid-3 { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 0 0; }
  .footer-grid { gap: 1.25rem; padding-bottom: 1.5rem; }
  .footer-col h4 { margin-bottom: 0.75rem; }
  .footer-links { gap: 0.35rem; }
  .social-links { display: none; }
}
