/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --bg-dark: #0F1012;
  --bg-dark-light: #161719;
  --bg-light: #F4F5F6;
  --bg-white: #FFFFFF;

  --color-gold: #C5A880;
  --color-gold-hover: #A88E64;
  --color-gold-light: #F4EFE6;

  --text-dark: #1A1C1E;
  --text-dark-muted: #5F6368;
  --text-light: #F7F8F9;
  --text-light-muted: #9AA0A6;

  --border-light: #E1E3E6;
  --border-dark: #2C2D30;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-card: 16px;
  --radius-btn: 8px;
  --spacing: 0.25rem;

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography helper classes */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

p {
  font-weight: 300;
}

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

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gap-8 {
  gap: calc(var(--spacing) * 8);
  /* 2rem gap spacing */
  justify-content: center;
  align-items: center;
}

.section-padding {
  padding: 6rem 0;
}

/* =============================================
   ANIMATIONS — Hero Entrance & Scroll Reveal
   ============================================= */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero text staggered entrance */
.hero-anim-tagline {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
  animation-delay: 0.2s;
}

.hero-anim-title {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.55s;
}

.hero-anim-desc {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.95s;
}

.hero-anim-actions {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 1.2s;
}

.hero-anim-stats {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 1.5s;
}

/* Scroll-reveal: sections start invisible */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When JS adds this class the section animates in */
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}



.bg-dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-light-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.bg-warm-sand {
  background-color: #F7F3EA;
  color: var(--text-dark);
}

/* Header & Sticky Nav */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.85);
  /* transparent white */
  backdrop-filter: blur(12px);
}

header.scrolled {
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  /* Compact height for the round icon */
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a231d;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-family: 'Aptos', sans-serif;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #4D907E;
  margin-top: 0.08rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #2E4D44;
  /* Match screenshot dark slate green */
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  /* Title Case */
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #0a231d;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #0a231d;
  /* Underline indicator in #0a231d */
  transition: var(--transition-smooth);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #2E4D44;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone:hover {
  color: #0a231d;
}

/* Custom rounded pill button inside header */
header .btn {
  border-radius: 50px !important;
  padding: 0.65rem 1.8rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

header .btn-gold {
  background-color: #D4B265 !important;
  color: #0a231d !important;
}

header .btn-gold:hover {
  background-color: #E6C577 !important;
  /* Slightly brighter gold */
  color: #0a231d !important;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  background-color: #0a231d;
  height: calc(100vh - var(--header-height));
  min-height: 720px;
  /* Increased to ensure everything stays inside background bounds */
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 35, 29, 0.9) 15%, rgba(10, 35, 29, 0.4) 60%, rgba(10, 35, 29, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: max(1.5rem, calc((100vw - var(--max-width)) / 2 - 120px)) !important;
}

.hero-tagline {
  font-family: var(--font-sans);
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: var(--color-gold);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-desc {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
}

.hero-actions .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
}

.hero-actions .btn-outline:hover {
  border-color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.hero-actions .btn-gold {
  background-color: #DFC07B !important;
  color: #000000 !important;
}

.hero-actions .btn-gold:hover {
  background-color: #ECD399 !important;
  /* Slightly brighter gold */
  color: #000000 !important;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  max-width: 500px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  z-index: 2;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  animation: scroll-anim 2s infinite ease-in-out;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(-100%);
  }

  80%,
  100% {
    transform: translateY(100%);
  }
}

/* Sections General Header */
.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-label {
  color: #3f8a76;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #c9a24b;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
}

.bg-dark-section .section-desc {
  color: var(--text-light-muted);
}

.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: flex-end;
}

.section-header-split .section-label {
  margin-bottom: 0.5rem;
}

.section-header-split .section-title {
  margin-bottom: 0;
  color: #0A231D;
}

.section-header-split .section-desc {
  max-width: 550px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
}

