/* ==========================================================================
   Green Homeo Clinic — Stylesheet
   Dr. Mrs. Irfan | Homeopathic Skin & Wellness Care
   ========================================================================== */

:root {
  /* Brand palette — deep emerald / leaf green / soft gold */
  --gh-primary: #0b6e4f;
  --gh-primary-dark: #084a35;
  --gh-primary-darker: #052f22;
  --gh-secondary: #4caf6d;
  --gh-secondary-light: #eaf6ee;
  --gh-accent: #c9a04b;
  --gh-accent-light: #f2e6c9;

  --gh-bg: #fbfdfb;
  --gh-bg-tint: #f3f9f4;
  --gh-card: #ffffff;

  --gh-text: #1f2a24;
  --gh-text-muted: #5b6b62;
  --gh-text-soft: #7c8b82;
  --gh-border: #e3ece5;

  --gh-success: #2e8b57;
  --gh-shadow-sm: 0 4px 16px rgba(11, 78, 53, 0.06);
  --gh-shadow-md: 0 12px 32px rgba(11, 78, 53, 0.1);
  --gh-shadow-lg: 0 24px 60px rgba(8, 74, 53, 0.16);

  --gh-radius-sm: 12px;
  --gh-radius-md: 20px;
  --gh-radius-lg: 28px;
  --gh-radius-pill: 999px;

  --gh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gh-dur-fast: 300ms;
  --gh-dur-med: 500ms;
  --gh-dur-slow: 700ms;

  --gh-font-heading: "Poppins", "Segoe UI", sans-serif;
  --gh-font-body: "Inter", "Segoe UI", sans-serif;

  --gh-nav-h: 84px;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--gh-nav-h);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--gh-font-body);
  color: var(--gh-text);
  background-color: var(--gh-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

p {
  color: var(--gh-text-muted);
}

a {
  color: var(--gh-primary);
  text-decoration: none;
  transition: color var(--gh-dur-fast) var(--gh-ease);
}

a:hover {
  color: var(--gh-primary-dark);
}

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

.container,
.container-fluid {
  max-width: 1320px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 2000;
  background: var(--gh-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--gh-radius-sm);
  transition: top var(--gh-dur-fast) var(--gh-ease);
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* Visible focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--gh-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Utility / Section framework
   ========================================================================== */

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section-tint {
  background: var(--gh-bg-tint);
}

.section-dark {
  background: linear-gradient(160deg, var(--gh-primary-darker) 0%, var(--gh-primary-dark) 55%, var(--gh-primary) 100%);
  color: #eafaf1;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .eyebrow {
  color: #eafaf1;
}

.section-dark p {
  color: rgba(234, 250, 241, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gh-font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gh-primary);
  background: var(--gh-secondary-light);
  padding: 0.45rem 1rem;
  border-radius: var(--gh-radius-pill);
  margin-bottom: 1.25rem;
}

.eyebrow i {
  font-size: 0.9rem;
  color: var(--gh-accent);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--gh-text-muted);
  max-width: 640px;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-head.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(120deg, var(--gh-secondary) 0%, var(--gh-primary) 55%, var(--gh-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gh-secondary);
  margin: 0 0 1.5rem;
}

.divider-leaf::before,
.divider-leaf::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gh-border));
}

.divider-leaf::after {
  background: linear-gradient(90deg, var(--gh-border), transparent);
}

/* Buttons */
.btn {
  font-family: var(--gh-font-heading);
  font-weight: 500;
  border-radius: var(--gh-radius-pill);
  padding: 0.85rem 1.9rem;
  transition: transform var(--gh-dur-fast) var(--gh-ease),
    box-shadow var(--gh-dur-fast) var(--gh-ease),
    background-color var(--gh-dur-fast) var(--gh-ease),
    color var(--gh-dur-fast) var(--gh-ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-sm {
  padding: 0.6rem 1.35rem;
  font-size: 0.9rem;
}

.btn-primary-gh {
  background: linear-gradient(135deg, var(--gh-primary) 0%, var(--gh-primary-dark) 100%);
  border: none;
  color: #fff;
  box-shadow: var(--gh-shadow-md);
}

.btn-primary-gh:hover,
.btn-primary-gh:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--gh-shadow-lg);
  color: #fff;
}

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

