/* ==========================================================================
   Aniniwah Medical Centre CSS Design System
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  /* Logo-matched color palette: gold + black */
  --primary: #b8960c;
  --secondary: #8a6e00;
  --primary-rgb: 184, 150, 12;
  --secondary-rgb: 138, 110, 0;
  --dark: #1a1a1a;
  --text: #444444;
  --bg-light: #f9f6ee;
  --white: #ffffff;
  --gray: #8a8a8a;
  --border-color: #e3e3e3;
  --success: #28a745;
  --gold: #b8960c;
  --gold-light: #d4ab10;
  --gold-dark: #8a6e00;

  --font-title: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --shadow: 0px 8px 30px rgba(184, 150, 12, 0.08);
  --shadow-hover: 0px 15px 40px rgba(184, 150, 12, 0.16);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

ul, ol {
  list-style: none;
}

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

/* Utility Layout Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.section-padding {
  padding: 80px 0;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white) !important;
}

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(28, 88, 239, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

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

.btn-white:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(57, 108, 240, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll To Top */
.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

.scrollToTop:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

/* ==========================================================================
   Header Section Styles
   ========================================================================== */

/* Top Header Bar */
.header-top-bar {
  background-color: #18130e;
  border-bottom: 1px solid #2e2319;
  padding: 9px 0;
  font-size: 0.85rem;
  color: #dfd5c6;
  transition: var(--transition);
}

.header-top-bar a {
  color: #dfd5c6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-top-bar a:hover {
  color: #b8960c;
}

.header-top-bar .contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-top-bar .contact-info span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
}

.header-top-bar .contact-info i {
  color: #b8960c;
  margin-right: 8px;
  font-size: 0.9rem;
}

.header-top-bar .social-links {
  display: flex;
  align-items: center;
}