@media (max-width: 900px) {
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* USP Block */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.usp-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.usp-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #F5F3EE;
  /* soft cream background */
  color: #3f8a76;
  /* Mint teal icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.usp-icon svg {
  width: 22px;
  height: 22px;
}

.usp-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.usp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A231D;
  /* Deep forest green */
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.usp-card p {
  color: #5F6368;
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Treatment Grid & Cards */
.treatments-grid {
  margin-bottom: 3rem;
}

.treatment-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(197, 168, 128, 0.4);
}

.treatment-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.treatment-card:hover .treatment-img-wrap img {
  transform: scale(1.05);
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  width: 100%;
}

.meta-type {
  color: #6fb6a4;
  /* Soft pastel teal for category tag */
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.meta-duration {
  color: #8A928F;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.treatment-info {
  padding: 1.5rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #0A231D;
  /* Deep forest green */
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.treatment-card p {
  color: #5F6368;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.treatment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 0;
  margin-top: auto;
}

.treatment-price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #0A231D;
  font-size: 0.95rem;
}

.treatment-link {
  color: #3f8a76;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.treatment-link:hover {
  color: #8ed1bd;
}

.treatments-section-btn {
  background-color: #0A231D !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  padding: 0.75rem 2.2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth) !important;
  border: none !important;
}

.treatments-section-btn:hover {
  background-color: #3f8a76 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Unified Jodhpur & FAQ Section */
.jodhpur-faq-unified {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.jodhpur-faq-unified::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 35, 29, 0.9) 15%, rgba(10, 35, 29, 0.8) 60%, rgba(10, 35, 29, 0.65) 100%);
  z-index: 1;
}

.jodhpur-faq-unified .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.unified-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-family: var(--font-serif);
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.unified-title .highlight-italic {
  font-style: italic;
  color: #e6cb8c;
  /* --gold-soft */
  font-weight: 400;
}

.unified-desc {
  color: #FFFFFF;
  /* High contrast white description */
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.unified-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
  margin-bottom: 2.75rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #FFFFFF;
  /* High contrast white for point items */
  font-size: 0.92rem;
  font-weight: 500;
}

.point-icon {
  flex-shrink: 0;
}

.btn-gold-soft-pill {
  background-color: #e6cb8c !important;
  /* --gold-soft */
  color: #0a231d !important;
  border-radius: 50px !important;
  padding: 0.75rem 2.2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth) !important;
  border: none !important;
}

.btn-gold-soft-pill:hover {
  background-color: #f5dfae !important;
  transform: translateY(-2px);
}