.btn-outline-gh:hover,
.btn-outline-gh:focus-visible {
  border-color: var(--gh-primary);
  background: var(--gh-secondary-light);
  color: var(--gh-primary-darker);
  transform: translateY(-3px);
}

.btn-light-gh {
  background: #fff;
  border: none;
  color: var(--gh-primary-dark);
  box-shadow: var(--gh-shadow-md);
}

.btn-light-gh:hover,
.btn-light-gh:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--gh-shadow-lg);
  color: var(--gh-primary-dark);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  color: #fff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-3px);
}

/* Ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  animation: ripple 650ms ease-out;
}

@keyframes ripple {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.gh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.4rem 0;
  transition: padding var(--gh-dur-fast) var(--gh-ease),
    background-color var(--gh-dur-fast) var(--gh-ease),
    box-shadow var(--gh-dur-fast) var(--gh-ease),
    backdrop-filter var(--gh-dur-fast) var(--gh-ease);
  background: transparent;
}

.gh-navbar.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(251, 253, 251, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 30px rgba(11, 78, 53, 0.08);
}

.gh-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gh-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gh-primary-darker) !important;
}

.gh-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gh-secondary), var(--gh-primary));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--gh-shadow-sm);
}

.gh-brand .brand-sub {
  display: block;
  font-family: var(--gh-font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gh-text-soft);
}

.gh-navbar .nav-link {
  font-weight: 500;
  color: var(--gh-text) !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--gh-radius-pill);
  position: relative;
}

.gh-navbar .nav-link.active,
.gh-navbar .nav-link:hover {
  color: var(--gh-primary) !important;
  background: var(--gh-secondary-light);
}

.gh-navbar .navbar-toggler {
  border: none;
  padding: 0.4rem 0.55rem;
  border-radius: var(--gh-radius-sm);
  background: var(--gh-secondary-light);
}

.gh-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--gh-accent-light);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: calc(var(--gh-nav-h) + 5rem);
  padding-bottom: 7.5rem;
  overflow-x: clip;
  background: radial-gradient(1100px 620px at 85% -10%, #eaf6ee 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 90%, #f4ecd6 0%, transparent 55%),
    var(--gh-bg);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
  opacity: 0.55;
  animation: floatY 9s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 340px;
  height: 340px;
  top: -80px;
  right: 8%;
  background: radial-gradient(circle at 30% 30%, var(--gh-secondary-light), transparent 70%);
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 220px;
  height: 220px;
  bottom: 5%;
  left: 2%;
  background: radial-gradient(circle at 30% 30%, var(--gh-accent-light), transparent 70%);
  animation-delay: 2s;
}

.hero-leaf {
  position: absolute;
  color: var(--gh-secondary);
  opacity: 0.25;
  animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(6deg); }
}

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

.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-lede {
  font-size: 1.14rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gh-font-heading);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gh-primary-darker);
}

.trust-item i {
  color: var(--gh-secondary);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual-frame {
  position: relative;
  border-radius: var(--gh-radius-lg);
  overflow: hidden;
  box-shadow: var(--gh-shadow-lg);
  aspect-ratio: 4 / 3;
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms var(--gh-ease);
}

.hero-visual:hover .hero-visual-frame img {
  transform: scale(1.08);
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(8, 74, 53, 0.32) 0%, transparent 45%);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--gh-radius-md);
  box-shadow: var(--gh-shadow-lg);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: floatY 6s ease-in-out infinite;
  z-index: 3;
}

.float-card .fc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gh-secondary), var(--gh-primary));
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-card .fc-title {
  font-family: var(--gh-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gh-primary-darker);
  margin: 0;
}

.float-card .fc-sub {
  font-size: 0.78rem;
  color: var(--gh-text-soft);
  margin: 0;
}

.float-card--top {
  top: -1.75rem;
  left: -1.75rem;
  animation-delay: 0.4s;
}

.float-card--bottom {
  bottom: -1.75rem;
  right: -1.75rem;
  animation-delay: 1.6s;
}

@media (max-width: 991.98px) {
  .float-card--top { left: 0.5rem; top: -1.25rem; }
  .float-card--bottom { right: 0.5rem; bottom: -1.25rem; }
}

@media (max-width: 575.98px) {
  .float-card { padding: 0.7rem 0.9rem; gap: 0.6rem; }
  .float-card .fc-icon { width: 38px; height: 38px; font-size: 0.95rem; }
  .float-card .fc-title { font-size: 0.82rem; }
  .float-card .fc-sub { font-size: 0.7rem; }
}

/* Trust marquee strip */
.marquee-wrap {
  border-top: 1px solid var(--gh-border);
  border-bottom: 1px solid var(--gh-border);
  padding: 1.6rem 0;
  overflow: hidden;
  background: var(--gh-card);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 26s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gh-font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gh-text-muted);
  white-space: nowrap;
}