.header-top-bar .social-links a {
  color: #b09f8d;
  margin-left: 16px;
  font-size: 0.92rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header-top-bar .social-links a:hover {
  color: #b8960c;
  transform: translateY(-2px);
}

/* Main Navigation Header */
.site-header {
  background-color: var(--white);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(24, 19, 14, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.sticky {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(184, 150, 12, 0.25);
  box-shadow: 0 6px 25px rgba(24, 19, 14, 0.1);
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.site-header .logo img {
  height: 52px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.site-header .logo:hover img {
  transform: scale(1.02);
}

.site-header .logo .light-logo {
  display: none;
}

/* Nav Menu */
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list > li {
  position: relative;
  padding: 8px 6px;
  margin: 0 4px;
}

.menu-list > li > a {
  color: #1c150e;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.93rem;
  text-transform: capitalize;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.menu-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #b8960c;
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.menu-list > li > a:hover::after,
.menu-list > li > a.active::after,
.menu-list > li.active > a::after {
  width: 70%;
  left: 15%;
}

.menu-list > li > a:hover,
.menu-list > li > a.active,
.menu-list > li.active > a {
  color: #b8960c !important;
}

/* Dropdown Menu styling */
.menu-list li.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.menu-list li.has-dropdown > a i.dropdown-arrow {
  font-size: 0.72rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  color: #8a7e70;
}

.menu-list li.has-dropdown:hover > a i.dropdown-arrow {
  transform: rotate(180deg);
  color: #b8960c;
}

.menu-list .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 230px;
  box-shadow: 0 12px 35px rgba(24, 19, 14, 0.12);
  border-top: 3px solid #b8960c;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.menu-list li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-list .dropdown li {
  border-bottom: 1px solid #f6f2ea;
}

.menu-list .dropdown li:last-child {
  border-bottom: none;
}

.menu-list .dropdown a {
  display: block;
  padding: 10px 20px;
  color: #1c150e;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.menu-list .dropdown a:hover,
.menu-list .dropdown a.active {
  background-color: #f7f2e8 !important;
  color: #b8960c !important;
  padding-left: 24px;
}

/* Header Action CTA Button */
.header-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-action .btn-primary {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 10px 24px !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(184, 150, 12, 0.3) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.header-action .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(184, 150, 12, 0.45) !important;
}

/* Hamburger & Mobile Menu Styles */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
  position: relative;
  z-index: 1001;
  box-sizing: border-box;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  position: absolute;
  left: 7px;
  transition: var(--transition);
  border-radius: 3px;
}

.hamburger-menu span:nth-child(1) { top: 10px; }
.hamburger-menu span:nth-child(2) { top: 20px; }
.hamburger-menu span:nth-child(3) { top: 30px; }

.hamburger-menu.active span {
  background-color: #b8960c !important;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

/* Section Header Banners (for subpages) */
.entry-banner {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}

.entry-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 108, 240, 0.85); /* Accent tint */
  z-index: 1;
}

.entry-banner .banner-content {
  position: relative;
  z-index: 2;
}

.entry-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.entry-banner .breadcrumbs {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: #c5d5ff;
}

.entry-banner .breadcrumbs a {
  color: #c5d5ff;
}

.entry-banner .breadcrumbs a:hover {
  color: var(--white);
}

.entry-banner .breadcrumbs span {
  margin: 0 8px;
}

/* ==========================================================================
   Home Page Section Styles
   ========================================================================== */

/* Hero Slider */
.hero-slider-container {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  background-color: var(--dark);
}

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

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

.hero-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease-in-out;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-slide .slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 650px;
  padding-left: 20px;
}

.hero-slide .slide-tagline {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 4px;
}

.hero-slide h2 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: capitalize;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  color: #f0f0f0;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  right: 80px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Feature Cards Overlapping */
.features-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(57, 108, 240, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card .icon-box img {
  width: 35px;
  height: 35px;
}

.feature-card:hover .icon-box {
  background-color: var(--primary);
}

.feature-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.feature-card .card-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.feature-card .card-link i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.feature-card .card-link:hover i {
  transform: translateX(4px);
}

/* About AMC Section */
.about-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-images {
  flex: 1;
  position: relative;
  padding-bottom: 30px;
}

.about-images .main-img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 85%;
}

.about-images .badge-experience {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(57, 108, 240, 0.3);
  text-align: center;
  max-width: 200px;
}

.about-images .badge-experience .years {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1;
  display: block;
}

.about-images .badge-experience .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
  letter-spacing: 1px;
}

.about-content {
  flex: 1.2;
}

.section-tagline {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-content p {
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Departments Slider / Grid */
.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.department-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.department-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(57, 108, 240, 0.2);
}

.department-card .dept-img {
  height: 200px;
  overflow: hidden;
}

.department-card .dept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.department-card:hover .dept-img img {
  transform: scale(1.1);
}

.department-card .dept-content {
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.department-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.department-card .detail-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.why-choose-content {
  flex: 1.2;
}

.why-choose-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.choose-item {
  display: flex;
  gap: 20px;
}

.choose-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(57, 108, 240, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.choose-item:hover .icon-box {
  background-color: var(--primary);
  color: var(--white);
}

.choose-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.choose-item p {
  font-size: 0.9rem;
  color: var(--text);
}

.why-choose-image {
  flex: 1;
}

.why-choose-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Board Members Section */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.member-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.member-img-wrap {
  position: relative;
  overflow: hidden;
}

.member-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.member-info {
  padding: 25px 15px;
}

.member-info h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.member-info p {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Stats Counter Section */
.stats-counter-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Carousel */
.testimonials-section {
  position: relative;
  background-color: var(--bg-light);
  overflow: hidden;
}

.testimonials-slider {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
  text-align: center;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-slide .quote-icon {
  font-size: 3rem;
  color: rgba(57, 108, 240, 0.15);
  margin-bottom: 20px;
}

.testimonial-slide blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 25px;
  padding: 0 40px;
}

.testimonial-slide .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid var(--primary);
}

.testimonial-slide h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonials-slider .slider-controls {
  position: static;
  justify-content: center;
  margin-top: 30px;
}

.testimonials-slider .slider-btn {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border-color);
}

.testimonials-slider .slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Blog Articles Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-card .blog-img {
  height: 220px;
  background-color: #ddd;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .blog-content {
  padding: 25px;
}

.blog-card .meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.blog-card .meta i {
  color: var(--primary);
  margin-right: 4px;
}

.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-card h3 a {
  color: var(--dark);
}

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

.blog-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
}

.blog-card .read-more {
  font-weight: 600;
}

/* Partner Logos (Insurance) */
.partners-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.partners-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partners-flex img {
  height: 50px;
  width: auto;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(1);
}

.partners-flex img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ==========================================================================
   Inner Page Specific Layouts
   ========================================================================== */

/* Split Sidebar Layout (Departments / Services details) */
.inner-page-layout {
  display: flex;
  gap: 40px;
}

.main-content-area {
  flex: 2.5;
}

.main-content-area img.featured-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  width: 100%;
}

.main-content-area p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.main-content-area h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.sidebar-area {
  flex: 1;
}

.sidebar-widget {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 35px;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.sidebar-menu li {
  margin-bottom: 10px;
}

.sidebar-menu li a {
  display: block;
  padding: 12px 20px;
  background-color: var(--white);
  border-radius: 5px;
  color: var(--dark);
  font-weight: 500;
  border: 1px solid var(--border-color);
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
  background-color: #b8960c !important;
  color: var(--white) !important;
  border-color: #b8960c !important;
}

.sidebar-contact-card {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
}

.sidebar-contact-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.sidebar-contact-card p {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.sidebar-contact-card .phone-num {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-header {
  padding: 20px 25px;
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-title);
  color: var(--dark);
  transition: var(--transition);
}

.faq-header:hover {
  background-color: #fafbfc;
}

.faq-item.active .faq-header {
  background-color: rgba(57, 108, 240, 0.05);
  color: var(--primary);
}

.faq-icon {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 25px;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* Gallery Photo Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 108, 240, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}

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

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

.gallery-overlay a {
  color: var(--white);
  font-size: 1.8rem;
}

/* Form Styles (Appointments & Contact) */
.form-container {
  background-color: var(--white);
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 108, 240, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Contact Coordinates Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.contact-info-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(57, 108, 240, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text);
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  display: block;
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */
footer.site-footer,
.site-footer {
  color: #dfd5c6 !important;
  position: relative !important;
  z-index: 5 !important;
  margin-top: 100px !important;
  overflow: visible !important;
  background-color: transparent !important;
}

footer.site-footer::before,
.site-footer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #18130e !important;
  z-index: -1 !important;
  /* Pentagon clip path applied to background pseudo-element to avoid child clipping */
  -webkit-clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%) !important;
  clip-path: polygon(0 60px, 50% 0, 100% 60px, 100% 100%, 0 100%) !important;
  pointer-events: none !important;
}

.footer-top-wrap {
  padding: 80px 0 50px;
  border-bottom: 1px solid #2e2319;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 25px;
  color: #dfd5c6;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #292017;
  color: #dfd5c6;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: #b8960c;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-header h3 {
  color: var(--white);
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

.footer-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul.menu li {
  margin-bottom: 12px;
}

.footer-links ul.menu li a {
  color: #dfd5c6;
  font-size: 0.9rem;
}

.footer-links ul.menu li a:hover {
  color: #b8960c;
  padding-left: 5px;
}

.footer-contact .contact-widget li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: #dfd5c6;
}

.footer-contact .contact-widget i {
  color: #b8960c;
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-contact .contact-widget a {
  color: #dfd5c6;
}

.footer-contact .contact-widget a:hover {
  color: #b8960c;
}

.footer-hours .opening-hours-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed #2e2319;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #dfd5c6;
}

.footer-hours .opening-hours-list li:last-child {
  border-bottom: none;
}

.footer-bottom-wrap {
  background-color: #110d08;
  padding: 25px 0;
  font-size: 0.85rem;
}

.footer-bottom-wrap .copyright {
  color: #b09f8d;
}

.footer-bottom-links a {
  color: #b09f8d;
  margin-left: 20px;
}

.footer-bottom-links a:hover {
  color: #b8960c;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .features-grid, .grid-4-cols, .board-grid, .blog-grid, .gallery-grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  /* Layout adjustments */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-section {
    margin-top: -30px;
  }
  .about-section {
    flex-direction: column;
    gap: 40px;
  }
  .why-choose-section {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .inner-page-layout {
    flex-direction: column;
    gap: 45px;
  }
  .sidebar-area {
    order: 2;
  }
  .main-content-area {
    order: 1;
  }

  /* Navigation folds on mobile */
  .hamburger-menu {
    display: block;
  }
  .menu-list {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .menu-list.active {
    right: 0;
  }
  
  .menu-list > li {
    padding: 12px 0;
    width: 100%;
  }
  
  .menu-list > li > a {
    font-size: 1.1rem;
    display: block;
  }

  /* Dropdown behavior on mobile click */
  .menu-list .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 15px;
    border-left: 2px solid var(--border-color);
    margin-top: 10px;
    display: none; /* Toggled by JS */
    min-width: 100%;
  }
  
  .menu-list li.has-dropdown.open .dropdown {
    display: block;
  }
  
  .menu-list li.has-dropdown:hover .dropdown {
    transform: none;
  }
  
  .site-header .logo img {
    height: 45px;
  }
  
  .d-none-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-slide h2 {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  .grid-4-cols {
    grid-template-columns: 1fr;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px !important;
    padding: 0 15px !important;
  }
  
  footer.site-footer::before,
  .site-footer::before {
    -webkit-clip-path: polygon(0 20px, 50% 0, 100% 20px, 100% 100%, 0 100%) !important;
    clip-path: polygon(0 20px, 50% 0, 100% 20px, 100% 100%, 0 100%) !important;
  }
  
  .footer-logo-circle {
    top: -45px !important;
    width: 90px !important;
    height: 90px !important;
  }

  .footer-top-wrap {
    padding-top: 70px !important;
  }

  .footer-box {
    text-align: center !important;
  }

  .footer-header h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer-contact .contact-widget li {
    justify-content: center !important;
  }

  .opening-hours-list li {
    justify-content: space-between !important;
    padding: 8px 10px !important;
  }
  
  .footer-links ul.menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 15px !important;
    padding: 0 !important;
    list-style: none !important;
    text-align: left !important;
  }

  .footer-links ul.menu li {
    margin-bottom: 0 !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .header-top-bar .contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .header-top-bar {
    text-align: center;
  }
  
  .header-top-bar .contact-info span {
    margin-right: 0;
  }
  
  .header-top-bar .social-links {
    display: none;
  }
  
  .flex-column-mobile {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links a {
    margin: 0 10px;
  }
  
  .entry-banner h1 {
    font-size: 2.2rem;
  }
  
  .form-container {
    padding: 25px;
  }
}

/* ==========================================================================
   Elementor Flexbox Grid Overrides to Align Divs
   ========================================================================== */
.elementor-row {
  display: flex !important;
  flex-flow: row wrap !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-column {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  min-height: 1px !important;
}

.elementor-column-wrap {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.elementor-widget-wrap {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  width: 100% !important;
}

/* Elementor Column Widths */
.elementor-col-10 { width: 10% !important; }
.elementor-col-20 { width: 20% !important; }
.elementor-col-25 { width: 25% !important; }
.elementor-col-33 { width: 33.333% !important; }
.elementor-col-40 { width: 40% !important; }
.elementor-col-50 { width: 50% !important; }
.elementor-col-60 { width: 60% !important; }
.elementor-col-66 { width: 66.666% !important; }
.elementor-col-75 { width: 75% !important; }
.elementor-col-80 { width: 80% !important; }
.elementor-col-100 { width: 100% !important; }

/* Responsive adjustments for tablet */
@media (max-width: 991px) {
  .elementor-col-25,
  .elementor-col-33,
  .elementor-col-40,
  .elementor-col-50,
  .elementor-col-60,
  .elementor-col-66,
  .elementor-col-75,
  .elementor-col-80 {
    width: 50% !important;
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .elementor-row {
    flex-direction: column !important;
  }
  .elementor-column {
    width: 100% !important;
  }
}

/* ==========================================================================
   LayerSlider Fallback Carousel Styling
   ========================================================================== */
.ls-wp-container {
  position: relative !important;
  width: 100% !important;
  height: 600px !important;
  overflow: hidden !important;
  display: block !important;
}

.ls-mobile-text-card {
  display: contents !important;
}

.ls-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out !important;
  z-index: 1 !important;
  display: block !important;
}

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

/* Semi-transparent dark overlay gradient behind text for high contrast */
.ls-slide::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.25) 100%) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.ls-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: -1 !important;
}

/* Ensure LayerSlider slide child layers are positioned absolutely so they don't flow as blocks */
.ls-slide .ls-l,
.ls-slide .ls-text-layer,
.ls-slide .ls-button-layer,
.ls-slide h1,
.ls-slide h2,
.ls-slide h3,
.ls-slide p,
.ls-slide a,
.ls-slide span {
  position: absolute !important;
  margin: 0 !important;
  z-index: 10 !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* Adjust slides height on mobile */
@media (max-width: 767px) {
  .ls-wp-container {
    height: 380px !important;
  }
}

/* Floating WhatsApp CTA - Bottom Right side, above scroll to top */
.whatsapp-cta {
  position: fixed;
  bottom: 95px;
  right: 30px;
  z-index: 9999;
  display: block;
}

.whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: wa-pulse 3s infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Footer Logo Circle matching Trustwell layout */
.footer-logo-circle {
  position: absolute !important;
  top: -30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 110px !important;
  height: 110px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 24px rgba(184, 150, 12, 0.35), 0 0 0 4px rgba(184,150,12,0.15) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 12 !important;
  border: 3px solid #b8960c !important;
  overflow: hidden !important;
  padding: 8px !important;
  box-sizing: border-box !important;
  pointer-events: auto !important;
}

.footer-logo-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Header style override for vibrant green */
.footer-header h3 {
  color: #b8960c !important;
}

.footer-header h3::after {
  background-color: #b8960c !important;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero */
.contact-hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(24, 19, 14, 0.9) 0%, rgba(43, 32, 20, 0.75) 55%, rgba(184, 150, 12, 0.45) 100%), url('/contact.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #faf6f0, transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.contact-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Info Cards */
.contact-cards-section {
  background: #faf6f0;
  padding: 0 0 60px;
  margin-top: -20px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 60px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(26,18,12,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(184,150,12,0.08);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(184,150,12,0.15);
}

.contact-card--featured {
  background: linear-gradient(135deg, #241b13, #b8960c);
  color: #fff;
  border-color: transparent;
}

.contact-card--featured h3,
.contact-card--featured p,
.contact-card--featured a {
  color: #fff !important;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5efe4, #e8dcc4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: #b8960c;
  transition: transform 0.3s;
}

.contact-card--featured .contact-card-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.9rem;
  color: #736454;
  line-height: 1.6;
  margin: 0;
}

.contact-card p a {
  color: #b8960c;
  font-weight: 600;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #b8960c;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}

.contact-card-link:hover {
  gap: 10px;
  color: #b8960c;
}

.contact-card--featured .contact-card-link {
  color: rgba(255,255,255,0.9) !important;
}

/* Main Section */
.contact-main-section {
  background: #faf6f0;
  padding: 0 0 80px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 4px 30px rgba(26,18,12,0.08);
}

.contact-section-tag {
  display: inline-block;
  background: #f5efe4;
  color: #b8960c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.contact-form-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.contact-form-header p {
  color: #827261;
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f8ee;
  border: 1px solid #6fcf97;
  color: #1a7a40;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-success-msg i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-form-group label span {
  color: #e53935;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8960c;
  font-size: 0.85rem;
  pointer-events: none;
}

.input-icon-wrap input,
.contact-form-group textarea {
  width: 100%;
  padding: 13px 16px 13px 40px;
  border: 1.5px solid #e8dfd1;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #18130e;
  background: #f8fafd;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form-group textarea {
  padding: 13px 16px;
  resize: vertical;
  min-height: 140px;
}

.input-icon-wrap input:focus,
.contact-form-group textarea:focus {
  border-color: #b8960c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184,150,12,0.1);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 42px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,12,0.35);
}

/* Side Panel */
.contact-side-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,18,12,0.1);
  height: 280px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Hours Card */
.contact-hours-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 20px;
  box-shadow: 0 4px 20px rgba(26,18,12,0.08);
}

.contact-hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-hours-header i {
  color: #b8960c;
  font-size: 1.1rem;
}

.contact-hours-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed #ede4d7;
  font-size: 0.88rem;
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

.contact-hours-list .day {
  color: #695c4e;
  font-weight: 500;
}

.open-badge {
  background: #e8f8ee;
  color: #1a7a40;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Social Card */
.contact-social-card {
  background: linear-gradient(135deg, #18130e, #2b2015);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.contact-social-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s, transform 0.25s;
  text-decoration: none;
}

.contact-social-links a:hover {
  background: #b8960c;
  transform: translateY(-3px);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-side-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-map-wrap {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .contact-hero {
    padding: 90px 0 60px;
  }

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

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

  .contact-form-wrap {
    padding: 30px 20px;
  }

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

/* ==========================================================================
   News / Blog Page Styles
   ========================================================================== */

/* Hero */
.news-hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(24, 19, 14, 0.9) 0%, rgba(43, 32, 20, 0.75) 55%, rgba(184, 150, 12, 0.45) 100%), url('/wellness.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px;
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.news-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #faf6f0, transparent);
}

.news-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.news-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.news-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.18;
}

.news-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.news-search-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.news-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8960c;
  font-size: 0.95rem;
  pointer-events: none;
}

.news-search-input {
  width: 100%;
  padding: 16px 48px 16px 50px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #ffffff;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  box-sizing: border-box;
  font-family: inherit;
  transition: box-shadow 0.25s;
}

.news-search-input:focus {
  box-shadow: 0 8px 40px rgba(184,150,12,0.3);
}

.news-search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #ede4d7;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #b8960c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s;
}

.news-search-clear:hover {
  background: #e8dcc4;
}

/* Stats Bar */
.news-stats-bar {
  background: #fff;
  border-bottom: 1px solid #ede4d7;
  padding: 18px 0;
}

.news-stats-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.news-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #695c4e;
}

.news-stat i {
  color: #b8960c;
  font-size: 1rem;
}

.news-stat strong {
  color: #ffffff;
}

/* Main Section */
.news-main-section {
  background: #faf6f0;
  padding: 50px 0 70px;
}

/* Category Bar */
.news-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.news-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #e8dfd1;
  background: #fff;
  color: #695c4e;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.news-cat-btn:hover {
  border-color: #b8960c;
  color: #b8960c;
  background: #f7f2e8;
}

.news-cat-btn--active {
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(184,150,12,0.3);
}

.news-cat-btn--active:hover {
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #fff;
}

/* Results Info */
.news-results-info {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #695c4e;
  margin-bottom: 28px;
}

.news-results-info i {
  color: #b8960c;
}

/* Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Featured first card spans full width */
.news-card--featured {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}

.news-card--featured .news-card-img-wrap {
  height: 100%;
  min-height: 300px;
}

.news-card--featured .news-card-title {
  font-size: 1.6rem !important;
}

.news-card--featured .news-card-excerpt {
  font-size: 1rem !important;
}

/* Card */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,18,12,0.07);
  border: 1px solid rgba(184,150,12,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(184,150,12,0.14);
}

.news-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.06);
}

.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,12,0.4) 0%, transparent 60%);
}

