/*
 * Ocean Wave Wellness Centre - Custom Styling Sheet
 * Extends Bootstrap 5 with premium wellness/spa aesthetics.
 */

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

:root {
  /* Premium Design Tokens */
  --ocean-navy: #0f2042;
  --ocean-teal: #028090;
  --ocean-teal-light: #e0f2f1;
  --accent-violet: #605be5;
  --luxury-gold: #c5a880;
  --luxury-gold-dark: #b39268;
  --bg-cream: #faf7f2;
  --bg-white: #ffffff;
  --bg-dark: #070f1e;
  --text-dark: #2c3038;
  --text-muted: #6c757d;
  --text-light: #f4f5f7;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 32, 66, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Typography */
body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ocean-navy);
}

p, span, li, a, button, input, textarea {
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: var(--ocean-teal);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent-violet);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-gold-dark);
}

/* Quick Info Bar */
.quick-info-bar {
  background-color: var(--ocean-navy);
  font-size: 13px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  z-index: 1030;
  position: relative;
}
.quick-info-bar a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}
.quick-info-bar a:hover {
  color: var(--luxury-gold);
}
.quick-info-bar i {
  color: var(--luxury-gold);
  margin-right: 6px;
}

/* Sticky Header */
header.sticky-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1020;
  transition: var(--transition);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}
header.sticky-header.scrolled {
  box-shadow: var(--shadow-md);
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Custom Navigation Styles */
.navbar-brand svg {
  height: 48px;
  width: auto;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ocean-navy) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 16px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-violet) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--luxury-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Services Dropdown (Desktop hover, click fallback) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
  }
}
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) translateX(-50%);
  transition: all 0.3s ease;
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 24px !important;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 680px;
  max-width: 90vw;
  z-index: 1000;
}
.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--ocean-navy);
  padding: 10px 16px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-radius: 4px;
  display: block;
}
.dropdown-item:hover {
  background-color: var(--ocean-teal-light);
  color: var(--ocean-teal);
  padding-left: 20px;
}

/* Mobile dropdown spacing overrides */
@media (max-width: 991px) {
  .dropdown-menu {
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: 10px 15px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    display: none !important;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-menu .row {
    width: 100% !important;
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 8px;
  }
  .dropdown-menu .col-md-4 {
    width: 100% !important;
    padding: 0;
  }
  .dropdown-item {
    padding: 8px 10px;
  }
}

/* Mobile Nav Styles */
.navbar-toggler {
  border: none;
  padding: 5px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 18px;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ocean-navy);
  transition: var(--transition);
}
.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 8px; }
.navbar-toggler-icon::after { top: 16px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 180px 0 140px 0;
  color: var(--text-light);
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-section {
    padding: 240px 0 200px 0;
    background-attachment: fixed;
  }
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
.hero-subtitle {
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--luxury-gold);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Premium Buttons */
.btn-premium {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-premium-gold {
  background-color: var(--luxury-gold);
  color: var(--bg-dark);
  border: 1px solid var(--luxury-gold);
}
.btn-premium-gold:hover {
  background-color: transparent;
  color: var(--luxury-gold) !important;
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.4);
}
.btn-premium-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 1.5px solid var(--bg-white);
}
.btn-premium-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--ocean-navy) !important;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.btn-premium-navy {
  background-color: var(--ocean-navy);
  color: var(--bg-white);
  border: 1px solid var(--ocean-navy);
}
.btn-premium-navy:hover {
  background-color: transparent;
  color: var(--ocean-navy);
  box-shadow: 0 5px 15px rgba(15, 32, 66, 0.3);
}

/* Section Header styling */
.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--luxury-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ocean-navy);
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--luxury-gold);
}
.text-start .section-title::after {
  left: 0;
  transform: translateX(0);
}

/* Card Styling (Services, Blog) */
.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  margin: 0 auto;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--luxury-gold);
}
.service-card-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 66.66%; /* 3:2 Aspect Ratio */
  background-color: var(--bg-cream);
}
.service-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
}
.service-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ocean-navy);
  margin-bottom: 12px;
}
.service-card-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ocean-teal);
  transition: var(--transition);
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  background: none;
}
.btn-card-link i {
  margin-left: 6px;
  transition: var(--transition);
}
.btn-card-link:hover {
  color: var(--accent-violet);
}
.btn-card-link:hover i {
  transform: translateX(4px);
}

