/* ====================================================
   VISHWADHARM AYURVED & PANCHKARMA CLINIC
   style.css — Custom Styles
   ==================================================== */

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --gold: #C62828;
  --gold-light: #EF9A9A;
  --gold-pale: #FFEBEE;
  --cream: #F1F8E9;
  --text-dark: #1c1c1c;
  --text-mid: #444;
  --text-light: #777;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(27, 94, 32, .09);
  --shadow-md: 0 6px 32px rgba(27, 94, 32, .14);
  --shadow-lg: 0 16px 60px rgba(27, 94, 32, .18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---- Global Reset & Base ---- */
*,
*::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-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Section Spacing ---- */
.section-pad {
  padding: 90px 0;
}

/* ---- Section Labels ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(198, 40, 40, .25);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 18px rgba(46, 125, 50, .35);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #B71C1C));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(198, 40, 40, .4);
  transform: translateY(-2px);
}

/* =======================================
   TOP BAR
======================================= */
.top-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1050;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info i {
  color: var(--gold-light);
}

.top-bar-social a {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  transition: color var(--transition);
}

.top-bar-social a:hover {
  color: var(--gold-light);
}

/* =======================================
   HEADER / NAVBAR
======================================= */
.navbar-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 94, 32, 0.3);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.main-header {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27, 94, 32, .1);
  z-index: 1040;
  transition: box-shadow var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Brand */
.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46, 125, 50, .3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
}

.brand-sub {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
}

/* Nav links */
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--green-dark) !important;
  background: var(--green-pale);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark)) !important;
  color: var(--white) !important;
  padding: 8px 22px !important;
  box-shadow: 0 3px 14px rgba(46, 125, 50, .3);
}

.btn-nav-cta::after {
  display: none;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), #B71C1C) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(198, 40, 40, .4);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
  cursor: pointer;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =======================================
   HERO SECTION
======================================= */
.hero-section {
  position: relative;
}

.carousel-item.hero-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-1 {
  background-color: var(--green-dark);
  background-image: url('../images/b1.webp');
}

.slide-2 {
  background-color: #1B5E20;
  background-image: url('../images/b2.webp');
}

.slide-3 {
  background-color: #2E7D32;
  background-image: url('../images/b3.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.918) 0%, rgba(0, 0, 0, 0.658) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.carousel-caption {
  position: absolute;
  bottom: auto;
  top: 50%;
  left: 5%;
  right: auto;
  transform: translateY(-50%);
  text-align: left;
  max-width: 620px;
  padding: 0;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(198, 40, 40, .2);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  animation: fadeInDown .7s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInLeft .8s ease .1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInLeft .8s ease .2s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp .8s ease .3s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), #B71C1C);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(198, 40, 40, .4);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: transparent;
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Carousel controls */
.carousel-arrow {
  font-size: 1.4rem;
  color: var(--white);
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, .25);
}

.carousel-arrow:hover {
  background: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 20px;
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  transition: all var(--transition);
}

.carousel-indicators .active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 6px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  z-index: 3;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollDown 1.8s ease-in-out infinite;
}

/* =======================================
   ABOUT SECTION
======================================= */
.about-section {
  background: var(--cream);
}

.about-img-wrapper {
  position: relative;
  padding: 20px 20px 20px 0;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  height: 420px;
  width: 100%;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--green-dark));
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
}

.badge-txt {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
}

.about-img-leaf {
  position: absolute;
  color: var(--green-light);
  opacity: .35;
  font-size: 2rem;
  animation: floatLeaf 4s ease-in-out infinite;
}

.leaf-1 {
  top: 0;
  right: 30px;
}

.leaf-2 {
  bottom: 10px;
  left: 0;
  font-size: 1.5rem;
  animation-delay: -2s;
}

.about-desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-chip i {
  color: var(--green-mid);
  font-size: 1rem;
}

.feature-chip:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-chip:hover i {
  color: var(--gold-light);
}

/* =======================================
   SERVICES SECTION
======================================= */
.services-section {
  background: var(--white);
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.stab {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 22px;
  border: 1.5px solid var(--green-pale);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .03em;
}

.stab:hover,
.stab.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 94, 32, .25);
}