.faq-glass-card {
  background-color: rgba(10, 35, 29, 0.65);
  /* #0A231D dark green glass background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}

.faq-glass-title {
  font-family: var(--font-serif);
  color: #e6cb8c;
  /* --gold-soft */
  font-size: 1.35rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.faq-glass-list {
  display: flex;
  flex-direction: column;
}

.faq-glass-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.faq-glass-item:first-child {
  padding-top: 0;
}

.faq-glass-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-glass-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-glass-question h4 {
  font-family: var(--font-sans);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.faq-glass-toggle {
  color: #e6cb8c;
  /* --gold-soft */
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.faq-glass-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-glass-item.active .faq-glass-answer {
  max-height: 140px;
  margin-top: 0.75rem;
  opacity: 1;
}

.faq-glass-item.active .faq-glass-question h4 {
  color: #e6cb8c;
}

.faq-glass-answer p {
  color: #E5ECE9;
  /* High contrast soft white/teal for readable answer text */
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .jodhpur-faq-unified .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .faq-glass-card {
    padding: 2rem;
  }
}


/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.stars span {
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.15rem !important;
  line-height: 1.55 !important;
  color: #0A231D !important;
  font-style: italic !important;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.author-origin {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Blog Previews */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Hover transition */
}

.blog-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img img {
  transform: scale(1.03);
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #3f8a76; /* Changed category tag color to #3f8a76 */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: var(--transition-smooth);
}

.blog-card h3:hover,
.blog-card:hover h3 {
  color: #3f8a76;
  /* Highlight title to jade-deep on hover */
}

.blog-card p {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-top: auto;
  transition: var(--transition-smooth);
}

.blog-readmore:hover,
.blog-card:hover .blog-readmore {
  color: #3f8a76;
  /* Highlight read more to jade-deep on hover */
}

/* All Articles link */
.blog-all-articles-wrap {
  text-align: center;
  margin-top: 3rem;
}

.blog-all-articles-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3f8a76;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.blog-all-articles-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #3f8a76;
  transform: scaleX(1);
  transition: background 0.3s ease;
}

.blog-all-articles-link:hover {
  color: #8ba39a;
}

.blog-all-articles-link:hover::after {
  background: #8ba39a;
}

/* Jodhpur CTA Card */
.jodhpur-cta-section {
  padding: 4rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.jodhpur-cta-card {
  width: 100%;
  background: linear-gradient(135deg, #0a231d 0%, #1a4a38 50%, #2d7a5e 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jodhpur-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(111, 182, 164, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* "BOOK NOW" label with lines */
.jodhpur-cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a24b;
  margin-bottom: 1.25rem;
}

.jodhpur-cta-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a24b;
}

/* Heading */
.jodhpur-cta-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.jodhpur-cta-heading em {
  font-style: italic;
  color: #c9a24b;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
}

/* Subtitle */
.jodhpur-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons row */
.jodhpur-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.jcta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jcta-btn-gold {
  background: #c9a24b;
  color: #0a231d;
  border: 2px solid #c9a24b;
}

.jcta-btn-gold:hover {
  background: #e6cb8c;
  border-color: #e6cb8c;
  transform: translateY(-2px);
}

.jcta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.jcta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Footer styling */
footer {
  background: linear-gradient(135deg, #0a231d 0%, #1a4a38 55%, #2d7a5e 100%);
  color: var(--text-light);
  border-top: none;
  padding: 5rem 0 2rem 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(111, 182, 164, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
}

.footer-about .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-about .footer-logo span {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid #c9a24b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a24b;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #c9a24b;
  color: #0a231d;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Contact items with icons */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #c9a24b;
  display: flex;
  align-items: center;
}

.footer-contact-item p,
.footer-phone-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  line-height: 1.6;
}

.footer-phone-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* Page Sub-Heros */
.page-hero {
  background-color: var(--bg-light);
  padding: 8rem 0 4rem 0;
  text-align: left;
}

.page-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero .hero-tagline {
  margin-bottom: 0.5rem;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  max-width: 700px;
}

/* About Commitments Card Grid */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.commitment-card {
  border: 1.5px solid transparent;
  background-color: #F7F4EB;
  padding: 2.5rem 1.8rem;
  border-radius: var(--radius-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.commitment-card:hover {
  border-color: #DFC07B;
  /* Golden color border line on hover */
  background-color: #F7F4EB;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(10, 35, 29, 0.05);
}

.commitment-card .usp-icon {
  background-color: #DFC07B;
  color: #0A231D;
  margin-bottom: 1.5rem;
}

.commitment-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: #0A231D;
  margin-bottom: 0.75rem;
}

.commitment-card p {
  color: #2E4D44;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 600px) {
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Treatments Index styling */
.treatments-section-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.treatments-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
}

.treatments-category-wrap {
  margin-bottom: 4rem;
}

/* Details and Summary tags (fallback or standalone styled accordion) */
.treatment-faqs details {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.treatment-faqs summary {
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.treatment-faqs summary::-webkit-details-marker {
  display: none;
}

.treatment-faqs summary::after {
  content: '+';
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.treatment-faqs details[open] summary::after {
  content: '−';
  transform: rotate(90deg);
}

.treatment-faqs details p {
  padding-top: 1rem;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

/* Contact Page Form styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

.booking-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.booking-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.booking-card p {
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

/* ── Visit Us Dark-Green Card ── */
.visit-us-card {
  background: linear-gradient(135deg, #1b3d2f 0%, #0e2419 55%, #163326 100%);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  box-shadow: 0 12px 40px rgba(10, 30, 18, 0.35);
}

.visit-us-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #c9a96e;
  margin-bottom: 1.8rem;
  border: none !important;
  padding: 0 !important;
}

.visit-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-us-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.visit-us-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  margin-top: 0.05rem;
}

.visit-us-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.visit-us-link:hover {
  color: #c9a96e;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 3rem;
}

.contact-details-list li {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.contact-detail-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}

.hours-grid div:nth-child(odd) {
  font-weight: 500;
  color: var(--text-dark);
}

/* Gallery Grid Styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Single Treatment Layout */
.treatment-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

.treatment-detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.session-steps {
  list-style: none;
  margin-top: 2rem;
}

.session-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-gold-light);
  color: var(--color-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-details h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-details p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.benefits-box {
  background-color: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.benefits-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.benefits-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
}

.booking-alert-box {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.booking-alert-box h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.booking-alert-box p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

/* Golden styling for "Book This Treatment" button in sidebar */
.booking-alert-box .btn-gold,
.booking-alert-box .btn.btn-gold {
  background-color: #c9a96e !important;
  border-color: #c9a96e !important;
  color: #1a1209 !important;
  font-weight: 700;
  position: relative;
  z-index: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.booking-alert-box .btn-gold::after,
.booking-alert-box .btn.btn-gold::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0);
  filter: blur(14px);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.booking-alert-box .btn-gold:hover,
.booking-alert-box .btn.btn-gold:hover {
  background-color: #e0c07e !important;
  border-color: #e0c07e !important;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.55) !important;
  transform: translateY(-2px);
}

.booking-alert-box .btn-gold:hover::after,
.booking-alert-box .btn.btn-gold:hover::after {
  background: rgba(201, 169, 110, 0.32);
}

/* Single Blog Layout */
.blog-detail-layout {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.blog-detail-content {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem 0;
}

.blog-detail-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.blog-inline-cta {
  background-color: var(--color-gold-light);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.blog-inline-cta h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.blog-inline-cta p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

/* Responsiveness (Media queries) */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .jodhpur-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .jodhpur-image {
    height: 360px;
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .treatment-detail-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  header .mobile-toggle span {
    background-color: var(--text-dark);
  }

  header .nav-menu .nav-link {
    color: var(--text-light-muted);
  }

  header .nav-menu .nav-link:hover,
  header .nav-menu .nav-link.active {
    color: var(--text-light);
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-right {
    display: none;
  }

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

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

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

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

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

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

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

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .pre-footer-cta {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ABOUT US PAGE HERO REDESIGN
   ============================================= */

.about-hero {
  background-color: #e1f1e7;
  padding: 8rem 0 6rem 0;
  overflow: visible;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-content .hero-tagline {
  color: #3f8a76;
  margin-bottom: 1.5rem;
}

.about-hero-content .hero-tagline::before {
  background-color: #3f8a76;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: #0A231D;
  margin-bottom: 2rem;
  line-height: 1.15;
  font-weight: 500;
}

.about-hero-desc-1,
.about-hero-desc-2 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #2E4D44;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.about-hero-desc-1 {
  font-weight: 500;
}

.about-hero-desc-2 {
  font-weight: 300;
}

.about-hero-actions {
  margin-top: 1rem;
}

.about-hero-actions .btn-dark {
  position: relative;
  z-index: 0;
  border: 2px solid transparent;
}

.about-hero-actions .btn-dark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  background: rgba(63, 138, 118, 0);
  filter: blur(14px);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.about-hero-actions .btn-dark:hover {
  background-color: #3f8a76 !important;
  border-color: #3f8a76 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(63, 138, 118, 0.42);
}

.about-hero-actions .btn-dark:hover::after {
  background: rgba(63, 138, 118, 0.35);
}

.about-hero-actions .btn-service-outline:hover {
  border-color: #3f8a76 !important;
  color: #3f8a76 !important;
  background-color: rgba(63, 138, 118, 0.08) !important;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #0A231D;
  color: #FFFFFF !important;
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-dark:hover {
  background-color: #1a4a38;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 35, 29, 0.15);
}

.about-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  object-fit: cover;
}

.hero-rating-badge {
  position: absolute;
  bottom: -20px;
  left: -35px;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 180px;
  z-index: 10;
}

.rating-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A231D;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.1rem;
}

.rating-star {
  color: #3f8a76;
}

.rating-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5F6368;
  line-height: 1.4;
}

/* Responsive Design for About Hero */
@media (max-width: 992px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: left;
  }

  .about-hero-content {
    align-items: flex-start;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-rating-badge {
    left: 15px;
    bottom: -15px;
  }
}

/* =============================================
   ABOUT US SANCTUARY (ROOTED IN JODHPUR) REDESIGN
   ============================================= */

.about-sanctuary {
  background-color: #0A231D;
  color: #FFFFFF;
}

.about-sanctuary .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-sanctuary-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-sanctuary-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-sanctuary-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-sanctuary-content .section-label {
  color: #DFC07B;
  margin-bottom: 1.5rem;
}

.about-sanctuary-content .section-label::before {
  background-color: #DFC07B;
}

.about-sanctuary-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 2rem;
  line-height: 1.25;
  font-weight: 500;
}

.about-sanctuary-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #B4C6C0;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 580px;
  font-weight: 300;
}

.about-sanctuary-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  width: 100%;
}

.about-sanctuary-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-sanctuary-stat-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: #DFC07B;
  line-height: 1.15;
}

.about-sanctuary-stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #B4C6C0;
  font-weight: 300;
  line-height: 1.35;
}

/* Responsive Design for Sanctuary Section */
@media (max-width: 992px) {
  .about-sanctuary .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-sanctuary-image-wrap {
    height: 380px;
    order: -1;
  }
}

/* =============================================
   ABOUT US FAQ SECTION REDESIGN
   ============================================= */

.about-faq-section {
  background-color: #F7F3EA;
  /* User-requested background */
  padding: 6rem 0;
}

.about-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-faq-header {
  margin-bottom: 3.5rem;
}

.about-faq-header .section-label {
  color: #3f8a76;
}

.about-faq-header .section-label::before {
  background-color: #c9a24b;
}

.about-faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #0A231D;
  margin-bottom: 1rem;
}

.about-faq-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #2E4D44;
  font-weight: 300;
}

.about-faq-list {
  display: flex;
  flex-direction: column;
}

.about-faq-item {
  border-bottom: 1px solid rgba(10, 35, 29, 0.1);
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.about-faq-item:first-child {
  border-top: 1px solid rgba(10, 35, 29, 0.1);
}

.about-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.about-faq-question h4 {
  font-family: var(--font-sans);
  color: #0A231D;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
  padding-right: 2rem;
  transition: var(--transition-smooth);
}

.about-faq-toggle {
  color: #c9a24b;
  font-size: 1.25rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.about-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.about-faq-answer p {
  color: #2E4D44;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 1rem;
  font-weight: 300;
}

.about-faq-item.active .about-faq-answer {
  opacity: 1;
}

.about-faq-item.active .about-faq-question h4 {
  color: #c9a24b;
}

/* =============================================
   TREATMENTS PAGE HERO REDESIGN
   ============================================= */

.treatments-hero {
  background-color: #F7F4EB;
  padding: 8rem 0 5rem 0;
}

.treatments-hero .hero-tagline {
  color: #3f8a76;
  margin-bottom: 0.75rem;
}

.treatments-hero .hero-tagline::before {
  background-color: #3f8a76;
}

.treatments-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: #0A231D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}

.treatments-hero-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #2E4D44;
  max-width: 720px;
  line-height: 1.6;
  font-weight: 300;
}

/* Golden hover border for Curated Packages */
.packages-grid .treatment-card {
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.packages-grid .treatment-card:hover {
  border-color: #DFC07B !important;
}

/* Membership Hero Redesign */
.membership-hero-section {
  background-color: #F7F4EB;
  padding: 8rem 0 5rem 0;
}

.membership-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.membership-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.membership-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8A928F;
  margin-bottom: 1.25rem;
}

.membership-breadcrumb a {
  color: #8A928F;
  text-decoration: none;
}

.membership-breadcrumb a:hover {
  color: #3f8a76;
}

.membership-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  color: #0A231D;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
}

.membership-tagline-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #3f8a76;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.membership-desc {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: #2E4D44;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

.membership-meta-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.membership-meta-badge {
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0A231D;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.membership-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.membership-btn-gold {
  background-color: #c9a24b;
  color: #0a231d;
  border: 2px solid #c9a24b;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.membership-btn-gold:hover {
  background-color: #e6cb8c;
  border-color: #e6cb8c;
  transform: translateY(-2px);
}

.membership-btn-outline {
  background-color: transparent;
  color: #0a231d;
  border: 2px solid #0a231d;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.membership-btn-outline:hover {
  background-color: rgba(10, 35, 29, 0.05);
  transform: translateY(-2px);
}

.membership-hero-right {
  display: flex;
  justify-content: center;
}

.membership-hero-image-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10, 35, 29, 0.1);
  height: 380px;
}

.membership-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .membership-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .membership-hero-image-wrap {
    height: 300px;
  }
}

/* =============================================
   MEMBERSHIP TIER CARDS — Silver / Gold / Diamond
   ============================================= */

.membership-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Outer wrapper — handles hover glow */
.membership-tier-card {
  position: relative;
  border-radius: 16px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  cursor: pointer;
}

.membership-tier-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: transparent;
  transition: background 0.35s ease, filter 0.35s ease;
  z-index: 0;
  pointer-events: none;
}

.membership-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(63, 138, 118, 0.22);
}

.membership-tier-card:hover::before {
  background: rgba(63, 138, 118, 0.12);
  filter: blur(12px);
}

/* Inner card content */
.tier-card-inner {
  position: relative;
  z-index: 1;
  background: #f9f8f5;
  border: 1px solid #e4e0d6;
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  transition: border-color 0.32s ease;
}

.membership-tier-card:hover .tier-card-inner {
  border-color: rgba(63, 138, 118, 0.45);
}

.featured-tier .tier-card-inner {
  background: #fff;
  border-color: #d8d8d8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-tier:hover .tier-card-inner {
  border-color: #3f8a76;
}

/* Header */
.tier-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tier-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1 1 100%;
}

.tier-card-tagline {
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  margin: 0;
  flex: 1 1 100%;
  line-height: 1.4;
}

.tier-popular-badge {
  display: inline-block;
  background: #c9a84c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  font-family: var(--font-sans);
}

/* Physical card visual */
.tier-card-visual {
  position: relative;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.tier-card-visual::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.silver-card-visual {
  background: linear-gradient(135deg, #2a3930 0%, #3a4f43 60%, #2c3e35 100%);
}

.gold-card-visual {
  background: linear-gradient(135deg, #1e3028 0%, #2e4f3a 60%, #1b3025 100%);
}

.diamond-card-visual {
  background: linear-gradient(135deg, #1a2826 0%, #243530 60%, #182420 100%);
}

.tier-card-logo {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.tier-card-customer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  font-style: italic;
}

.tier-card-number {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.tier-card-valid {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
}

.tier-card-label {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.tier-card-label span {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.75;
}

.silver-label {
  color: #b0c4bc;
}

.gold-label {
  color: #c9a84c;
}

.diamond-label {
  color: #89b4aa;
}

/* Stats grid */
.tier-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.8rem;
  border-top: 1px solid #e8e4db;
  border-bottom: 1px solid #e8e4db;
  padding: 0.8rem 0;
}

.tier-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a0998a;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.18rem;
}

.tier-stat-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.tier-stat-value.highlight {
  color: #3f8a76;
  font-weight: 700;
}

/* Benefits list */
.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.tier-benefits li {
  font-size: 0.84rem;
  color: var(--text-dark-muted);
  font-family: var(--font-sans);
  line-height: 1.4;
}

.tier-benefits li.highlight-benefit {
  color: #3f8a76;
  font-weight: 600;
}

/* CTA Buttons */
.tier-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  margin-top: auto;
}

.silver-cta {
  background: transparent;
  border: 1.5px solid #2a3930;
  color: #2a3930;
}

.silver-cta:hover {
  background: #3f8a76;
  border-color: #3f8a76;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(63, 138, 118, 0.3);
}

.gold-cta {
  background: transparent;
  border: 1.5px solid #2a3930;
  color: #2a3930;
}

.gold-cta:hover {
  background: #3f8a76;
  border-color: #3f8a76;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(63, 138, 118, 0.35);
}

.diamond-cta {
  background: transparent;
  border: 1.5px solid #2a3930;
  color: #2a3930;
}

.diamond-cta:hover {
  background: #3f8a76;
  border-color: #3f8a76;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(63, 138, 118, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .membership-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 3rem;
  }
}


/* =============================================
   SERVICE HERO — two-column layout (text + image)
   ============================================= */
.service-hero {
  background-color: #F7F4EB;
  padding: 8rem 0 5rem 0;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-hero-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8A928F;
  margin-bottom: 1.25rem;
}

.service-hero-breadcrumb a {
  color: #8A928F;
  text-decoration: none;
}

.service-hero-breadcrumb a:hover {
  color: #3f8a76;
}

.service-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #0A231D;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  font-weight: 500;
}

.service-hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: #3f8a76;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.service-hero-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #2E4D44;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.service-hero-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A231D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-book-treatment {
  position: relative;
  background-color: #3f8a76;
  color: #fff;
  border: 2px solid #3f8a76;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 0;
}

.btn-book-treatment::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  background: rgba(63, 138, 118, 0);
  filter: blur(14px);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.btn-book-treatment:hover {
  background-color: #52b39a;
  border-color: #52b39a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(63, 138, 118, 0.42);
}

.btn-book-treatment:hover::after {
  background: rgba(63, 138, 118, 0.35);
}

.btn-service-outline {
  background-color: transparent;
  color: #0a231d;
  border: 2px solid #0a231d;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-service-outline:hover {
  background-color: rgba(10, 35, 29, 0.05);
  transform: translateY(-2px);
}

.service-hero-right {
  display: flex;
  justify-content: center;
}

.service-hero-image-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10, 35, 29, 0.12);
  height: 380px;
}