.news-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.news-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-meta {
  display: flex;
  gap: 18px;
  font-size: 0.8rem;
  color: #948473;
  font-weight: 500;
  margin-bottom: 14px;
}

.news-card-meta i {
  margin-right: 5px;
  color: #b8960c;
}

.news-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: #736454;
  line-height: 1.7;
  flex-grow: 1;
  margin: 0 0 20px;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f5efe4;
}

.news-card-author {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #695c4e;
}

.news-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5efe4, #e8dcc4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8960c;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #b8960c;
  cursor: pointer;
  transition: gap 0.2s;
}

.news-read-more:hover {
  gap: 10px;
}

/* Empty State */
.news-empty-state {
  text-align: center;
  padding: 70px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ede4d7;
}

.news-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f7f2e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #948473;
}

.news-empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.news-empty-state p {
  color: #827261;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.news-empty-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.news-empty-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}

/* Newsletter CTA */
.news-newsletter-section {
  background: linear-gradient(135deg, #18130e, #2b2015);
  padding: 50px 0;
}

.news-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.news-newsletter-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #fff;
}

.news-newsletter-icon {
  font-size: 2rem;
  color: #b8960c;
  background: rgba(255,255,255,0.1);
  padding: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.news-newsletter-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.news-newsletter-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.news-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 50px;
  padding: 15px 34px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.news-newsletter-btn:hover {
  background: #ffffff !important;
  color: #18130e !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

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

  .news-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .news-card--featured .news-card-img-wrap {
    height: 240px;
  }

  .news-card--featured .news-card-title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 700px) {
  .news-hero {
    padding: 90px 0 80px;
  }

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

  .news-stats-inner {
    gap: 24px;
  }

  .news-newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .news-newsletter-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   Gallery Page Styles
   ========================================================================== */

/* Hero */
.gallery-hero {
  position: relative;
  background-image: linear-gradient(135deg, rgba(24, 19, 14, 0.9) 0%, rgba(43, 32, 20, 0.75) 55%, rgba(184, 150, 12, 0.45) 100%), url('/gal1.jpeg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 110px;
  overflow: hidden;
}

.gallery-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,150,12,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.gallery-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, #faf6f0, transparent);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.gallery-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.gallery-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}

.gallery-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.gallery-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 60px;
  padding: 16px 36px;
  backdrop-filter: blur(12px);
  gap: 28px;
}

.gallery-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gallery-hero-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.gallery-hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

/* Filter Bar */
.gallery-filter-bar {
  background: #faf6f0;
  border-bottom: 1px solid #e8dfd1;
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(26, 18, 12, 0.08);
}

.gallery-filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #e8dfd1;
  background: #ffffff;
  color: #1c150e;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(26, 18, 12, 0.04);
}

.gallery-filter-btn i {
  color: #b8960c;
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

.gallery-filter-btn:hover {
  border-color: #b8960c;
  color: #b8960c;
  background: #fcf9f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 150, 12, 0.15);
}

.gallery-filter-btn:hover i {
  transform: scale(1.15);
}

.gallery-filter-btn--active {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.4) !important;
  transform: translateY(-2px);
}

.gallery-filter-btn--active i {
  color: #ffffff !important;
}

.gallery-filter-count {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  min-width: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.gallery-filter-btn--active .gallery-filter-count {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}

.gallery-filter-btn:not(.gallery-filter-btn--active) .gallery-filter-count {
  background: #f5efe4;
  color: #b8960c;
}

/* Main Section */
.gallery-main-section {
  background: #faf6f0;
  padding: 50px 0 70px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  transition: opacity 0.25s ease;
}

.gallery-grid--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Item Sizes */
.gallery-item { cursor: pointer; }

.gallery-item--wide  { grid-column: span 2; }
.gallery-item--tall  { grid-row: span 2; }
.gallery-item--normal { /* default */ }

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26,18,12,0.1);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,12,0.85) 0%, rgba(26,18,12,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
}

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

.gallery-item-overlay-inner {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-btn {
  transform: scale(1);
}

.gallery-item-info {
  text-align: center;
}

.gallery-item-cat-tag {
  display: inline-block;
  background: #b8960c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.gallery-item-label {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Empty */
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
}

.gallery-empty i {
  font-size: 3rem;
  color: #e8dcc4;
  margin-bottom: 16px;
  display: block;
}

.gallery-empty h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 8px;
}

.gallery-empty p {
  color: #827261;
  font-size: 0.9rem;
}

/* CTA Section */
.gallery-cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9f6ee 100%);
  padding: 60px 0;
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-cta-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.gallery-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.gallery-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.gallery-cta-btn--primary {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.35);
}