.service-card {
  background: var(--white);
  border: 1.5px solid #A5D6A7;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green-pale), #b7e4c7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-mid);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--gold-light);
  transform: rotate(-5deg) scale(1.05);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e1813;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.94rem;
  color: #4e4e4e;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50px;
  padding: 3px 12px;
  border: 1px solid rgba(198, 40, 40, .2);
}

/* Hidden service items */
.service-item.hidden {
  display: none;
}

/* =======================================
   BUDGET SECTION
======================================= */
.budget-section {
  background: var(--cream);
}

.budget-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.budget-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-mid);
}

.budget-list li i {
  color: var(--green-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.budget-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #E8F5E9;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.budget-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.budget-card.card-1:hover {
  border-color: var(--green-light);
}

.budget-card.card-2:hover {
  border-color: var(--gold);
}

.budget-card.card-3:hover {
  border-color: var(--green-mid);
}

.budget-card.card-4:hover {
  border-color: var(--gold-light);
}

.bc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--green-mid);
}

.card-2 .bc-icon {
  color: var(--gold);
}

.card-4 .bc-icon {
  color: var(--gold);
}

.budget-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.budget-card p {
  font-size: .86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* =======================================
   WHY CHOOSE US
======================================= */
.whyus-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.whyus-section::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.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.whyus-section .section-tag {
  color: var(--gold-light);
  background: rgba(198, 40, 40, .15);
  border-color: rgba(201, 146, 42, .3);
}

.whyus-section .section-title {
  color: var(--white);
}

.whyus-section .section-subtitle {
  color: rgba(255, 255, 255, .65);
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(27, 94, 32, .3);
}

.why-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .06);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.why-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

/* =======================================
   COUNTER SECTION
======================================= */
.counter-section {
  background: linear-gradient(135deg, var(--green-pale), var(--cream));
  border-top: 1px solid rgba(198, 40, 40, .15);
  border-bottom: 1px solid rgba(198, 40, 40, .15);
}

.counter-card {
  padding: 20px;
  position: relative;
}

.counter-icon {
  font-size: 2.2rem;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 4px;
}

.counter-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* =======================================
   GALLERY