/* About Section highlights */
.about-features {
  margin-top: 30px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.about-feature-icon {
  background-color: var(--ocean-teal-light);
  color: var(--ocean-teal);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  border: 1px solid rgba(2, 128, 144, 0.2);
}
.about-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ocean-navy);
  margin-bottom: 4px;
}
.about-feature-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Testimonial / Review Section */
.testimonials-section {
  background-color: var(--bg-cream);
  position: relative;
}
.testimonial-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.1);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.4);
}
.testimonial-quote-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 32px;
  color: rgba(197, 168, 128, 0.2);
}
.testimonial-stars {
  color: #ffc107;
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 25px;
}
.testimonial-user {
  display: flex;
  align-items: center;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--luxury-gold);
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ocean-navy);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Call To Action Banner Promo */
.cta-promo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--text-light);
}
.cta-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 32, 66, 0.85);
}
.cta-promo-content {
  position: relative;
  z-index: 2;
}

/* Gallery Section & Page */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
}
.gallery-grid-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 32, 66, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--luxury-gold);
  color: var(--ocean-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: translateY(20px);
  transition: var(--transition);
}
.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-grid-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}
.gallery-grid-item:hover .gallery-grid-img {
  transform: scale(1.08);
}

/* Lightbox overlay modal styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 15, 30, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(197, 168, 128, 0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-light);
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  color: var(--luxury-gold);
}
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2010;
}
.lightbox-nav-btn:hover {
  background: var(--luxury-gold);
  color: var(--ocean-navy);
}
.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}
@media (max-width: 768px) {
  .lightbox-prev {
    left: -20px;
    background: rgba(7, 15, 30, 0.8);
  }
  .lightbox-next {
    right: -20px;
    background: rgba(7, 15, 30, 0.8);
  }
  .lightbox-close {
    top: -40px;
    right: 10px;
  }
}

/* Contact page styling */
.contact-info-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-info-icon {
  background-color: var(--ocean-teal-light);
  color: var(--ocean-teal);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 500;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ocean-navy);
  margin-bottom: 0;
}
.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 8px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 4px;
  background-color: var(--bg-cream);
  color: var(--text-dark);
}
.form-control:focus, .form-select:focus {
  border-color: var(--ocean-teal);
  box-shadow: 0 0 0 3px rgba(2, 128, 144, 0.1);
  background-color: var(--bg-white);
}
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ocean-navy);
  margin-bottom: 8px;
}

/* Map Wrapper */
.map-wrapper {
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Service Detail Page specific styling */
.service-header-banner {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
}
.service-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 32, 66, 0.8);
}
.service-header-content {
  position: relative;
  z-index: 2;
}
.service-detail-pricing-table {
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-pricing-table:hover {
  box-shadow: var(--shadow-md);
}
.pricing-header {
  background-color: var(--ocean-navy);
  color: var(--text-light);
  padding: 24px;
  text-align: center;
  position: relative;
}
.pricing-header.popular {
  background-color: var(--accent-violet);
}
.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--luxury-gold);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.pricing-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--luxury-gold);
}
.pricing-body {
  padding: 30px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.pricing-list li {
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
}
.pricing-list li i {
  color: var(--ocean-teal);
  margin-right: 12px;
  font-size: 16px;
}

/* Floating Widgets / Buttons */
.floating-widgets-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light) !important;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}
.floating-btn-whatsapp {
  background-color: #25d366;
}
.floating-btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.floating-btn-call {
  background-color: var(--ocean-teal);
}
.floating-btn-call:hover {
  box-shadow: 0 6px 20px rgba(2, 128, 144, 0.4);
}
.floating-btn-totop {
  background-color: var(--luxury-gold-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.floating-btn-totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-btn-totop:hover {
  background-color: var(--luxury-gold);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

/* Footer Section */
footer.site-footer {
  background-color: var(--bg-dark);
  color: #a0a6b5;
  font-size: 15px;
  border-top: 3px solid var(--luxury-gold);
}
.footer-top {
  padding: 80px 0 50px 0;
}
.footer-logo-wrapper svg {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--luxury-gold);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #a0a6b5;
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--luxury-gold);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--luxury-gold);
  margin-right: 12px;
  margin-top: 5px;
}
.footer-contact-text a {
  color: #a0a6b5;
}
.footer-contact-text a:hover {
  color: var(--luxury-gold);
}
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 15px;
}
.footer-social-btn:hover {
  background-color: var(--luxury-gold);
  color: var(--bg-dark) !important;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.footer-seo-paragraph {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(160, 166, 181, 0.6);
  margin-bottom: 20px;
}
.copyright-text {
  font-size: 14px;
  color: rgba(160, 166, 181, 0.5);
  margin-bottom: 0;
}

/* ==========================================================================
   Spa Pricing Page Custom Styles
   ========================================================================== */

/* Subpage banner override for pricing */
.pricing-banner {
  background-position: center 30%;
}

/* Section Header styling */
.pricing-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.pricing-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--luxury-gold);
  border-radius: 2px;
}
.pricing-section-title i {
  color: var(--luxury-gold-dark);
  margin-right: 10px;
}