.marquee-item i {
  color: var(--gh-accent);
  font-size: 1.05rem;
}

/* ==========================================================================
   About
   ========================================================================== */

.about-visual {
  position: relative;
}

.about-img-frame {
  border-radius: var(--gh-radius-lg);
  overflow: hidden;
  box-shadow: var(--gh-shadow-md);
  aspect-ratio: 3 / 4;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.75rem;
  left: -1.5rem;
  background: var(--gh-primary-darker);
  color: #fff;
  border-radius: var(--gh-radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--gh-shadow-lg);
  text-align: center;
  min-width: 150px;
}

.about-badge .num {
  font-family: var(--gh-font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.about-badge .lbl {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.35rem;
}

@media (max-width: 575.98px) {
  .about-badge { left: 0.5rem; bottom: -1.25rem; padding: 1rem 1.2rem; min-width: 120px; }
  .about-badge .num { font-size: 1.6rem; }
}

.credential-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-md);
  padding: 1.75rem;
  box-shadow: var(--gh-shadow-sm);
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: var(--gh-text);
}

.credential-list i {
  color: var(--gh-secondary);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.quote-block {
  position: relative;
  border-left: 3px solid var(--gh-secondary);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 2rem 0 0;
  font-family: var(--gh-font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gh-primary-darker);
}

/* ==========================================================================
   Stat strip
   ========================================================================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--gh-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card .stat-num {
  font-family: var(--gh-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.stat-card .stat-lbl {
  font-size: 0.88rem;
  color: rgba(234, 250, 241, 0.75);
  margin-top: 0.4rem;
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.service-card {
  height: 100%;
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--gh-dur-med) var(--gh-ease),
    box-shadow var(--gh-dur-med) var(--gh-ease),
    border-color var(--gh-dur-med) var(--gh-ease);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gh-secondary), var(--gh-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--gh-dur-med) var(--gh-ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gh-shadow-md);
  border-color: transparent;
}

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

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-secondary-light);
  color: var(--gh-primary);
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
  transition: transform var(--gh-dur-fast) var(--gh-ease), background var(--gh-dur-fast) var(--gh-ease), color var(--gh-dur-fast) var(--gh-ease);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gh-secondary), var(--gh-primary));
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Conditions tabs
   ========================================================================== */

#conditions.section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

#process.section {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.conditions-panel {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--gh-shadow-sm);
}

.nav-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  border: none;
  margin-bottom: 2.25rem;
}

.nav-conditions .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--gh-font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gh-text-muted);
  background: var(--gh-bg-tint);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-pill);
  padding: 0.6rem 1.15rem;
  transition: all var(--gh-dur-fast) var(--gh-ease);
}

.nav-conditions .nav-link i {
  color: var(--gh-secondary);
}

.nav-conditions .nav-link.active,
.nav-conditions .nav-link:hover {
  background: var(--gh-primary);
  border-color: var(--gh-primary);
  color: #fff;
}

.nav-conditions .nav-link.active i,
.nav-conditions .nav-link:hover i {
  color: #fff;
}

.condition-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}

.condition-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--gh-radius-sm);
  background: var(--gh-bg-tint);
  border: 1px solid var(--gh-border);
  font-size: 0.93rem;
  color: var(--gh-text);
  transition: transform var(--gh-dur-fast) var(--gh-ease), background var(--gh-dur-fast) var(--gh-ease);
}