======================================= */
.gallery-section {
  background: var(--white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #E8F5E9;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 32, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.8rem;
  color: var(--gold-light);
}

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

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

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.lightbox-img-wrap {
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 60px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* =======================================
   FAQ SECTION
======================================= */
.faq-section {
  background: var(--cream);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #E8F5E9 !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-btn {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  padding: 18px 22px;
  border: none;
  box-shadow: none !important;
}

.faq-btn:focus {
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--gold);
  background: var(--gold-pale);
}

.faq-btn::after {
  filter: invert(20%) sepia(60%) saturate(400%) hue-rotate(90deg);
}

.faq-body {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 22px 18px;
  background: var(--white);
}

/* =======================================
   CONTACT SECTION
======================================= */
.contact-section {
  background: var(--white);
}

.contact-info-box {
  background: var(--green-dark);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(198, 40, 40, .2);
  border: 1px solid rgba(46, 125, 50, .35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-text strong {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}

.ci-text span {
  font-size: .92rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
}

.ci-text a {
  color: rgba(255, 255, 255, .9);
}

.ci-text a:hover {
  color: var(--gold-light);
}

.contact-map iframe {
  border-radius: var(--radius-sm);
}

/* Contact Form */
.contact-form-box {
  background: var(--cream);
  border: 1.5px solid #E8F5E9;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-label span {
  color: var(--gold);
}

.custom-input {
  border: 1.5px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.custom-input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
  outline: none;
}

.form-success {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  padding: 12px 16px;
  font-weight: 500;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-success i {
  font-size: 1.2rem;
  color: var(--green-mid);
}

/* =======================================
   FOOTER
======================================= */
.main-footer {
  background: var(--green-dark);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .6);
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  background: rgba(27, 94, 32, .3);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  margin: 0;
}

/* =======================================
   FLOATING BUTTONS
======================================= */
.float-btn {
  position: fixed;
  bottom: 128px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(27, 94, 32, .3);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}

.float-whatsapp {
  left: 24px;
  background: #25d366;
  color: var(--white);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.float-call {
  right: 24px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  animation: floatPulse 2.5s ease-in-out infinite .5s;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--white);
}

.float-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 8px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(198, 40, 40, .4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* =======================================
   ANIMATIONS
======================================= */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}

@keyframes floatLeaf {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(27, 94, 32, .3), 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 6px 24px rgba(27, 94, 32, .3), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Scroll reveal animation states */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0);
}

/* =======================================
   RESPONSIVE — TABLET
======================================= */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 70px 0;
  }

  .carousel-item.hero-slide {
    min-height: 70vh;
  }

  .carousel-caption {
    left: 5%;
    right: 5%;
    max-width: 100%;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .about-img-wrapper {
    padding: 0 0 20px 0;
  }

  .about-img-badge {
    right: -10px;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid #E8F5E9;
  }

  .nav-link {
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
  }

  .btn-nav-cta {
    margin-top: 8px;
    text-align: center;
  }
}

/* =======================================
   RESPONSIVE — MOBILE
======================================= */
@media (max-width: 767.98px) {
  :root {
    font-size: 15px;
  }

  .section-pad {
    padding: 56px 0;
  }

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

  .top-bar-info {
    justify-content: center;
    font-size: .75rem;
  }

  .carousel-item.hero-slide {
    min-height: 85vh;
  }

  .carousel-caption {
    top: 52%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-img-badge {
    right: 0;
    bottom: 10px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 24px 18px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .back-to-top {
    right: 14px;
    bottom: 8px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .float-whatsapp {
    left: 16px;
  }

  .float-call {
    right: 16px;
  }

  .counter-num {
    font-size: 2.4rem;
  }

  .counter-plus {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .services-tabs {
    gap: 6px;
  }

  .stab {
    font-size: .78rem;
    padding: 6px 14px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

/* =======================================
   LOGO STYLES
======================================= */
.navbar-logo {
  width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  filter: brightness(1.1);
}

/* =======================================
   SERVICE CARD — IMAGE LAYOUT
======================================= */
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Suppress old icon if still present */
.service-card .service-icon {
  display: none;
}

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.07);
}

.service-img-wrap .service-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  margin: 0;
  font-size: .7rem;
  backdrop-filter: blur(4px);
  background: rgba(27, 94, 32, 0.88);
  color: #fff;
  border: none;
}

.service-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-body .service-name {
  margin-bottom: 0;
}

.service-body .service-desc {
  margin-bottom: 0;
  flex: 1;
}

/* =======================================
   SERVICES TABS — 7 tabs responsive
======================================= */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.stab {
  font-size: .82rem;
  padding: 7px 18px;
}

@media (max-width: 575.98px) {
  .stab {
    font-size: .76rem;
    padding: 6px 12px;
  }
}


/* ====================================================
   VISHWADHARM AYURVED & PANCHKARMA CLINIC
   testimonials.css — Testimonials Section Styles
   ==================================================== */

/* =======================================
   TESTIMONIALS SECTION
======================================= */
.testimonials-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern bg */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Section tag override for dark bg */
.testimonials-section .section-tag {
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-title em {
  color: var(--gold-light);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,.6);
}

/* ---- Testimonial Card ---- */
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.testi-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.testi-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}

.testi-card:hover::after {
  transform: scaleX(1);
}

/* ---- Quote Icon ---- */
.testi-quote {
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  opacity: .75;
}

/* ---- Review Text ---- */
.testi-text {
  font-size: .93rem;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  flex: 1;
  margin: 0;
  font-style: italic;
}

/* ---- Stars ---- */
.testi-stars {
  display: flex;
  gap: 4px;
  font-size: .9rem;
  color: var(--gold-light);
}

/* ---- Author Row ---- */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ---- Avatar Circle ---- */
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
  border: 2px solid rgba(255,255,255,.2);
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.testi-loc {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 3px;
}

.testi-loc i {
  font-size: .75rem;
  color: var(--gold-light);
}

/* ---- Instagram CTA ---- */
.testi-insta-text {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 28px rgba(131,58,180,.4);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}

.btn-insta i {
  font-size: 1.15rem;
}

.btn-insta:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(131,58,180,.55);
  filter: brightness(1.08);
}

.btn-insta:active {
  transform: translateY(-1px) scale(1);
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 767.98px) {
  .testi-card {
    padding: 24px 20px;
  }

  .testi-text {
    font-size: .88rem;
  }

  .btn-insta {
    padding: 12px 26px;
    font-size: .88rem;
  }
}

@media (max-width: 575.98px) {
  .testi-insta-text {
    font-size: .88rem;
    padding: 0 10px;
  }
}
/* ===== HERO SHLOKA BADGE ===== */
.hero-shloka-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,200,100,0.5);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  max-width: 560px;
}
.hero-shloka-sanskrit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: #f5d78e;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hero-shloka-meaning {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ===== NAVBAR BRAND TEXT ===== */
.navbar-brand-text {
  line-height: 1.15;
}
.brand-line-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light, #c8a97e);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-line-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark, #2c1810);
  letter-spacing: 0.01em;
}
.main-header.scrolled .brand-line-bottom,
.main-header .brand-line-bottom {
  color: var(--dark, #2c1810);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #f9f4ee;
}
.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.video-thumb-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: #1a0a00;
  overflow: hidden;
  position: relative;
}
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1a0a00;
}
.instagram-embed-wrap {
  background: #fafafa;
}
.instagram-embed-wrap .instagram-media {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: unset !important;
  width: 100% !important;
  height: 100%;
}
.insta-fallback-link {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 60px 20px;
  color: #c13584;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
}
.insta-fallback-link i {
  font-size: 1.6rem;
}
.video-card-body {
  padding: 16px 18px 18px;
}
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark, #2c1810);
  margin-bottom: 6px;
}
.video-desc {
  font-size: 0.85rem;
  color: #7a6a5a;
  margin: 0;
}