/* Sticky Sub-navigation */
.pricing-subnav-wrapper {
  position: sticky;
  top: 74px; /* Sits right under the main header */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  z-index: 999;
  padding: 14px 0;
  box-shadow: 0 4px 15px rgba(15, 32, 66, 0.02);
  transition: var(--transition);
}
.pricing-subnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.pricing-subnav-link {
  color: var(--ocean-navy) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-subnav-link i {
  color: var(--luxury-gold-dark);
  font-size: 13px;
}
.pricing-subnav-link:hover {
  background-color: rgba(197, 168, 128, 0.1);
  color: var(--luxury-gold-dark) !important;
}
.pricing-subnav-link.active {
  background-color: var(--ocean-navy);
  color: var(--text-light) !important;
  border-color: var(--ocean-navy);
}
.pricing-subnav-link.active i {
  color: var(--luxury-gold);
}

@media (max-width: 991px) {
  .pricing-subnav-wrapper {
    top: 60px; /* Header is thinner on mobile */
    padding: 10px 0;
  }
  .pricing-subnav-link {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* Premium Pricing Tables */
.table-responsive-custom {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 30px;
}
.premium-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.premium-pricing-table th {
  background-color: var(--ocean-navy);
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 18px 24px;
  letter-spacing: 0.5px;
  border: none;
}
.premium-pricing-table td {
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  vertical-align: middle;
  color: var(--text-dark);
}
.premium-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.premium-pricing-table tbody tr:nth-of-type(odd) {
  background-color: rgba(250, 247, 242, 0.5); /* Soft cream tint */
}
.premium-pricing-table tbody tr:nth-of-type(even) {
  background-color: var(--bg-white);
}
.premium-pricing-table tbody tr {
  transition: background-color 0.25s ease;
}
.premium-pricing-table tbody tr:hover {
  background-color: rgba(197, 168, 128, 0.08) !important;
}
.premium-pricing-table .service-name {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.premium-pricing-table .service-name i {
  color: var(--luxury-gold-dark);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.premium-pricing-table .price-val {
  color: #9d7b4c; /* Gold color with high contrast for WCAG AA compliance on white/cream */
  font-weight: 700;
  font-size: 17px;
}

/* Mobile Pricing Table Stack */
@media (max-width: 767px) {
  .premium-pricing-table, 
  .premium-pricing-table tbody, 
  .premium-pricing-table tr, 
  .premium-pricing-table td {
    display: block;
    width: 100%;
  }
  .premium-pricing-table thead {
    display: none;
  }
  .premium-pricing-table tr {
    border-bottom: 2px solid rgba(197, 168, 128, 0.15);
    padding: 16px 20px;
  }
  .premium-pricing-table tr:last-child {
    border-bottom: none;
  }
  .premium-pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border: none;
    text-align: right;
  }
  .premium-pricing-table .service-name {
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.2);
    width: 100%;
  }
  .premium-pricing-table td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--text-muted);
    text-align: left;
    font-size: 14px;
  }
  .premium-pricing-table td.service-name::before {
    display: none;
  }
}

/* Premium Package Cards */
.pricing-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 40px 30px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--luxury-gold);
}
.pricing-card.featured {
  border: 2px solid var(--luxury-gold);
  box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 50px rgba(197, 168, 128, 0.25);
}
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--luxury-gold-dark);
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(179, 146, 104, 0.3);
}
.pricing-card-title {
  font-size: 1.75rem;
  color: var(--ocean-navy);
  margin-bottom: 10px;
}
.pricing-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.pricing-card-price-box {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-card-price {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: #9d7b4c; /* Premium accessible gold */
  line-height: 1;
}
.pricing-card-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  text-align: left;
}
.pricing-card-features li {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card-features li i {
  color: var(--luxury-gold-dark);
  font-size: 14px;
}
.pricing-card-btn {
  margin-top: auto;
  width: 100%;
}

/* Couple Therapy Price Rows */
.couple-price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding: 15px;
  background: var(--bg-cream);
  border-radius: 12px;
  border: 1px dashed rgba(197, 168, 128, 0.3);
}
.couple-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.couple-price-row:not(:last-child) {
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}
.couple-price-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--ocean-navy);
}
.couple-price-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #9d7b4c;
}