.condition-chip:hover {
  transform: translateX(4px);
  background: var(--gh-secondary-light);
}

.condition-chip i {
  color: var(--gh-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Condition image cards */
.condition-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}

.condition-card {
  position: relative;
  border-radius: var(--gh-radius-sm);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--gh-shadow-sm);
  isolation: isolate;
  transition: transform var(--gh-dur-med) var(--gh-ease), box-shadow var(--gh-dur-med) var(--gh-ease);
}

.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gh-shadow-md);
}

.condition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--gh-ease);
}

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

.condition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 47, 34, 0) 40%, rgba(5, 47, 34, 0.88) 100%);
}

.condition-card .cc-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--gh-font-heading);
  font-weight: 500;
  font-size: 0.84rem;
  line-height: 1.25;
}

.condition-card .cc-label i {
  color: var(--gh-secondary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Process timeline
   ========================================================================== */

.process-track {
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gh-border) 0 10px, transparent 10px 20px);
  display: none;
}

@media (min-width: 992px) {
  .process-track::before { display: block; }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-card);
  border: 2px solid var(--gh-secondary-light);
  box-shadow: var(--gh-shadow-sm);
  font-family: var(--gh-font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gh-primary);
  position: relative;
  z-index: 2;
  transition: transform var(--gh-dur-med) var(--gh-ease);
}

.process-step:hover .process-num {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--gh-secondary), var(--gh-primary));
  color: #fff;
  border-color: transparent;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.94rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   Why choose us
   ========================================================================== */

.feature-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem;
  border-radius: var(--gh-radius-md);
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  height: 100%;
  transition: box-shadow var(--gh-dur-fast) var(--gh-ease), transform var(--gh-dur-fast) var(--gh-ease);
}

.feature-card:hover {
  box-shadow: var(--gh-shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-secondary-light);
  color: var(--gh-primary);
  font-size: 1.3rem;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-md);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: transform var(--gh-dur-fast) var(--gh-ease), box-shadow var(--gh-dur-fast) var(--gh-ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gh-shadow-md);
}

.testimonial-card .quote-mark {
  font-size: 2.4rem;
  color: var(--gh-secondary-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card .stars {
  color: var(--gh-accent);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.testimonial-card p.t-body {
  font-size: 0.95rem;
  color: var(--gh-text);
  min-height: 90px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--gh-border);
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gh-secondary), var(--gh-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gh-font-heading);
  font-weight: 600;
  flex-shrink: 0;
}

.t-author .t-name {
  font-family: var(--gh-font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--gh-primary-darker);
  margin: 0;
}

.t-author .t-role {
  font-size: 0.78rem;
  color: var(--gh-text-soft);
  margin: 0;
}

.testimonial-note {
  border: 1px dashed var(--gh-border);
  background: var(--gh-bg-tint);
  border-radius: var(--gh-radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.86rem;
  color: var(--gh-text-soft);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.testimonial-note i {
  color: var(--gh-accent);
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-accordion .accordion-item {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--gh-font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gh-primary-darker);
  padding: 1.35rem 1.5rem;
  background: var(--gh-card);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gh-primary);
  background: var(--gh-secondary-light);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  outline: 3px solid var(--gh-accent-light);
  outline-offset: -3px;
}

.faq-accordion .accordion-button::after {
  transition: transform var(--gh-dur-fast) var(--gh-ease);
}

.faq-accordion .accordion-body {
  padding: 0.25rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gh-text-muted);
}

/* ==========================================================================
   Appointment CTA banner
   ========================================================================== */

.cta-banner {
  position: relative;
  border-radius: var(--gh-radius-lg);
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 5rem);
  background: linear-gradient(155deg, var(--gh-primary-darker) 0%, var(--gh-primary-dark) 60%, var(--gh-primary) 100%);
  box-shadow: var(--gh-shadow-lg);
  isolation: isolate;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/1334149/pexels-photo-1334149.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  z-index: -2;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(5, 47, 34, 0.92) 0%, rgba(11, 110, 79, 0.88) 100%);
  z-index: -1;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.cta-banner p {
  color: rgba(234, 250, 241, 0.82);
  max-width: 560px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--gh-radius-md);
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  margin-bottom: 1rem;
  transition: box-shadow var(--gh-dur-fast) var(--gh-ease), transform var(--gh-dur-fast) var(--gh-ease);
}