/* ===== VISITING SCHEDULE ===== */
.visiting-schedule {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,126,0.1);
  border-left: 3px solid var(--gold-light, #c8a97e);
  border-radius: 0 6px 6px 0;
  padding: 5px 10px;
}
.vs-city {
  font-weight: 600;
  color: var(--dark, #2c1810);
  min-width: 100px;
  font-size: 0.88rem;
}
.vs-time {
  font-size: 0.82rem;
  color: #7a6a5a;
}

/* ====================================================
   NAVBAR BRAND TEXT
   ==================================================== */
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar-brand-text .brand-small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.navbar-brand-text .brand-big {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

/* ====================================================
   DOCTORS SECTION
   ==================================================== */
.doctors-section {
  background: var(--green-pale);
}

/* Tab Nav */
.doctor-tabs-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.doc-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 32px;
  border: 2px solid #c8e6c9;
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 220px;
}
.doc-tab-btn:hover {
  border-color: var(--green-mid);
  background: #f1f8e9;
}
.doc-tab-btn.active {
  border-color: var(--green-dark);
  background: var(--green-dark);
}
.doc-tab-btn .doc-tab-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: color var(--transition);
}
.doc-tab-btn.active .doc-tab-name {
  color: var(--white);
}
.doc-tab-btn .doc-tab-role {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.doc-tab-btn.active .doc-tab-role {
  color: #a5d6a7;
}

/* Doctor Panel */
.doctor-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: docFadeIn 0.4s ease;
}
.doctor-panel.active {
  display: block;
}
@keyframes docFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Doctor Image */
.doctor-img-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, var(--green-pale) 0%, #c8e6c9 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 420px;
}
.doctor-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Doctor Content */
.doctor-content {
  padding: 48px 48px 48px 40px;
}
.doctor-badge-pill {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.doctor-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.doctor-subtitle {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 18px;
}
.doctor-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.doctor-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 8px;
}
.expertise-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}
.expertise-item i {
  color: var(--green-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .doctor-img-wrap {
    min-height: 320px;
    border-radius: 0;
  }
  .doctor-img {
    min-height: 320px;
  }
  .doctor-content {
    padding: 32px 24px;
  }
  .doctor-name {
    font-size: 1.7rem;
  }
  .doc-tab-btn {
    min-width: 160px;
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .doctor-expertise {
    grid-template-columns: 1fr 1fr;
  }
  .doctor-content {
    padding: 24px 20px;
  }
  .doc-tab-btn {
    min-width: 140px;
    padding: 10px 14px;
  }
  .doc-tab-btn .doc-tab-name {
    font-size: 0.95rem;
  }
}

/* ---- Compact Doctor Cards (2-column) ---- */
.doc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(27,94,32,0.08);
  height: 100%;
}
.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.doc-card-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green-pale);
  outline: 2px solid var(--green-light);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.doc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doc-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.doc-card-quals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doc-card-quals span {
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--green-pale);
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto;
}
.doc-card-quals span i {
  color: var(--green-mid);
  font-size: 0.75rem;
}
