/*
Theme Name: HimAyurgyan
Theme URI: https://wordpress.org/themes/himayurgyan/
Author: Antigravity
Author URI: https://google.com/
Description: A premium, highly customizable, and responsive WordPress theme for Ayurvedic clinics and wellness centers. Features a dynamic homepage that can be fully customized from the WordPress Admin Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: himayurgyan
Tags: custom-background, custom-logo, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready, block-styles, blog, education, health

All stylesheets are included here.
*/

/* -------------------------------------------------------------
 * 1. Design System & CSS Variables
 * ------------------------------------------------------------- */
:root {
  --primary-color: #0c4a34;    /* Deep Forest Green */
  --primary-dark: #073324;
  --primary-light: #155d43;
  --primary-rgb: 12, 74, 52;
  
  --accent-color: #d97706;     /* Gold/Amber */
  --accent-hover: #b45309;
  --accent-light: #fef3c7;
  
  --bg-color: #faf8f5;         /* Cream/Off-white background */
  --bg-card: #ffffff;
  --bg-footer: #f7f3ed;
  
  --text-color: #1e293b;       /* Charcoal */
  --text-muted: #475569;       /* Muted gray */
  --text-light: #64748b;
  
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  
  --max-width: 1200px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* -------------------------------------------------------------
 * 2. Reset & Typography
 * ------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
  color: var(--accent-color);
}

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

ul {
  list-style: none;
}

/* -------------------------------------------------------------
 * 3. Layout Utilities
 * ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

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

.section-bg-white {
  background-color: #ffffff;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: #16a34a; /* Vibrant Ayurvedic green accent */
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.25;
}

.section-title span {
  color: #16a34a; /* Highlight green word */
}

.section-header p {
  color: var(--text-muted);
  margin-top: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* -------------------------------------------------------------
 * 4. Header & Navigation
 * ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  height: 85px;
}

.logo {
  margin-right: auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0c4a34; /* Dark forest green "Him" */
  letter-spacing: -0.5px;
}

.logo-mandala {
  width: 45px;
  height: 45px;
}

.logo img,
.logo .custom-logo {
  max-height: 55px;
  width: auto;
  display: block;
}

.logo-accent {
  color: #3ba758; /* Vibrant leaf green "Ayurgyan" */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333333;
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0c4a34;
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: #0c4a34;
}

.header-divider {
  border-left: 1px solid #e2e8f0;
  height: 38px;
  margin: 0 24px;
}

.header-phone-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #037a53; /* Circle green color */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-circle-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.phone-details {
  display: flex;
  flex-direction: column;
}