.gallery-cta-btn--primary:hover {
  background: #ffffff !important;
  color: #18130e !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

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

.gallery-cta-btn--outline:hover {
  background: rgba(184,150,12,0.12);
  border-color: #b8960c;
  color: #b8960c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,150,12,0.25);
}
.gallery-cta-btn--outline:hover i {
  color: #b8960c;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,20,40,0.96);
  backdrop-filter: blur(8px);
  animation: galleryLbFadeIn 0.2s ease;
}

@keyframes galleryLbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gallery-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.gallery-lb-close:hover {
  background: #e53935;
  transform: rotate(90deg);
}

.gallery-lb-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.gallery-lb-nav:hover {
  background: #b8960c;
  transform: translateY(-50%) scale(1.08);
}

.gallery-lb-nav--prev { left: 20px; }
.gallery-lb-nav--next { right: 20px; }

.gallery-lb-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: calc(100vw - 160px);
  gap: 20px;
}

.gallery-lb-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lb-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.gallery-lb-caption {
  text-align: center;
}

.gallery-lb-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #b8960c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.gallery-lb-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.gallery-lb-hint {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-hero { padding: 90px 0 90px; }

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

  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .gallery-hero-stats {
    gap: 16px;
    padding: 14px 24px;
  }

  .gallery-lb-nav--prev { left: 8px; }
  .gallery-lb-nav--next { right: 8px; }

  .gallery-lb-panel {
    width: calc(100vw - 100px);
  }

  .gallery-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-cta-actions {
    justify-content: center;
  }
}

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

  .gallery-item--wide { grid-column: span 1; }

  .gallery-filter-inner {
    gap: 6px;
  }
}