.service-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-hero-image-wrap {
    height: 280px;
  }
}

/* =============================================
   GOLD TREATMENT BUTTONS (e.g. Cream Couple Massage)
   ============================================= */
.btn-gold-treatment {
  position: relative;
  background-color: #DFC07B !important; /* Golden color */
  color: #0A231D !important;
  border: 2px solid #DFC07B !important;
  border-radius: 50px !important;
  padding: 0.85rem 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
  z-index: 0;
}

.btn-gold-treatment::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  background: rgba(223, 192, 123, 0);
  filter: blur(14px);
  transition: background 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.btn-gold-treatment:hover {
  background-color: #ecd399 !important; /* Brighter gold */
  border-color: #ecd399 !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(223, 192, 123, 0.45) !important;
}

.btn-gold-treatment:hover::after {
  background: rgba(223, 192, 123, 0.35);
}

/* ── Contact Page Hero Centering & Cream Background ── */
.contact-page-hero {
  background-color: #F7F4EB !important;
  text-align: center;
  padding: 8rem 0 5rem 0;
}

.contact-page-hero .page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-hero .page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  color: #0A231D;
  margin-bottom: 1.5rem;
}

.contact-page-hero .page-hero-desc {
  margin: 0 auto;
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2E4D44;
  font-weight: 300;
}

.contact-page-hero .jodhpur-cta-label {
  color: #3f8a76 !important;
}

.contact-page-hero .jodhpur-cta-label-line {
  background: #3f8a76 !important;
}

/* ── Fade In Animations for Sub-Page Heroes ── */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero,
.service-hero,
.page-hero {
  animation: heroFadeInUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}