/* Color Palette Variables */
:root {
    --primary-pink: #F6D7DC;
    --secondary-grey: #F4F4F4;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #B89528;
    --dark-bg: #0F0F0F;
    --card-dark: #181818;
    --cream-bg: #FAF7F5;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Setup */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .font-serif {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.fs-13 { font-size: 0.8125rem; }
.fs-14 { font-size: 0.875rem; }
.fs-15 { font-size: 0.9375rem; }
.fs-16 { font-size: 1rem; }
.tracking-1 { letter-spacing: 1.5px; }
.accent-gold { color: var(--accent-gold) !important; }
.bg-cream { background-color: var(--cream-bg); }
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-monogram {
    width: 70px;
    height: 70px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 0 auto;
}

.preloader-title {
    color: var(--white);
    letter-spacing: 4px;
    font-size: 12px;
    font-family: var(--font-heading);
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto;
    animation: preloaderPulse 1.5s infinite ease-in-out;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Announcement Bar & Header */
.top-announcement {
    background: var(--dark-bg);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.social-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
}

.social-icons a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--accent-gold);
}

/* Navbar */
.luxury-navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.brand-emblem {
    width: 42px;
    height: 42px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--white);
    display: block;
    line-height: 1;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: block;
}

.luxury-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}

.luxury-navbar .nav-link:hover, .luxury-navbar .nav-link.active {
    color: var(--accent-gold) !important;
}

/* Mega Menu */
.mega-menu-box {
    background: var(--card-dark) !important;
    border-top: 2px solid var(--accent-gold) !important;
    width: 100%;
}