/* ==========================================================================
   Homepage Feature Info Boxes (Gold & Dark Warm Espresso Navy)
   ========================================================================== */
.service-wrap-layout1.rtin-light .service-box-layout1,
.service-wrap-layout1 .service-box-layout1.left,
.service-wrap-layout1 .service-box-layout1.right {
  background-color: #b8960c !important;
  color: #ffffff !important;
}

.service-wrap-layout1.rtin-light .service-box-layout1:hover,
.service-wrap-layout1 .service-box-layout1.left:hover,
.service-wrap-layout1 .service-box-layout1.right:hover {
  background-color: #967808 !important;
}

.service-wrap-layout1.rtin-dark .service-box-layout1,
.service-wrap-layout1 .service-box-layout1.no {
  background-color: #18130e !important;
  color: #ffffff !important;
}

.service-wrap-layout1.rtin-dark .service-box-layout1:hover,
.service-wrap-layout1 .service-box-layout1.no:hover {
  background-color: #2b2015 !important;
}

.service-box-layout1 .item-icon i,
.service-box-layout1 .item-icon i.primaryColor,
.service-box-layout1 .item-icon i::before {
  color: #ffffff !important;
}

.service-box-layout1 .item-title,
.service-box-layout1 .item-title a {
  color: #ffffff !important;
}

.service-box-layout1 p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ==========================================================================
   Welcome Section Styles
   ========================================================================== */
.rt-el-paragraph-title .rtin-title {
  color: #1c150e !important;
  font-weight: 800 !important;
}

.rt-el-paragraph-title .rtin-title span {
  color: #b8960c !important;
}

.rt-el-paragraph-title .sub-title {
  color: #b8960c !important;
  font-weight: 600 !important;
}

.rt-el-paragraph-title .rtin-paragraph {
  color: #695c4e !important;
  line-height: 1.8 !important;
}

/* ==========================================================================
   Meet Our Directors Section Styles
   ========================================================================== */
.elementor-element-32f46aa3 {
  background-color: #faf6f0 !important;
}

.team-box-layout42 {
  background-color: #ffffff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 25px rgba(26, 18, 12, 0.06) !important;
  border: 1px solid #e8dfd1 !important;
  transition: all 0.3s ease !important;
}

.team-box-layout42:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 35px rgba(184, 150, 12, 0.18) !important;
  border-color: #b8960c !important;
}

.team-box-layout42 .item-content .item-title a {
  color: #1c150e !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
}

.team-box-layout42 .item-content .item-title a:hover {
  color: #b8960c !important;
}

.team-box-layout42 .item-content p {
  color: #827261 !important;
  font-size: 0.88rem !important;
}

.team-box-layout42 .item-social ul li a {
  background-color: #f5efe4 !important;
  color: #b8960c !important;
  border-radius: 50% !important;
  transition: all 0.25s ease !important;
}

.team-box-layout42 .item-social ul li a:hover {
  background-color: #b8960c !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   Appointment CTA Banner (JUST MAKE AN APPOINTMENT & YOU'RE DONE!)
   ========================================================================== */
.elementor-element-65c59ec2,
.call-to-action-box-layout2 {
  background: linear-gradient(135deg, #18130e 0%, #2b2015 100%) !important;
  padding: 80px 20px !important;
  border-radius: 16px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.call-to-action-box-layout2 h2 {
  color: #ffffff !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  line-height: 1.3 !important;
}

.call-to-action-box-layout2 .item-btn {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 42px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
  box-shadow: 0 8px 24px rgba(184, 150, 12, 0.35) !important;
  transition: all 0.3s ease !important;
}

.call-to-action-box-layout2 .item-btn:hover {
  background: #ffffff !important;
  color: #18130e !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25) !important;
}

/* ==========================================================================
   Stats Counters Section (Awards, People working, Years of Experience)
   ========================================================================== */
.elementor-element-3941234c {
  background-color: #faf6f0 !important;
  padding: 60px 0 !important;
}

.progress-box-layout2 {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 32px 24px !important;
  box-shadow: 0 4px 20px rgba(26, 18, 12, 0.05) !important;
  border: 1px solid #e8dfd1 !important;
  transition: all 0.3s ease !important;
}

.progress-box-layout2:hover {
  transform: translateY(-4px) !important;
  border-color: #b8960c !important;
  box-shadow: 0 10px 30px rgba(184, 150, 12, 0.15) !important;
}

.progress-box-layout2 .item-icon img,
.progress-box-layout2 .item-icon svg {
  filter: sepia(100%) hue-rotate(5deg) saturate(300%) contrast(90%) !important;
}

.progress-box-layout2 .rt-el-counter,
.progress-box-layout2 .rt-counter-num {
  color: #b8960c !important;
  font-size: 2.4rem !important;
  font-weight: 900 !important;
}

.progress-box-layout2 p {
  color: #1c150e !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin-top: 6px !important;
}

/* ==========================================================================
   Why Choose Us & Immediate Needs Section (Patient-Centered Care, Urgent Care, Skilled Team, 24/7)
   ========================================================================== */
.heading-layout4 span.rtin-beforetitle,
.heading-layout4.dark span.rtin-beforetitle,
.heading-layout4.light span.rtin-beforetitle {
  color: #b8960c !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.heading-layout4 h2.rtin-title,
.heading-layout4.light h2.rtin-title {
  color: #1c150e !important;
  font-weight: 800 !important;
}

.heading-layout4 p.rtin-subtitle,
.heading-layout4.light p.rtin-subtitle {
  color: #695c4e !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.rt-el-info-box.rtin-style8 {
  background-color: #ffffff !important;
  border-radius: 14px !important;
  padding: 24px 20px !important;
  box-shadow: 0 4px 20px rgba(26, 18, 12, 0.05) !important;
  border: 1px solid #e8dfd1 !important;
  transition: all 0.3s ease !important;
}

.rt-el-info-box.rtin-style8:hover {
  transform: translateY(-4px) !important;
  border-color: #b8960c !important;
  box-shadow: 0 10px 30px rgba(184, 150, 12, 0.15) !important;
}

.rt-el-info-box.rtin-style8 .rtin-icon:before {
  background-color: #f5efe4 !important;
}

.rt-el-info-box.rtin-style8 .rtin-icon img,
.rt-el-info-box.rtin-style8 .rtin-icon svg {
  filter: sepia(100%) hue-rotate(5deg) saturate(300%) contrast(90%) !important;
}

.rt-el-info-box.rtin-style8 .rtin-title,
.rt-el-info-box.rtin-style8 .rtin-title a {
  color: #1c150e !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  transition: color 0.2s ease !important;
}

.rt-el-info-box.rtin-style8 .rtin-title a:hover {
  color: #b8960c !important;
}

.rt-el-info-box.rtin-style8 .rtin-text,
.rt-el-info-box.rtin-style8 p {
  color: #695c4e !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
}

/* ==========================================================================
   Cinematic Split Curtain Reveal Splashscreen
   ========================================================================== */
#preloader.splash-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent !important;
  pointer-events: auto;
}

/* Split Dark Curtain Panels */
.splash-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5vh;
  background: #18130e;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.splash-panel-top {
  top: 0;
  transform: translateY(0);
}

.splash-panel-bottom {
  bottom: 0;
  transform: translateY(0);
}

/* Leaving State - Curtain Slide Open Reveal */
.splash-curtain.leaving .splash-panel-top {
  transform: translateY(-100%);
}

.splash-curtain.leaving .splash-panel-bottom {
  transform: translateY(100%);
}

/* Content Box */
.splash-content-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 520px;
  padding: 0 24px;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.92);
  opacity: 0;
}