.contact-info-card:hover {
  box-shadow: var(--gh-shadow-sm);
  transform: translateX(4px);
}

.contact-info-card .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gh-secondary-light);
  color: var(--gh-primary);
  font-size: 1.15rem;
}

.contact-info-card .ci-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gh-text-soft);
  margin-bottom: 0.15rem;
}

.contact-info-card .ci-value {
  font-family: var(--gh-font-heading);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--gh-primary-darker);
}

.map-placeholder {
  border-radius: var(--gh-radius-md);
  border: 1px dashed var(--gh-border);
  background: var(--gh-bg-tint);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--gh-text-soft);
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--gh-secondary);
  margin-bottom: 0.75rem;
}

.contact-form-card {
  background: var(--gh-card);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--gh-shadow-sm);
}

.form-control,
.form-select {
  border: 1.5px solid var(--gh-border);
  border-radius: var(--gh-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--gh-dur-fast) var(--gh-ease), box-shadow var(--gh-dur-fast) var(--gh-ease);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gh-secondary);
  box-shadow: 0 0 0 4px var(--gh-secondary-light);
}

.form-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--gh-text);
  margin-bottom: 0.4rem;
}

/* Toast */
.gh-toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1080;
  background: var(--gh-primary-darker);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--gh-radius-md);
  box-shadow: var(--gh-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform var(--gh-dur-med) var(--gh-ease), opacity var(--gh-dur-med) var(--gh-ease);
  max-width: 320px;
}

.gh-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.gh-toast i {
  color: var(--gh-secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .gh-toast { right: 1rem; left: 1rem; bottom: 1rem; max-width: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.gh-footer {
  background: var(--gh-primary-darker);
  color: rgba(234, 250, 241, 0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.75rem;
}

.gh-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.35rem;
}

.gh-footer p {
  color: rgba(234, 250, 241, 0.68);
  font-size: 0.92rem;
}

.gh-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.gh-footer .footer-links a {
  color: rgba(234, 250, 241, 0.72);
  font-size: 0.92rem;
  transition: color var(--gh-dur-fast) var(--gh-ease), padding-left var(--gh-dur-fast) var(--gh-ease);
}

.gh-footer .footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gh-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background var(--gh-dur-fast) var(--gh-ease), transform var(--gh-dur-fast) var(--gh-ease);
}

.social-row a:hover {
  background: var(--gh-secondary);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.75rem;
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: rgba(234, 250, 241, 0.68);
}

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

/* ==========================================================================
   Floating action buttons
   ========================================================================== */

.fab-stack {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--gh-shadow-lg);
  border: none;
  transition: transform var(--gh-dur-fast) var(--gh-ease), opacity var(--gh-dur-fast) var(--gh-ease), visibility var(--gh-dur-fast);
}

.fab-whatsapp {
  background: #25d366;
  color: #fff;
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--gh-shadow-lg), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: var(--gh-shadow-lg), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.fab-top {
  background: var(--gh-primary);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--gh-dur-slow) var(--gh-ease), transform var(--gh-dur-slow) var(--gh-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--gh-dur-slow) var(--gh-ease), transform var(--gh-dur-slow) var(--gh-ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* Staggered delays */
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }
.delay-4 { transition-delay: 360ms; }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */

.legal-page {
  padding-top: calc(var(--gh-nav-h) + 3rem);
  padding-bottom: 5rem;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
}

.legal-page p,
.legal-page li {
  color: var(--gh-text-muted);
  font-size: 0.98rem;
}

.legal-page .updated {
  color: var(--gh-text-soft);
  font-size: 0.88rem;
}

/* ==========================================================================
   Misc
   ========================================================================== */

.hr-soft {
  border: none;
  border-top: 1px solid var(--gh-border);
}

::selection {
  background: var(--gh-secondary);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gh-bg-tint);
}

::-webkit-scrollbar-thumb {
  background: var(--gh-secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gh-primary);
}