.mega-heading {
    color: var(--accent-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
}

.mega-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.mega-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Buttons */
.btn-luxury-gold {
    background: var(--accent-gold);
    color: var(--dark-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-luxury-gold:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(212,175,55,0.25);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-dark-luxury {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

.btn-dark-luxury:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
}

.btn-whatsapp-luxury {
    background: #25D366;
    color: var(--white);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Section */
.hero-slider-section {
    height: 750px;
    position: relative;
    background: var(--dark-bg);
}

.slide-1 { background: url('images/aroma-massage.webp') center/cover no-repeat; }
.slide-2 { background: url('images/Deep-Tissue-Massage.webp') center/cover no-repeat; }
.slide-3 { background: url('images/Couple-Massage.webp') center/cover no-repeat; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.7) 0%, rgba(15,15,15,0.85) 100%);
}

.editorial-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.15;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    font-weight: 300;
}

/* Trust Bar */
.trust-bar {
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.counter-num {
    color: var(--accent-gold);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Asymmetric About Section */
.asymmetric-image-wrapper {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.img-frame-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-frame-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.glass-card-dark {
    background: rgba(24, 24, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    position: absolute;
    top: 20px;
    left: -20px;
}

.gold-accent-title {
    color: var(--accent-gold);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Section Common Styling */
.editorial-subtext {
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
}

.luxury-ornament-line {
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

/* Service Cards */
.luxury-service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.luxury-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-service-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15,15,15,0.8);
    color: var(--accent-gold);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.link-reserve {
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.link-reserve:hover {
    color: var(--accent-gold);
}

.quick-icons a {
    color: var(--text-dark);
    margin-left: 10px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.quick-icons a.wa-icon:hover { color: #25D366; }
.quick-icons a.call-icon:hover { color: var(--accent-gold); }

/* Why Us Section */
.why-us-section {
    background: var(--dark-bg);
}

.feature-card-dark {
    background: var(--card-dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-card-dark:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 28px;
    color: var(--accent-gold);
}

/* How it Works Timeline */
.timeline-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.25);
    font-weight: bold;
    line-height: 1;
}

.timeline-step-card {
    padding: 20px;
}

/* Gallery */
.gallery-card {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Review Box */
.review-quote-box {
    background: var(--cream-bg);
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.2);
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
}

/* Form Styles */
.glass-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
}

.booking-form-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.luxury-input {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
}

.luxury-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* CTA Banner */
.cta-luxury-banner {
    background: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.85)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

/* Footer */
.luxury-footer {
    background: var(--dark-bg);
}

.footer-heading {
    color: var(--accent-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 10px;
}

.footer-menu a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.social-circle-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-circle-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Floating Action Buttons */
.float-btn {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    border: none;
}

.float-wa { bottom: 90px; right: 20px; background: #25D366; }
.float-call { bottom: 148px; right: 20px; background: var(--dark-bg); border: 1px solid var(--accent-gold); }
.float-top { bottom: 30px; right: 20px; background: var(--accent-gold); color: var(--dark-bg); display: none; }

.float-btn:hover { transform: scale(1.1); color: var(--white); }

/* Mobile Sticky Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    z-index: 9990;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
}

.btn-gold-sm {
    background: var(--accent-gold);
    color: var(--dark-bg);
    font-weight: 600;
}


/* Journey Section Styles */
.journey-section {
  background-color: #0b0b0c; /* Matches your luxury dark background */
  padding: 6rem 1.5rem;
  color: #f2f2f4;
  position: relative;
  overflow: hidden;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.journey-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  margin: 0 auto;
}

/* Steps Grid & Connection Line */
.steps-wrapper {
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(197, 160, 89, 0.1) 0%, 
    rgba(197, 160, 89, 0.6) 50%, 
    rgba(197, 160, 89, 0.1) 100%
  );
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Step Card Styling */
.step-card {
  background: rgba(20, 20, 22, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(29, 29, 33, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 160, 89, 0.1);
}

.step-number-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0b0b0c;
  border: 1px solid #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.step-card:hover .step-number-wrapper {
  background: #c5a059;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c5a059;
}

.step-card:hover .step-number {
  color: #0b0b0c;
}

.step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .steps-connector {
    display: none; /* Hide line on tablet/mobile for cleaner layout */
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}


/* Services Section Container */
.services-section {
  background-color: #0b0b0c;
  padding: 6rem 1.5rem;
  color: #f2f2f4;
}

.services-container {
  max-width: 1240px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Card Container */
.service-card {
  background: #141416;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.15);
}

/* Image Wrapper */
.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #c5a059;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Body */
.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* Card Footer & Action Buttons */
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.reserve-btn {
  color: #c5a059;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.reserve-btn:hover {
  color: #e5c378;
  letter-spacing: 2px;
}

/* Styled Action Icons (SVG) */
.card-action-icons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* WhatsApp Icon Styling */
.wa-icon {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.wa-icon:hover {
  background: #25d366;
  color: #000000;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
  transform: scale(1.1);
}

/* Call Icon Styling */
.call-icon {
  color: #c5a059;
  border-color: rgba(197, 160, 89, 0.3);
}

.call-icon:hover {
  background: #c5a059;
  color: #000000;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
  transform: scale(1.1);
}


/* Gallery Section Base */
.gallery-section {
  background-color: #0b0b0c;
  padding: 6rem 1.5rem;
  color: #f2f2f4;
}

.gallery-container {
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  margin: 0 auto;
}

/* Category Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: #a1a1aa;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c5a059;
  color: #0b0b0c;
  border-color: #c5a059;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

/* Dynamic Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  cursor: pointer;
  background: #141416;
}

/* Spans 2 columns on desktop for visual variation */
.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay & Text Details */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.9) 0%, rgba(11, 11, 12, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  color: #c5a059;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.3rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-item:hover .gallery-tag,
.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================== HEADER & MEGA MENU CSS ==================== */
.main-header {
  background-color: #0b0b0c;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #e4e4e7;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #c5a059;
}

.chevron-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.has-megamenu:hover .chevron-icon {
  transform: rotate(180deg);
}

.has-megamenu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #141416;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  border-bottom: 2px solid #c5a059;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.mega-col.featured-col {
  background: rgba(197, 160, 89, 0.05);
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.badge-subtitle {
  color: #c5a059;
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.mega-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0.3rem 0;
}

.mega-desc {
  color: #a1a1aa;
  font-size: 0.825rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.mega-cta {
  color: #c5a059;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-col-title {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.4rem;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 0.6rem;
}

.mega-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.mega-links a:hover {
  color: #c5a059;
  padding-left: 4px;
}

.header-btn {
  background: #c5a059;
  color: #0b0b0c;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-btn:hover {
  background: #e5c378;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: #c5a059;
}

/* ==================== GOOGLE REVIEWS SECTION CSS ==================== */
.reviews-section {
  background-color: #0b0b0c;
  padding: 5rem 1.5rem;
  color: #ffffff;
}

.reviews-container {
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.google-badge-container {
  display: flex;
  justify-content: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.rating-score {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.stars-gold {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.rating-count {
  color: #a1a1aa;
  font-size: 0.8rem;
}

/* Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: #141416;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.4);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c5a059, #8c6d33);
  color: #0b0b0c;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #ffffff;
}

.verified-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 500;
}

.verified-tag svg {
  width: 12px;
  height: 12px;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-text {
  color: #d1d1d6;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.reviews-footer {
  text-align: center;
}

.google-review-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.google-review-btn:hover {
  background: #c5a059;
  color: #0b0b0c;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .mobile-toggle {
    display: flex;
  }
}


/* FAQ SECTION STYLES */
.faq-section {
  background-color: #0b0b0c;
  padding: 6rem 1.5rem;
  color: #ffffff;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Accordion Box */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #141416;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: #c5a059;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #c5a059;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: #c5a059;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: #a1a1aa;
  font-size: 0.925rem;
  line-height: 1.7;
  margin: 0;
}

/* Base Header */
.main-header {
  background-color: #0b0b0c;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo { display: flex; align-items: center; }
.site-logo { height: 50px; width: auto; object-fit: contain; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #e4e4e7;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chevron-icon { width: 14px; height: 14px; transition: transform 0.3s; }
.mobile-only-btn { display: none; }
.mobile-toggle { display: none; }

/* Desktop Mega Menu */
@media (min-width: 993px) {
  .has-megamenu { position: static; }
  .has-megamenu:hover .chevron-icon { transform: rotate(180deg); }
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #141416;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 2px solid #c5a059;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-menu-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
  }
}

/* ==================== MOBILE & TABLET STYLES ==================== */
@media (max-width: 992px) {
  .desktop-only-btn { display: none; }
  .mobile-only-btn { display: block; margin-top: 1rem; width: 100%; text-align: center; }

  /* Mobile Toggle Hamburger */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

  .mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #c5a059;
    transition: all 0.3s ease;
  }

  /* Animated X State for Hamburger */
  .mobile-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .mobile-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .mobile-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Mobile Slide-down Drawer */
  .nav-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: #0b0b0c;
    transition: left 0.35s ease-in-out;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-menu.is-active { left: 0; }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; font-size: 0.95rem; }

  /* Mobile Accordion Dropdown for Mega Menu */
  .mega-menu {
    display: none;
    background: #141416;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
  }

  .has-megamenu.open .mega-menu { display: block; }
  .has-megamenu.open .chevron-icon { transform: rotate(180deg); }

  .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}



/* ==================== HERO & BREADCRUMB SECTION ==================== */
.page-hero {
  background-color: #000000; /* Solid Black Background */
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  
  /* Prevents content from overlapping under sticky header */
  padding-top: 70px; 
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  position: relative;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  width: 100%;
}

/* Breadcrumb Styling */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb-item {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #a1a1aa;
  display: flex;
  align-items: center;
}

/* Separator Chevron between Links */
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #c5a059;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.breadcrumb-item a {
  color: #c5a059;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e5c378;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #e4e4e7;
}

/* Hero Headings */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

.page-subtitle {
  color: #a1a1aa;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ==================== MOBILE RESPONSIVENESS ==================== */
@media (max-width: 768px) {
  .page-hero {
    /* Auto height on mobile ensures titles fit comfortably without overflow */
    height: auto; 
    min-height: 280px;
    padding-top: 85px; /* Extra clearance for mobile header height */
    padding-bottom: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 0.85rem;
  }

  .breadcrumb-item {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}


/* ==================== COMMON STYLES ==================== */
.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* ==================== ABOUT US SECTION ==================== */
.about-service-section {
  background-color: #0b0b0c;
  padding: 4rem 1.5rem 5rem 1.5rem;
  color: #ffffff;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Col-12 Full Width Image Wrapper */
.about-image-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-banner-img {
  transform: scale(1.03);
}

.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.about-description p {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* Buttons */
.about-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-call {
  background: #c5a059;
  color: #0b0b0c;
}

.btn-call:hover {
  background: #e5c378;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}


/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: #141416;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #c5a059;
  margin: 0.75rem auto 0 auto;
}

/* Benefits Grid (3-Columns) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: #0b0b0c;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #c5a059;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Feature 7th item centers on full desktop view */
.benefit-card-featured {
  grid-column: 2 / span 1;
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5a059;
  margin-bottom: 1.25rem;
}

.flaticon-svg {
  width: 24px;
  height: 24px;
}

.benefit-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.benefit-card-desc {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-image-wrapper {
    height: 250px;
  }
  .about-heading, .benefits-title {
    font-size: 2.2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card-featured {
    grid-column: span 1;
  }
}

/* ==================== LOCAL RETREAT SECTION ==================== */
.local-retreat-section {
  background-color: #0b0b0c;
  padding: 5rem 1.5rem;
  color: #ffffff;
}

.retreat-container {
  max-width: 1000px;
  margin: 0 auto;
}

.retreat-card {
  background: linear-gradient(145deg, #141416 0%, #0d0d0f 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.retreat-emblem {
  margin-bottom: 1rem;
}

.emblem-img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.retreat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.retreat-description {
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.retreat-description p {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.retreat-description .highlight-text {
  color: #e4e4e7;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Feature Badges */
.retreat-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(197, 160, 89, 0.2);
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #c5a059;
}

/* Buttons */
.retreat-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: #c5a059;
  color: #0b0b0c;
}

.btn-gold:hover {
  background: #e5c378;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  border: 1px solid #c5a059;
  color: #c5a059;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(197, 160, 89, 0.1);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .retreat-card {
    padding: 2.5rem 1.25rem;
  }
  .retreat-title {
    font-size: 2rem;
  }
  .retreat-description p {
    font-size: 0.95rem;
  }
  .retreat-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}


.retreat-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(197, 160, 89, 0.2);
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 0.5rem 1.25rem 0.5rem 0.65rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #e4e4e7;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #c5a059;
  background: rgba(197, 160, 89, 0.15);
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c5a059;
  color: #0b0b0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flaticon-svg {
  width: 16px;
  height: 16px;
}


/* ==================== ELEGANT ABOUT SECTION ==================== */
.about-hero-section {
  background-color: #0b0b0c;
  padding: 6rem 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-hero-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

/* ==================== LEFT COLUMN (35%) ==================== */
.about-image-col {
  flex: 0 0 35%;
  max-width: 35%;
  position: relative;
}

.image-frame-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(197, 160, 89, 0.15);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-frame-wrapper:hover {
  transform: translateY(-8px);
  border-color: #c5a059;
}

.about-hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.image-frame-wrapper:hover .about-hero-img {
  transform: scale(1.05);
}

.image-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11,11,12,0) 60%, rgba(11,11,12,0.85) 100%);
  pointer-events: none;
}

/* Floating Badge */
.experience-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c5a059;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: #d4d4d8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==================== RIGHT COLUMN (65%) ==================== */
.about-content-col {
  flex: 0 0 65%;
  max-width: 65%;
}

.section-tag-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.gold-dot {
  width: 6px;
  height: 6px;
  background-color: #c5a059;
  border-radius: 50%;
  box-shadow: 0 0 8px #c5a059;
}

.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-lead-text {
  font-size: 1.05rem;
  color: #e4e4e7;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-body-text {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

/* Highlight Box */
.highlight-feature-box {
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.1) 0%, rgba(20, 20, 22, 0.4) 100%);
  border-left: 3px solid #c5a059;
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.feature-icon {
  font-size: 1.25rem;
}

.feature-text strong {
  color: #ffffff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Checklist */
.luxury-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.luxury-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d4d4d8;
  font-size: 0.9rem;
}

.check-icon {
  color: #c5a059;
  font-weight: bold;
}

/* Vision Blockquote */
.vision-quote {
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem 0;
  color: #e4e4e7;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.quote-title {
  display: block;
  font-style: normal;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #c5a059;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* CTA Buttons */
.about-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold-shine {
  background: linear-gradient(135deg, #c5a059 0%, #e5c378 100%);
  color: #0b0b0c;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.btn-gold-shine:hover {
  box-shadow: 0 6px 22px rgba(197, 160, 89, 0.45);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 1px solid #c5a059;
  color: #c5a059;
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(197, 160, 89, 0.1);
  color: #ffffff;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
  .about-hero-container {
    flex-direction: column;
    gap: 3rem;
  }
  .about-image-col, .about-content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-hero-img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 4rem 1.25rem;
  }
  .about-main-title {
    font-size: 2.2rem;
  }
  .about-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}


/* Add top padding to your Hero / Top CTA section */
.page-hero, 
.cta-section {
  /* Gives exact clearance for fixed headers (~80px - 100px) */
  padding-top: 120px !important; 
  padding-bottom: 5rem;
}

/* Ensure proper clearance above the footer */
footer {
  margin-top: 3rem !important; /* Forces vertical separation above footer */
  position: relative;
  z-index: 10;
}

/* Ensure section above footer doesn't overflow */
section:last-of-type {
  margin-bottom: 2rem;
  padding-bottom: 4rem;
}


/* ==================== GLOBAL UTILITIES ==================== */
.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #c5a059;
  margin: 0.75rem auto 0 auto;
}

.flaticon-svg {
  width: 24px;
  height: 24px;
}

/* ==================== IDEAL FOR SECTION ==================== */
.ideal-for-section {
  background-color: #0b0b0c;
  padding: 5rem 1.5rem;
  color: #ffffff;
}

.ideal-container, .benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ideal-header, .benefits-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ideal-title, .benefits-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* Ideal Grid (5 Cards Flex/Grid Layout) */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ideal-card {
  background: #141416;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.ideal-card:hover {
  transform: translateY(-5px);
  border-color: #c5a059;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.ideal-icon-wrapper, .benefit-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5a059;
  margin: 0 auto 1.25rem auto;
}

.ideal-card-title, .benefit-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ideal-card-desc, .benefit-card-desc {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: #141416;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: #0b0b0c;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #c5a059;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
  .ideal-grid, .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ideal-title, .benefits-title {
    font-size: 2.2rem;
  }
  .ideal-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== LOCAL SERVICE AREAS SECTION ==================== */
.service-areas-section {
  background-color: #fff;
  padding: 5rem 1.5rem;
  color: #ffffff;
}

.areas-container {
  max-width: 1100px;
  margin: 0 auto;
}

.areas-card {
  background: linear-gradient(145deg, #141416 0%, #0d0d0f 100%);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.areas-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.areas-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #c5a059;
  margin: 0.75rem auto 1.25rem auto;
}

.areas-description {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* Locations Grid */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #e4e4e7;
  transition: all 0.3s ease;
}

.location-chip:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: #c5a059;
  transform: translateY(-2px);
  color: #ffffff;
}

.location-chip.highlight-chip {
  background: rgba(197, 160, 89, 0.15);
  border-color: rgba(197, 160, 89, 0.4);
  color: #c5a059;
  font-weight: 600;
}

.location-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c5a059;
  color: #0b0b0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flaticon-svg {
  width: 14px;
  height: 14px;
}

/* Bottom Call to Action */
.areas-cta {
  text-align: center;
  border-top: 1px dashed rgba(197, 160, 89, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-text {
  color: #d4d4d8;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold {
  background: #c5a059;
  color: #0b0b0c;
}

.btn-gold:hover {
  background: #e5c378;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
  .areas-card {
    padding: 2.5rem 1.25rem;
  }
  .areas-title {
    font-size: 2rem;
  }
  .locations-grid {
    gap: 0.75rem;
  }
  .location-chip {
    width: 100%;
    justify-content: center;
  }
}


/* ==================== PACKAGES SECTION BASE ==================== */
.packages-section {
  background-color: #0b0b0c;
  padding: 4rem 1.5rem;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.packages-section.alt-bg {
  background-color: #080809;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #c5a059;
  letter-spacing: 1px;
  margin: 0;
}

.section-title span {
  color: #ffffff;
  font-weight: 300;
}

.gold-divider {
  width: 50px;
  height: 1px;
  background-color: #c5a059;
  margin: 0.75rem auto 0 auto;
}

/* Common Card Base */
.pkg-card {
  background: #131316;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
}

.pkg-card:hover {
  border-color: #c5a059;
}

.pkg-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

.pkg-desc {
  color: #9ea0a5;
  font-size: 0.825rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

/* Price Box Pill Design */
.price-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 65px;
}

.price-box .time {
  font-size: 0.65rem;
  color: #a1a1aa;
  font-weight: 500;
  margin-bottom: 2px;
}

.price-box .cost {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c5a059;
}

/* Grid Layout (Signature Massages) */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}

/* Horizontal Stack Layout (Full Body, Body Treatments, Packages) */
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.horizontal-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.horizontal-card .card-info {
  flex: 1;
}

.horizontal-card .pkg-name {
  margin-bottom: 0.35rem;
}

.horizontal-card .price-options {
  flex-shrink: 0;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .horizontal-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
}


/* ==================== SPA MENU / PRICE PACKAGES SECTION ==================== */
.spa-menu-section {
  background-color: #0b0b0c;
  padding: 5rem 1.5rem;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.spa-menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.menu-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: #c5a059;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.menu-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #c5a059;
  margin: 0.75rem auto 1rem auto;
}

.menu-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* 3-Column Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

/* Column Wrapper */
.menu-column {
  background: #141416;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s ease;
}

.menu-column:hover {
  border-color: rgba(197, 160, 89, 0.4);
}

.menu-column.highlight-column {
  border-color: rgba(197, 160, 89, 0.45);
  background: linear-gradient(180deg, #18181b 0%, #121214 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.column-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
}

.column-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  color: #c5a059;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.column-subtitle {
  color: #8e8e93;
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
}

/* Service Item Cards */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(197, 160, 89, 0.04);
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-2px);
}

.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

/* Rates & Durations Pills */
.duration-rates {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rate-badge {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
  transition: border-color 0.2s ease;
}

.service-card:hover .rate-badge {
  border-color: rgba(197, 160, 89, 0.5);
}

.rate-badge .dur {
  font-size: 0.65rem;
  color: #a1a1aa;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.rate-badge .price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c5a059;
  margin-top: 2px;
}

/* Combo Package Specialty Card */
.combo-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.combo-card .service-name {
  margin-bottom: 0.25rem;
}

.combo-details {
  font-size: 0.68rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.highlight-badge {
  background: rgba(197, 160, 89, 0.15);
  border-color: #c5a059;
  min-width: 75px;
  flex-shrink: 0;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .spa-menu-section {
    padding: 3.5rem 1rem;
  }
  .menu-title {
    font-size: 2.1rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .combo-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .highlight-badge {
    width: 100%;
  }
}


/* Brand Logo Styling */
.brand-logo-img {
  height: 50px; /* Adjust height according to your preference */
  width: auto;  /* Maintains aspect ratio */
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Optional hover effect */
.brand-logo-link:hover .brand-logo-img {
  opacity: 0.9;
}