.splash-curtain.active .splash-content-box {
  opacity: 1;
  transform: scale(1);
}

.splash-curtain.leaving .splash-content-box {
  opacity: 0;
  transform: scale(1.08);
}

/* Animated Logo Container & Shimmer Card */
.splash-logo-frame {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.splash-logo-aura {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 12, 0.35) 0%, rgba(184, 150, 12, 0.08) 55%, transparent 75%);
  animation: logoAuraGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

.splash-logo-ring-spin {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 2px dashed rgba(184, 150, 12, 0.6);
  box-shadow: 0 0 25px rgba(184, 150, 12, 0.3);
  animation: logoRingRotate 10s linear infinite;
  pointer-events: none;
}

.splash-logo-card {
  position: relative;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 22px;
  padding: 12px;
  border: 3px solid #b8960c;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(184, 150, 12, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoCardFloat 3s ease-in-out infinite alternate;
}

.splash-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.splash-logo-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: logoShimmerSweep 3s ease-in-out infinite 0.5s;
  pointer-events: none;
}

/* Brand & Divider */
.splash-brand-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.splash-hospital-name {
  color: #b8960c !important;
  font-family: var(--font-title);
  font-size: 1.55rem !important;
  font-weight: 900 !important;
  letter-spacing: 3.5px !important;
  margin: 0 !important;
  text-shadow: 0 2px 12px rgba(184, 150, 12, 0.3);
}

.splash-gold-divider {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b8960c, #ffffff, #b8960c, transparent);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-curtain.active .splash-gold-divider {
  width: 140px;
}

.splash-motto-tag {
  color: #dfd5c6 !important;
  font-size: 0.92rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  opacity: 0.95;
}

/* Animations */
@keyframes logoAuraGlow {
  0% { transform: scale(0.95); opacity: 0.4; }
  100% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes logoRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoCardFloat {
  0% { transform: translateY(0px) scale(0.98); }
  100% { transform: translateY(-8px) scale(1.02); }
}

@keyframes logoShimmerSweep {
  0% { left: -150%; }
  40%, 100% { left: 150%; }
}

/* ==========================================================================
   Sleek, Compact & Professional Appointment CTA Banner
   ========================================================================== */
.elementor-element-65c59ec2 {
  padding: 40px 0 !important;
}

.call-to-action-box-layout2 {
  background: linear-gradient(135deg, #18130e 0%, #2b2015 100%) !important;
  padding: 28px 30px !important;
  border-radius: 14px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(184, 150, 12, 0.3) !important;
  box-shadow: 0 6px 20px rgba(24, 19, 14, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 0 auto !important;
  max-width: 900px !important;
}

.call-to-action-box-layout2 h2.item-title {
  color: #ffffff !important;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem) !important;
  font-weight: 800 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.5px !important;
}

.cta-subtitle {
  color: #dfd5c6 !important;
  font-size: 0.88rem !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

.call-to-action-box-layout2 .call-to-action-btn {
  margin-top: 4px !important;
}

.call-to-action-box-layout2 .item-btn {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 11px 32px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 4px 14px rgba(184, 150, 12, 0.35) !important;
  transition: all 0.25s ease !important;
}

.call-to-action-box-layout2 .item-btn:hover {
  background: #ffffff !important;
  color: #18130e !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================================================
   Fertility Services Page � Premium Rebuild
   ========================================================================== */

/* Shared Buttons */
.fert-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.35);
  border: none;
  cursor: pointer;
}
.fert-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 150, 12, 0.5);
  color: #ffffff !important;
}
.fert-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.fert-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}
.fert-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(184,150,12,0.12), rgba(184,150,12,0.06));
  color: #b8960c;
  border: 1px solid rgba(184,150,12,0.25);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Hero */
.fert-hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fert-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fert-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,19,14,0.82) 0%, rgba(24,19,14,0.55) 100%);
  z-index: 1;
}
.fert-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}
.fert-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin: 12px 0 !important;
}
.fert-hero-sub {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin-bottom: 28px !important;
  max-width: 540px;
}
.fert-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats Bar */
.fert-stats-bar {
  background: #18130e;
  padding: 28px 0;
}
.fert-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.fert-stat:last-child { border-right: none; }
.fert-stat strong {
  color: #b8960c !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
}
.fert-stat span {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem !important;
  text-align: center;
}