.phone-title {
  font-size: 11px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 600;
  font-family: var(--font-sans);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.phone-link {
  font-size: 15px;
  font-weight: 700;
  color: #037a53; /* Phone number green color */
  font-family: var(--font-heading);
  line-height: 1.2;
  transition: var(--transition);
}

.phone-link:hover {
  color: #16a34a;
}

.btn-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Adjust top padding for body since header is fixed */
body.header-fixed-padding {
  padding-top: 120px;
}

/* Fix sticky header offset when WordPress Admin Bar is present */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* -------------------------------------------------------------
 * Header Top Utility Bar
 * ------------------------------------------------------------- */
.header-top-bar {
  background-color: #f7f4ed; /* Beige cream background */
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.8rem;
  color: #444444;
  padding: 8px 0;
  width: 100%;
  max-height: 40px;
  overflow: visible;
  transition: var(--transition);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #444444;
}

.top-bar-item a {
  color: #444444;
}

.top-bar-item a:hover {
  color: #16a34a;
}

.top-bar-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.top-bar-icon.icon-pin,
.top-bar-icon.icon-mail {
  fill: #c2853c; /* Orange/gold location/mail icon */
}

.top-bar-icon.icon-clock {
  fill: #ef4444; /* Red clock icon */
}

.follow-us {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.follow-us-label {
  color: #0c4a34; /* Bold green label */
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-socials a {
  color: #444444;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.top-bar-socials a:hover {
  color: #16a34a;
}

.top-bar-socials svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Collapse top bar when main header is scrolled */
.site-header.scrolled .header-top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  overflow: hidden;
}


/* -------------------------------------------------------------
 * 5. Hero Slider Section
 * ------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 620px;
  background-color: var(--primary-color);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(12, 74, 52, 0.4) 0%, rgba(12, 74, 52, 0.1) 100%);
  z-index: 2;
}

.slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* Slide Card Styling matching screenshot exactly */
.slide-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 45px;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  color: var(--text-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  
  /* Animations on Slide Active */
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  transition-delay: 0.1s;
}

.slide.active .slide-card {
  transform: translateY(0);
  opacity: 1;
}

.slide-subtitle {
  color: #1e293b; /* Charcoal/dark slate */
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.slide-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #1e293b; /* Dark charcoal title color */
  font-weight: 800;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

/* Green Highlight Span inside Slide Title */
.slide-title span {
  color: #037a53; /* Emerald green accent */
  display: inline-block;
}

.slide-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Dark CTA Button styling */
.btn-dark {
  background-color: #1e293b;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-dark:hover {
  background-color: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Slider Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
  background-color: #ffffff;
  width: 28px;
  border-radius: 6px;
}

/* -------------------------------------------------------------
 * 6. Panchakarma Therapies
 * ------------------------------------------------------------- */
.therapy-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.therapy-card.therapy-card-hidden {
  display: none !important;
}

.therapy-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.therapy-card:hover .therapy-image img {
  transform: scale(1.08);
}

.therapy-content {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.therapy-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: var(--transition);
}

.therapy-card:hover h3 {
  color: var(--accent-color);
}

.therapy-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Facilities Section */
.facilities-section {
  background-color: var(--bg-white);
}

.facility-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.facility-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.facility-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.facility-card:hover .facility-image-wrapper img {
  transform: scale(1.08);
}

.facility-content-box {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: var(--transition);
}

.facility-card:hover .facility-card-title {
  color: var(--accent-color);
}

.facility-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* -------------------------------------------------------------
 * 7. About Section
 * ------------------------------------------------------------- */
.about-new-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-content-left {
  max-width: 650px;
}

.about-subtitle {
  font-family: var(--font-sans);
  color: #16a34a; /* Leafy green */
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-title span {
  color: #16a34a; /* Highlight green word */
}

.about-description-text {
  margin-bottom: 25px;
}

.about-desc-p1 {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-desc-p2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.about-bullets-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

.about-bullets-list li strong {
  color: #0c4a34;
  font-weight: 700;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 35px;
}

.about-call-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-call-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #037a53; /* Circle green color */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-call-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-call-details {
  display: flex;
  flex-direction: column;
}

.about-call-title {
  font-size: 11px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  font-family: var(--font-sans);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.about-call-number {
  font-size: 17px;
  font-weight: 800;
  color: #037a53; /* Phone number green color */
  font-family: var(--font-heading);
  line-height: 1.2;
  transition: var(--transition);
}

.about-call-number:hover {
  color: #16a34a;
}

/* Light Gray Stats Bar */
.about-stats-bar {
  display: flex;
  justify-content: space-between;
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 24px 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
}

.about-stat-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}

.about-stat-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  line-height: 1.2;
}

/* Right-side Staggered Grid for Images */
.about-staggered-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: end;
}

.about-staggered-grid:not(:has(.staggered-left-col)) {
  display: block;
}

.doctor-office-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.doctor-office-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.signboard-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-signboard-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.doctor-info-badge {
  margin-top: 15px;
  padding-left: 10px;
}

.doctor-name-green {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 4px;
  line-height: 1.25;
}

.doctor-title-charcoal {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}

/* -------------------------------------------------------------
 * 8. Health Interest
 * ------------------------------------------------------------- */
.health-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 30px;
}

.health-card {
  background-color: #f6f4ed; /* Light beige/sand background from mockup */
  border-radius: 24px;
  overflow: visible; /* Crucial for overlaying the circular badge at the bottom of the image */
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  display: flex;
  flex-direction: column;
}

.health-card.health-card-hidden {
  display: none !important;
}

.health-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.health-card-image-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.health-card-image {
  height: 210px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.health-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.health-card-icon-badge {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  z-index: 10;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.health-card-icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.health-card-body {
  padding: 42px 24px 28px 24px; /* Extra top padding to accommodate the 24px overflowing badge */
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.45;
  margin: 0;
}

/* -------------------------------------------------------------
 * 9. Guided Approach Section
 * ------------------------------------------------------------- */
.guided-grid-new {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.guided-left-column {
  width: 100%;
}

.guided-right-column {
  width: 100%;
}

.guided-section-desc {
  font-size: 0.95rem;
  color: #475569; /* Slate 600 */
  line-height: 1.65;
  margin-bottom: 35px;
}

/* 3-Image Collage Layout */
.guided-collage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.guided-collage-left {
  display: flex;
  flex-direction: column;
}

.guided-collage-right {
  display: block;
}

.guided-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.guided-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guided-img-top {
  height: 130px;
  margin-bottom: 20px;
}

.guided-img-bottom {
  height: 190px;
}

.guided-img-tall {
  height: 340px; /* Aligns with (130 + 20 + 190) = 340px */
}

/* 5 Steps Styling */
.guided-steps-list-new {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.guided-step-item-new {
  display: flex;
  flex-direction: column;
}

.guided-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
}

.guided-step-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  display: inline-block;
  min-width: 24px;
}

.guided-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  letter-spacing: 0.5px;
}

.guided-step-desc {
  font-size: 0.92rem;
  color: #475569; /* Slate 600 */
  line-height: 1.6;
  margin: 0;
  padding-left: 36px; /* Indents the description text to align under the title, skipping the number */
}

#remedies {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg stroke='%2316a34a' stroke-width='0.5' fill='none' stroke-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3Ccircle cx='40' cy='40' r='25'/%3E%3Ccircle cx='40' cy='40' r='35'/%3E%3Cpath d='M40,0 L40,80 M0,40 L80,40 M11.7,11.7 L68.3,68.3 M11.7,68.3 L68.3,11.7'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* -------------------------------------------------------------
 * 10. Gallery (Moments of Care)
 * ------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item img {
  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(12, 74, 52, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Custom asymmetrical grid classes for premium feel */
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

/* -------------------------------------------------------------
 * 11. Testimonials
 * ------------------------------------------------------------- */
.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #f59e0b; /* Bright gold star color */
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-meta h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.client-meta p {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-quote-icon {
  position: absolute;
  top: 35px;
  right: 35px;
  color: rgba(12, 74, 52, 0.08);
  width: 50px;
  height: 50px;
  pointer-events: none;
}

/* -------------------------------------------------------------
 * 12. Blog Section (Latest News)
 * ------------------------------------------------------------- */
.blog-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

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

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

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

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--primary-color);
}

.blog-card-title a:hover {
  color: var(--accent-color);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: var(--transition);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* -------------------------------------------------------------
 * 13. Footer
 * ------------------------------------------------------------- */
.site-footer {
  background-color: #fcf9f2; /* Cream background matching mockup */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='200' viewBox='0 0 120 200'%3E%3Cpath d='M10,180 C30,160 40,120 20,80 C10,60 5,30 20,10 M20,80 C40,70 60,80 50,110 C40,130 20,130 10,110' fill='none' stroke='%23e2d7cc' stroke-width='1' stroke-opacity='0.25'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='200' viewBox='0 0 120 200'%3E%3Cpath d='M110,180 C90,160 80,120 100,80 C110,60 115,30 100,10 M100,80 C80,70 60,80 70,110 C80,130 100,130 110,110' fill='none' stroke='%23e2d7cc' stroke-width='1' stroke-opacity='0.25'/%3E%3C/svg%3E");
  background-position: left bottom, right bottom;
  background-repeat: no-repeat;
  padding: 85px 0 45px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f1ece1;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 0.9fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
}

.footer-col-new {
  width: 100%;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  margin-bottom: 25px;
  text-transform: capitalize;
}

/* Sub-links grid for Col 1 */
.footer-links-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.footer-sub-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sub-links-list li {
  margin-bottom: 12px;
}

.footer-sub-links-list a {
  font-size: 0.9rem;
  color: #475569; /* Slate 600 */
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-sub-links-list a:hover {
  color: #16a34a; /* Leafy green */
  transform: translateX(4px);
}

/* Dynamic Footer Navigation Menu styling */
.footer-nav-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-menu-list li {
  margin: 0;
  list-style: none !important;
}

.footer-nav-menu-list a {
  font-size: 0.9rem;
  color: #475569; /* Slate 600 */
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-nav-menu-list a:hover {
  color: #16a34a; /* Leafy green */
  transform: translateX(4px);
}


/* Center column branding */
.footer-center-branding {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-branding-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.footer-branding-logo .logo-mandala {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}

.footer-logo-img {
  max-height: 55px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-branding-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a; /* Slate 900 */
  letter-spacing: 0.5px;
}

.footer-branding-logo .logo-accent {
  color: #16a34a; /* Green */
}

.footer-tagline-text {
  font-size: 0.9rem;
  color: #475569; /* Slate 600 */
  line-height: 1.65;
  max-width: 390px;
  margin: 18px auto 25px auto;
}

/* Social circles for Center Column */
.footer-social-circles {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #475569; /* Slate 600 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  border: 1px solid #f1f5f9;
}

.social-circle.font-twitter {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
}

.social-circle.font-linkedin {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
}

.social-circle:hover {
  background-color: #0f172a; /* Slate 900 background */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.15);
}

.social-circle svg {
  width: 14px;
  height: 14px;
}

/* Working Time Table */
.footer-hours-table {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-hours-table li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding-bottom: 8px;
}

.day-name {
  color: #475569; /* Slate 600 */
}

.day-hours {
  color: #0f172a; /* Slate 900 */
  font-weight: 600;
}

/* Bottom capsule card bar */
.footer-bottom-capsule-wrapper {
  margin-top: 40px;
}

.footer-bottom-capsule {
  background-color: #ffffff;
  border-radius: 50px; /* Capsule roundness */
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
}

.capsule-copyright p {
  font-size: 0.82rem;
  color: #64748b; /* Slate 500 */
  margin: 0;
  font-weight: 500;
}

.capsule-scroll-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e09f87; /* Light peach/salmon background from mockup */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 10px rgba(224, 159, 135, 0.3);
  text-decoration: none;
}

.scroll-top-btn:hover {
  background-color: #c9846b;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(201, 132, 107, 0.4);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}

.capsule-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
}

.capsule-links a {
  color: #64748b; /* Slate 500 */
  text-decoration: none;
  transition: color 0.25s ease;
}

.capsule-links a:hover {
  color: #16a34a;
}

.link-separator {
  color: #cbd5e1;
}

/* Footer Bottom Dynamic Menu styling */
.footer-bottom-menu-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-bottom-menu-list li {
  position: relative;
  display: inline-flex;
  align-items: center;
  list-style: none !important;
}

.footer-bottom-menu-list li:not(:last-child)::after {
  content: "|";
  margin-left: 12px;
  color: #cbd5e1;
  pointer-events: none;
}

.footer-bottom-menu-list a {
  color: #64748b; /* Slate 500 */
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-bottom-menu-list a:hover {
  color: #16a34a; /* Leafy green */
}


/* -------------------------------------------------------------
 * 14. Responsive Layouts & Breakpoints
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .about-new-grid, .guided-grid, .guided-grid-new, .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visuals {
    order: -1;
  }
  .guided-visual-grid {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-top-bar {
    display: none;
  }
  
  body.header-fixed-padding {
    padding-top: 80px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
    border-bottom: 2px solid var(--primary-color);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .header-divider,
  .header-phone-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: 70vh;
    min-height: 480px;
  }
  .slide-card {
    padding: 25px;
    margin: 0 15px;
    border-radius: 16px;
  }
  .slide-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .slide-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .section {
    padding: 60px 0;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .health-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-wide { grid-column: span 1; }
  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-item {
    flex: 1 1 40%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .guided-img-top {
    height: 90px;
    margin-bottom: 12px;
  }
  .guided-img-bottom {
    height: 130px;
  }
  .guided-img-tall {
    height: 232px;
  }
  .guided-step-desc {
    padding-left: 28px;
  }
}

/* =============================================================
 * 9. Internal Pages & Dynamic Elements
 * ============================================================= */

/* 9.1 Internal Page Hero Banner */
.internal-page-banner {
  position: relative !important;
  padding: 105px 0 !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 270px !important;
  border-bottom: 4px solid var(--accent-color) !important;
  text-align: center !important;
}

.internal-page-banner .banner-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(7, 43, 31, 0.85) !important; /* Premium dark forest screen overlay */
  z-index: 1 !important;
}

.internal-page-banner .banner-container {
  position: relative !important;
  z-index: 2 !important;
  text-align: center !important;
  width: 100% !important;
}

.internal-page-banner .banner-subtitle {
  color: var(--accent-color) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  font-size: 0.9rem !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  display: block !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.internal-page-banner .banner-title {
  color: #ffffff !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  font-family: var(--font-heading) !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.2 !important;
}

.internal-page-banner .banner-breadcrumbs {
  font-size: 0.95rem !important;
  color: #a7f3d0 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.internal-page-banner .banner-breadcrumbs a {
  color: #a7f3d0 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
}

.internal-page-banner .banner-breadcrumbs a:hover {
  color: #ffffff !important;
}

.internal-page-banner .breadcrumbs-sep {
  margin: 0 8px !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.internal-page-banner .breadcrumbs-current {
  color: #ffffff !important;
  opacity: 0.95 !important;
}

/* Adjust page padding for fixed header */
body.header-fixed-padding {
  padding-top: 125px;
}

/* 9.2 CSS Lightbox for Gallery Page */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 51, 36, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal:target {
  display: flex;
}

.lightbox-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
  z-index: 10001;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-lg);
}

.lightbox-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close-btn:hover {
  color: var(--accent-color);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  padding: 12px 18px;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: var(--transition);
  user-select: none;
  line-height: 1;
}

.lightbox-nav:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* 9.3 Pagination for Blogs */
.blogs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  margin: 0 4px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.blogs-pagination .page-numbers:hover,
.blogs-pagination .page-numbers.current {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

/* 9.4 Contact Form Elements */
.theme-contact-form input[type="text"],
.theme-contact-form input[type="email"],
.theme-contact-form textarea {
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.theme-contact-form input[type="text"]:focus,
.theme-contact-form input[type="email"]:focus,
.theme-contact-form textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(12, 74, 52, 0.12);
}

/* 9.5 Editorial Content Area Rules */
.page-editorial-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.page-editorial-content h2,
.page-editorial-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

/* 9.6 Responsive Overrides for New Grids */
@media screen and (max-width: 991px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close-btn {
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  body.header-fixed-padding {
    padding-top: 100px;
  }
  .about-new-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visuals-right-side {
    max-width: 500px;
    margin: 0 auto;
  }
  .internal-page-banner {
    padding: 60px 0;
    min-height: 200px;
  }
  .internal-page-banner .banner-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .theme-contact-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Gallery page item hiding logic for Load More button */
.gallery-grid .gallery-item.gallery-item-hidden {
  display: none !important;
}

/* -------------------------------------------------------------
 * 19. Comments & Reply Form Styling (Robust Global Selector Version)
 * ------------------------------------------------------------- */
.comments-area {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border-color);
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comments-title span {
  color: var(--accent-color);
}

/* Complete List Reset for Comments Area */
.comments-area ol,
.comments-area ul,
.comments-area li,
.comment-list,
.comment-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

/* Comment Lists */
.comment-list {
  margin: 0 0 50px 0 !important;
}

.comment-list li.comment {
  margin-bottom: 35px !important;
}

.comment-list .children {
  padding-left: 45px !important;
  margin-top: 25px !important;
  border-left: 2px solid var(--border-color) !important;
}

/* Comment Cards */
.comment-body-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 26px 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.comment-body-wrapper:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.comment-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.comment-author-avatar img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: block;
  object-fit: cover;
  border: 2px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.comment-body-wrapper:hover .comment-author-avatar img {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.comment-author-metadata {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.comment-author-name {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.comment-author-name a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.comment-author-name a:hover {
  color: var(--accent-color);
}

.comment-date-time {
  font-size: 0.78rem;
  color: var(--text-light);
}

.comment-date-time a {
  color: inherit;
  text-decoration: none;
}

.comment-date-time a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

/* Comment content */
.comment-content-text {
  font-family: var(--font-sans);
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 16px;
  word-break: break-word;
}

.comment-content-text p {
  margin-bottom: 12px;
}

.comment-content-text p:last-child {
  margin-bottom: 0;
}

.comment-awaiting-moderation {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  background-color: var(--accent-light);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* Comment reply button styling */
.comment-reply-action {
  display: flex;
  justify-content: flex-end;
}

.comment-reply-action a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.comment-reply-action a:hover {
  color: #ffffff !important;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Comment Form Card */
.comment-respond {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 40px;
  margin-top: 55px;
}

.comment-respond h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 12px;
}

.comment-respond h3 a {
  font-size: 0.85rem;
  text-transform: none;
  font-weight: 600;
  color: #ef4444;
  text-decoration: none;
}

.comment-respond h3 a:hover {
  text-decoration: underline;
}

.comment-respond .logged-in-as {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  display: block;
}

.comment-respond .logged-in-as a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
}

.comment-respond .logged-in-as a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Custom Comment Form Layout */
#commentform {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#commentform .comment-form-group,
#commentform p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Label styling */
#commentform label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

#commentform label .required {
  color: #ef4444;
}

/* Textarea & Inputs formatting */
#commentform textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#commentform textarea {
  min-height: 140px;
  resize: vertical;
}

#commentform textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform input[type="url"]:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Fields Grid for Logged Out Name & Email */
.comment-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

/* Checkbox alignment */
#commentform p.comment-form-cookies-consent {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

#commentform p.comment-form-cookies-consent input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

#commentform p.comment-form-cookies-consent label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: none;
  cursor: pointer;
  user-select: none;
}

/* Submit Section */
#commentform .form-submit {
  margin-top: 10px;
}

#commentform .form-submit button,
#commentform .form-submit input[type="submit"] {
  min-height: 50px;
  padding: 12px 36px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

#commentform .form-submit button:hover,
#commentform .form-submit input[type="submit"]:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Navigation & Moderation */
.no-comments {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 20px 0;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.comment-navigation a {
  color: var(--primary-color);
  text-decoration: none;
}

.comment-navigation a:hover {
  color: var(--accent-color);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .comment-fields-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .comment-list .children {
    padding-left: 20px !important;
  }
  .comment-respond {
    padding: 30px 20px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-color: #128c7e;
}

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

@media screen and (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* =============================================================
 * Responsive Footer Styling Overrides
 * ============================================================= */
@media (min-width: 992px) {
  .text-right-desktop {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-center-branding {
    order: -1; /* Place branding on top */
  }

  .footer-links-col,
  .footer-hours-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links-sub-grid,
  .footer-nav-menu-list {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .footer-hours-table {
    width: 100%;
    max-width: 320px;
    align-items: center;
  }

  .footer-hours-table li {
    justify-content: space-between;
    width: 100%;
  }

  .footer-col-title {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-bottom-capsule {
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .capsule-links,
  .footer-bottom-menu-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .capsule-copyright p {
    text-align: center;
  }
}

/* =============================================================
 * 20. FAQ Section Split Layout (About Us Page)
 * ============================================================= */
.section-faq-about {
  width: 100%;
  padding: 0 !important;
  margin: 0;
  box-sizing: border-box;
}

.faq-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 550px;
  width: 100%;
}

/* Left Column (Green Box) */
.faq-left-column {
  background-color: #74834f;
  padding: 90px 60px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

.faq-left-content {
  max-width: 480px;
  width: 100%;
  text-align: left;
}

.faq-script-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  display: block;
  line-height: 1.1;
  margin-bottom: 0px;
}

.faq-script-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  font-weight: 400;
  color: #ffffff;
  display: block;
  line-height: 1.1;
  margin-bottom: 15px;
  margin-left: 90px;
}

.faq-block-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #2b321a; /* Dark charcoal/olive contrast text */
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 25px;
  margin-top: 0;
}

.faq-left-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.faq-buttons-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.faq-btn-dark {
  background-color: #333333 !important;
  color: #ffffff !important;
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  display: inline-block;
  line-height: 1.2;
}

.faq-btn-dark:hover {
  background-color: #111111 !important;
}

.btn-gold-arrow {
  background-color: #f6d267 !important;
  color: #333333 !important;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border-radius: 0 !important;
  padding: 0 !important;
  line-height: 1.2;
  overflow: hidden;
}

.btn-gold-arrow span:first-of-type {
  padding: 14px 24px;
}

.btn-gold-arrow .arrow-icon {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-gold-arrow:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Column (Beige Box) */
.faq-right-column {
  background-color: #f4efe6;
  padding: 90px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.faq-accordion-wrapper {
  width: 100%;
  max-width: 550px;
}

.faq-accordion-item {
  border-bottom: 1px solid #d3cbbd;
  padding: 25px 0;
  transition: all 0.3s ease;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-header {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #434638;
  outline: none;
}

.faq-accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  width: 35px;
  display: inline-block;
  color: #8c9080;
  transition: color 0.3s ease;
}

.faq-accordion-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #434638;
  transition: color 0.3s ease;
}

.faq-accordion-header:hover .faq-accordion-title {
  color: #74834f;
}

.faq-accordion-content {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
}

.faq-accordion-content-inner {
  padding-left: 35px;
}

.faq-accordion-content-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5c5f51;
  margin: 0;
}

/* Responsive Grid Adjustments */
@media screen and (max-width: 991px) {
  .faq-row-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .faq-left-column {
    padding: 70px 40px;
    justify-content: center;
  }
  
  .faq-right-column {
    padding: 70px 40px;
    justify-content: center;
  }
  
  .faq-left-content,
  .faq-accordion-wrapper {
    max-width: 100%;
  }

  .faq-script-title {
    font-size: 3rem;
  }

  .faq-script-subtitle {
    font-size: 2.2rem;
    margin-left: 70px;
  }

  .faq-block-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 576px) {
  .faq-left-column,
  .faq-right-column {
    padding: 50px 20px;
  }
  
  .faq-buttons-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .faq-btn-dark,
  .btn-gold-arrow {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-gold-arrow span:first-of-type {
    flex-grow: 1;
  }

  .faq-accordion-title {
    font-size: 1.2rem;
  }
}