/* Why Section */
.fert-why-section {
  padding: 90px 0;
  background: #faf6f0;
}
.fert-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fert-why-img-col { position: relative; }
.fert-why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(24,19,14,0.2);
}
.fert-why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(184,150,12,0.4);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}
.fert-why-badge i { font-size: 1.5rem; }
.fert-why-text-col h2 {
  color: #18130e !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 8px 0 16px !important;
}
.fert-why-text-col p {
  color: #4a3f35 !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
}
.fert-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fert-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1c150e !important;
  font-size: 0.95rem;
  font-weight: 500;
}
.fert-why-list li i { color: #b8960c; font-size: 1rem; }

/* Treatments Tabs */
.fert-treatments-section {
  padding: 90px 0;
  background: #ffffff;
}
.fert-section-header { text-align: center; margin-bottom: 48px; }
.fert-section-header h2 {
  color: #18130e !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 8px 0 12px !important;
}
.fert-section-header p {
  color: #695c4e !important;
  max-width: 520px;
  margin: 0 auto !important;
  line-height: 1.7;
}
.fert-tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fert-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid #e8dfd1;
  background: #f9f5ef;
  color: #4a3f35;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: inherit;
}
.fert-tab-btn i { color: #b8960c; }
.fert-tab-btn:hover { border-color: #b8960c; color: #b8960c; transform: translateY(-2px); }
.fert-tab-btn.active {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(184,150,12,0.35);
}
.fert-tab-btn.active i { color: #ffffff; }
.fert-tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #faf6f0;
  border-radius: 20px;
  overflow: hidden;
}
.fert-tab-img { width: 100%; height: 360px; object-fit: cover; display: block; }
.fert-tab-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fert-tab-subtitle {
  color: #b8960c;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.fert-tab-body h3 {
  color: #18130e !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin: 0 !important;
}
.fert-tab-body p { color: #4a3f35 !important; line-height: 1.75 !important; margin: 0 !important; }

/* IVF Steps */
.fert-steps-section { padding: 90px 0; background: #18130e; }
.fert-section-header--light .fert-section-tag {
  background: rgba(184,150,12,0.2);
  border-color: rgba(184,150,12,0.4);
}
.fert-section-header--light h2 { color: #ffffff !important; }
.fert-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fert-step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,12,0.2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.fert-step-card:hover {
  background: rgba(184,150,12,0.1);
  border-color: rgba(184,150,12,0.5);
  transform: translateY(-4px);
}
.fert-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(184,150,12,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.fert-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,12,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fert-step-icon i { color: #b8960c; font-size: 1.1rem; }
.fert-step-card h4 { color: #ffffff !important; font-size: 1rem !important; font-weight: 700 !important; margin: 0 0 8px !important; }
.fert-step-card p { color: rgba(255,255,255,0.65) !important; font-size: 0.88rem !important; line-height: 1.65 !important; margin: 0 !important; }

/* FAQ */
.fert-faq-section { padding: 90px 0; background: #faf6f0; }
.fert-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.fert-faq-left h2 { color: #18130e !important; font-size: 1.9rem !important; font-weight: 800 !important; margin: 8px 0 12px !important; }
.fert-faq-left p { color: #695c4e !important; line-height: 1.7 !important; }
.fert-faq-right { display: flex; flex-direction: column; gap: 12px; }
.fert-faq-item {
  background: #ffffff;
  border: 1.5px solid #e8dfd1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.fert-faq-item.open { border-color: #b8960c; }
.fert-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 700;
  color: #18130e;
  font-size: 0.95rem;
  gap: 12px;
}
.fert-faq-q i { color: #b8960c; flex-shrink: 0; }
.fert-faq-a { padding: 0 22px 18px; color: #695c4e; font-size: 0.92rem; line-height: 1.7; }

/* Bottom Map + CTA */
.fert-bottom-section { padding: 0; }
.fert-bottom-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.fert-map-col iframe { width: 100%; height: 100%; min-height: 420px; border: none; display: block; }
.fert-cta-col {
  background: #18130e;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fert-cta-icon { font-size: 2rem; color: #b8960c; margin-bottom: 16px; }
.fert-cta-col h3 { color: #ffffff !important; font-size: 1.6rem !important; font-weight: 800 !important; margin: 0 0 10px !important; }
.fert-cta-col > p { color: rgba(255,255,255,0.7) !important; margin-bottom: 24px !important; line-height: 1.6 !important; }
.fert-cta-contacts { display: flex; flex-direction: column; gap: 10px; }
.fert-cta-contacts a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85) !important; font-size: 0.95rem; text-decoration: none !important; transition: color 0.2s;
}
.fert-cta-contacts a:hover { color: #b8960c !important; }
.fert-cta-contacts a i { color: #b8960c; }

/* Responsive */
@media (max-width: 991px) {
  .fert-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fert-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .fert-why-img { height: 320px; }
  .fert-tab-content { grid-template-columns: 1fr; }
  .fert-tab-img { height: 240px; }
  .fert-tab-body { padding: 28px; }
  .fert-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .fert-faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .fert-bottom-grid { grid-template-columns: 1fr; }
  .fert-map-col iframe { min-height: 280px; }
}
@media (max-width: 600px) {
  .fert-hero { height: 480px; }
  .fert-steps-grid { grid-template-columns: 1fr; }
  .fert-hero-actions { flex-direction: column; }
  .fert-why-badge { bottom: -10px; right: 10px; font-size: 0.8rem; }
}

/* Welcome image section */
.welcome-img-wrap {
  width: 100%;
  height: 100%;
}
.welcome-section-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Why Choose Us - right side image full height */
.elementor-element-86aa88a .elementor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ==========================================================================
   LayerSlider Hero Slider Responsive Fixes
   ========================================================================== */

/* Responsive Hide Rules */
@media (min-width: 992px) {
  .ls-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ls-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .ls-hide-phone {
    display: none !important;
  }
}

/* Mobile & Tablet Slider Premium Overhaul */
@media (max-width: 1279px) {
  .ls-wp-container {
    height: 420px !important; /* Slightly taller on mobile/tablet to comfortably fit the card */
  }

  .ls-slide {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }

  /* Transparent layout wrapper around the text layers on mobile/tablet */
  .ls-mobile-text-card {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 480px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    box-shadow: none !important;
    z-index: 5 !important;
    text-align: center !important;
  }

  /* Reset all children inside the text card to static flow and add premium drop shadows */
  html body .ls-wp-container .ls-mobile-text-card > .ls-layer,
  html body .ls-wp-container .ls-mobile-text-card > .ls-l,
  html body .ls-wp-container .ls-mobile-text-card > a > .ls-layer,
  html body .ls-wp-container .ls-mobile-text-card > a > .ls-l,
  html body .ls-wp-container .ls-mobile-text-card .ls-l,
  html body .ls-wp-container .ls-mobile-text-card .ls-text-layer,
  html body .ls-wp-container .ls-mobile-text-card .ls-button-layer,
  html body .ls-wp-container .ls-mobile-text-card h1,
  html body .ls-wp-container .ls-mobile-text-card h2,
  html body .ls-wp-container .ls-mobile-text-card h3,
  html body .ls-wp-container .ls-mobile-text-card p,
  html body .ls-wp-container .ls-mobile-text-card a,
  html body .ls-wp-container .ls-mobile-text-card span {
    position: static !important;
    display: block !important;
    margin: 6px auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    white-space: normal !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
  }

  /* Typography inside the card */
  html body .ls-wp-container .ls-mobile-text-card h1 {
    font-size: clamp(18px, 5vw, 22px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }

  html body .ls-wp-container .ls-mobile-text-card h2 {
    font-size: clamp(14px, 3.8vw, 16px) !important;
    font-weight: 600 !important;
    color: #b8960c !important; /* Gold brand subtitle */
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  html body .ls-wp-container .ls-mobile-text-card h3 {
    font-size: clamp(12px, 3.2vw, 14px) !important;
    font-weight: 400 !important;
    color: #dfd5c6 !important; /* Muted warm grey */
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  html body .ls-wp-container .ls-mobile-text-card p {
    font-size: clamp(12px, 3.2vw, 14px) !important;
    font-weight: 400 !important;
    color: #dfd5c6 !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  /* Buttons centered in the flex card */
  html body .ls-wp-container .ls-mobile-text-card .btn-slider,
  html body .ls-wp-container .ls-mobile-text-card .ls-button-layer {
    display: inline-block !important;
    align-self: center !important;
    width: auto !important;
    background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%) !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(184, 150, 12, 0.4) !important;
    margin-top: 10px !important;
    text-decoration: none !important;
  }
}

/* ==========================================================================
   About Us Page — Premium Rebuild
   ========================================================================== */

/* Shared Elements */
.about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(184,150,12,0.12), rgba(184,150,12,0.06));
  color: #b8960c;
  border: 1px solid rgba(184,150,12,0.25);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(184, 150, 12, 0.35);
  border: none;
  cursor: pointer;
}
.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 150, 12, 0.5);
  color: #ffffff !important;
}

/* Hero Section */
.about-hero-section {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,19,14,0.85) 0%, rgba(24,19,14,0.6) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}
.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,150,12,0.2);
  color: #b8960c;
  border: 1px solid rgba(184,150,12,0.4);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.about-hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin: 12px 0 !important;
}
.about-hero-sub {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* Our Story Section */
.about-story-section {
  padding: 90px 0;
  background: #ffffff;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-story-text h2 {
  color: #18130e !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 8px 0 16px !important;
}
.about-story-text p {
  color: #4a3f35 !important;
  line-height: 1.75 !important;
  margin-bottom: 20px !important;
}
.about-story-cta-box {
  margin-top: 28px;
}
.about-story-img-col {
  position: relative;
}
.about-img-frame {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}
.about-story-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(24,19,14,0.15);
}
.about-experience-badge {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: linear-gradient(135deg, #b8960c, #8a6e00);
  color: #ffffff;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(184,150,12,0.4);
}
.about-experience-badge strong {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-experience-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Vision, Mission, Objectives Tabs */
.about-vmo-section {
  padding: 90px 0;
  background: #faf6f0;
}
.about-vmo-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-vmo-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-vmo-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1.5px solid #e8dfd1;
  background: #ffffff;
  color: #4a3f35;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: inherit;
  text-align: left;
}
.about-vmo-tab-btn i {
  color: #b8960c;
  font-size: 1.1rem;
}
.about-vmo-tab-btn:hover {
  border-color: #b8960c;
  transform: translateX(5px);
}
.about-vmo-tab-btn.active {
  background: linear-gradient(135deg, #b8960c 0%, #8a6e00 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}
.about-vmo-tab-btn.active i {
  color: #ffffff;
}
.about-vmo-content-card {
  background: #ffffff;
  border: 1.5px solid #e8dfd1;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(24,19,14,0.03);
  min-height: 280px;
  display: flex;
  align-items: center;
}
.about-vmo-pane h3 {
  color: #18130e !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin: 0 0 16px !important;
}
.about-vmo-pane p {
  color: #695c4e !important;
  line-height: 1.75 !important;
  font-size: 1rem !important;
  margin-bottom: 16px !important;
}
.about-vmo-pane p:last-of-type {
  margin-bottom: 0 !important;
}
.about-bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a3f35 !important;
  font-size: 0.95rem;
  line-height: 1.4;
}
.about-bullet-list li i {
  color: #b8960c;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* Core Values Section */
.about-values-section {
  padding: 90px 0;
  background: #ffffff;
}
.about-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-section-header h2 {
  color: #18130e !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 8px 0 12px !important;
}
.about-section-header p {
  color: #695c4e !important;
  max-width: 520px;
  margin: 0 auto !important;
  line-height: 1.7;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about-value-card {
  background: #faf6f0;
  border: 1px solid #e8dfd1;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.25s ease;
}
.about-value-card:hover {
  transform: translateY(-5px);
  border-color: #b8960c;
  box-shadow: 0 10px 30px rgba(184,150,12,0.15);
  background: #ffffff;
}
.about-val-icon {
  width: 56px;
  height: 56px;
  background: rgba(184,150,12,0.12);
  color: #b8960c;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.22s ease;
}
.about-value-card:hover .about-val-icon {
  background: #b8960c;
  color: #ffffff;
}
.about-value-card h3 {
  color: #18130e !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}
.about-value-card p {
  color: #695c4e !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Clientele / Stats Section */
.about-clientele-section {
  padding: 90px 0;
  background: #18130e;
  color: #ffffff;
}
.about-clientele-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.about-clientele-text .about-section-tag {
  background: rgba(184,150,12,0.2);
  border-color: rgba(184,150,12,0.4);
}
.about-clientele-text h2 {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 8px 0 16px !important;
}
.about-clientele-text p {
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.75 !important;
  margin-bottom: 16px !important;
}
.about-clientele-text p strong {
  color: #b8960c;
}
.about-clientele-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,12,0.2);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
}
.about-stat-item:hover {
  background: rgba(184,150,12,0.1);
  border-color: rgba(184,150,12,0.5);
  transform: translateY(-2px);
}
.about-stat-item strong {
  color: #b8960c !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  line-height: 1;
}
.about-stat-item span {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-img {
    height: 340px;
  }
  .about-vmo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-vmo-content-card {
    padding: 30px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-clientele-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .about-experience-badge {
    bottom: -10px;
    left: 10px;
    padding: 12px 18px;
  }
  .about-experience-badge strong {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Contact Page Success Card & Custom Footer Overrides
   ========================================================================== */

/* Change all potential green footer elements to gold */
.site-footer a:hover,
.site-footer .menu li a:hover,
.site-footer i,
.site-footer .footer-social a:hover,
.site-footer .contact-widget i,
.site-footer .footer-header h3 {
  color: #b8960c !important;
}
.site-footer .footer-social a:hover,
.site-footer .footer-header h3::after {
  background-color: #b8960c !important;
}

/* Success Card Premium styling */
.contact-success-card {
  animation: fadeInSuccess 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.success-icon-wrap {
  position: relative;
  display: inline-block;
}

.success-icon {
  animation: scaleUpIcon 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUpIcon {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Department Listing Card hover effects */
.department-listing-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(24, 19, 14, 0.04);
  border: 1px solid #e3e3e3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.department-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(184, 150, 12, 0.1) !important;
}
.department-details-link:hover {
  color: #8a6e00 !important;
}

/* ==========================================================================
   Responsive Mobile Improvements
   ========================================================================== */

/* Responsive Offerings List Grid */
.offerings-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .offerings-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Responsive Services hub grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

/* Responsive Success actions */
.success-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 480px) {
  .success-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* Mobile Menu Backdrop Overlay */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(24, 19, 14, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
