/* =========================================================
   DR. DESHMUKH'S HOMEOPATHY
   ABOUT PAGE STYLESHEET

   Designed to match index.css
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {

  --blue: #1B4F8A;
  --blue-dark: #143d6e;
  --blue-light: #2563EB;

  --teal: #2A9D8F;
  --teal-light: #3BBFB0;
  --teal-pale: #E6F7F5;

  --gray-bg: #F8FAFC;
  --gray-border: #E2E8F0;

  --text-dark: #0F1923;
  --text-mid: #374151;
  --text-light: #6B7280;

}


/* =========================================================
   GLOBAL
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Inter', sans-serif;

  color: var(--text-dark);

  background: #fff;

  overflow-x: hidden;

  margin: 0;

}

h1,
h2,
h3,
h4,
h5 {

  font-family: 'Poppins', sans-serif;

  margin: 0;

}

p {
  margin: 0;
}

img {
  max-width: 100%;
}


/* =========================================================
   HEADER
   ========================================================= */

#main-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  height: 70px;

  background:
    rgba(255,255,255,0.96);

  backdrop-filter: blur(12px);

  border-bottom:
    1px solid var(--gray-border);

  box-shadow:
    0 1px 12px rgba(27,79,138,0.08);

  transition:
    box-shadow 0.3s;

}

#main-header.scrolled {

  box-shadow:
    0 4px 24px rgba(27,79,138,0.12);

}

.header-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

}

.logo-wrap {

  display: flex;

  align-items: center;

  flex-shrink: 0;

}

.logo-wrap img {

  height: 48px;

  width: auto;

  display: block;

}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

nav.desktop-nav {

  display: flex;

  gap: 4px;

  align-items: center;

}

nav.desktop-nav a {

  font-family: 'Poppins', sans-serif;

  font-size: 0.875rem;

  font-weight: 500;

  color: var(--text-mid);

  padding: 8px 14px;

  border-radius: 8px;

  text-decoration: none;

  transition:
    color 0.2s,
    background 0.2s;

}

nav.desktop-nav a:hover {

  color: var(--blue);

  background:
    rgba(27,79,138,0.06);

}

nav.desktop-nav a.active {

  color: var(--teal);

  font-weight: 600;

  background:
    rgba(42,157,143,0.07);

}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {

  display: flex;

  gap: 10px;

  align-items: center;

}

.btn-call {

  display: flex;

  align-items: center;

  gap: 6px;

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  color: var(--blue);

  border:
    1.5px solid var(--blue);

  padding: 8px 16px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s;

  white-space: nowrap;

}

.btn-call:hover {

  background: var(--blue);

  color: #fff;

}

.btn-primary {

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 600;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  padding: 9px 20px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s;

  white-space: nowrap;

  box-shadow:
    0 4px 12px rgba(42,157,143,0.3);

}

.btn-primary:hover {

  transform: translateY(-1px);

  box-shadow:
    0 6px 20px rgba(42,157,143,0.4);

}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger-btn {

  display: none;

  flex-direction: column;

  gap: 5px;

  background: none;

  border: none;

  cursor: pointer;

  padding: 8px;

}

.hamburger-btn span {

  width: 24px;

  height: 2px;

  background: var(--blue);

  border-radius: 2px;

  display: block;

  transition: all 0.3s;

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

#mobile-menu {

  display: none;

  position: fixed;

  top: 70px;

  left: 0;

  right: 0;

  background: #fff;

  border-bottom:
    1px solid var(--gray-border);

  padding: 16px 24px 24px;

  z-index: 999;

  box-shadow:
    0 8px 32px rgba(0,0,0,0.1);

}

#mobile-menu.open {
  display: block;
}

#mobile-menu a {

  display: block;

  font-family: 'Poppins', sans-serif;

  font-weight: 500;

  font-size: 0.95rem;

  color: var(--text-mid);

  padding: 12px 0;

  border-bottom:
    1px solid var(--gray-border);

  text-decoration: none;

}

#mobile-menu a:hover {
  color: var(--teal);
}

#mobile-menu .mobile-ctas {

  display: flex;

  gap: 10px;

  margin-top: 16px;

}

#mobile-menu .mobile-ctas a {

  flex: 1;

  text-align: center;

  padding: 12px;

  border-radius: 10px;

  font-size: 0.85rem;

}


/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.floating-call {

  position: fixed;

  bottom: 80px;

  right: 20px;

  z-index: 900;

  display: none;

  background: var(--blue);

  color: #fff;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 6px 20px rgba(27,79,138,0.4);

  text-decoration: none;

  font-size: 1.3rem;

  transition:
    transform 0.2s;

}

.floating-wa {

  position: fixed;

  bottom: 20px;

  right: 20px;

  z-index: 900;

  display: none;

  background: #25D366;

  color: #fff;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 6px 20px rgba(37,211,102,0.4);

  text-decoration: none;

  font-size: 1.4rem;

  transition:
    transform 0.2s;

}

.floating-call:hover,
.floating-wa:hover {

  transform: scale(1.1);

}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb {

  background: var(--gray-bg);

  border-bottom:
    1px solid var(--gray-border);

  padding: 12px 0;

}

.breadcrumb-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 0.82rem;

  color: var(--text-light);

}

.breadcrumb-inner a {

  color: var(--teal);

  text-decoration: none;

  font-weight: 500;

}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}


/* =========================================================
   SHARED UTILITIES
   ========================================================= */

.section-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

}

.section-heading {

  text-align: center;

}

.section-eyebrow {

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  color: var(--teal);

  letter-spacing: 0.08em;

  text-transform: uppercase;

  margin-bottom: 10px;

}

.section-title {

  font-size:
    clamp(1.6rem,3vw,2.4rem);

  font-weight: 800;

  color: var(--text-dark);

  line-height: 1.2;

  margin-bottom: 16px;

}

.section-subtitle {

  font-size: 1rem;

  color: var(--text-light);

  line-height: 1.7;

  max-width: 600px;

  margin-left: auto;

  margin-right: auto;

}

.btn-outline-blue {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 0.9rem;

  color: var(--blue);

  border:
    2px solid var(--blue);

  padding: 12px 24px;

  border-radius: 10px;

  text-decoration: none;

  transition: all 0.2s;

}

.btn-outline-blue:hover {

  background: var(--blue);

  color: #fff;

}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {

  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;

}

.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}


/* =========================================================
   ABOUT HERO
   ========================================================= */

#about-hero {

  background:
    linear-gradient(
      135deg,
      #0F1923 0%,
      #1B4F8A 55%,
      #2A9D8F 100%
    );

  padding: 72px 0 64px;

  position: relative;

  overflow: hidden;

}

#about-hero::before {

  content: '';

  position: absolute;

  inset: 0;

  background-image:

    radial-gradient(
      circle at 80% 20%,
      rgba(42,157,143,0.18) 0%,
      transparent 55%
    ),

    radial-gradient(
      circle at 10% 80%,
      rgba(255,255,255,0.04) 0%,
      transparent 40%
    );

  pointer-events: none;

}

.hero-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

  display: grid;

  grid-template-columns:
    1fr 420px;

  gap: 64px;

  align-items: center;

  position: relative;

  z-index: 1;

}

.hero-kicker {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background:
    rgba(255,255,255,0.1);

  border:
    1px solid rgba(255,255,255,0.2);

  color:
    rgba(255,255,255,0.9);

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 600;

  padding: 6px 14px;

  border-radius: 100px;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  margin-bottom: 20px;

}

.hero-title {

  font-size:
    clamp(2.2rem,4vw,3.5rem);

  font-weight: 800;

  color: #fff;

  line-height: 1.1;

  margin-bottom: 6px;

}

.hero-title span {

  background:
    linear-gradient(
      90deg,
      #7ED4CC,
      #A5F3EC
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}

.hero-quals {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

  margin-bottom: 24px;

}

.qual-pill {

  background:
    rgba(255,255,255,0.12);

  border:
    1px solid rgba(255,255,255,0.2);

  color:
    rgba(255,255,255,0.9);

  font-family: 'Poppins', sans-serif;

  font-size: 0.82rem;

  font-weight: 600;

  padding: 5px 14px;

  border-radius: 7px;

}

.hero-tagline {

  font-size: 1.05rem;

  color:
    rgba(255,255,255,0.75);

  line-height: 1.75;

  max-width: 520px;

  margin-bottom: 36px;

}

.hero-tagline strong {
  color: #7ED4CC;
}

.hero-stats {

  display: flex;

  gap: 36px;

  flex-wrap: wrap;

}

.hero-stat {

  display: flex;

  flex-direction: column;

  gap: 3px;

}

.hero-stat .num {

  font-family: 'Poppins', sans-serif;

  font-size: 2rem;

  font-weight: 800;

  color: #fff;

  line-height: 1;

}

.hero-stat .num span {
  color: #7ED4CC;
}

.hero-stat .lbl {

  font-size: 0.78rem;

  color:
    rgba(255,255,255,0.6);

  font-weight: 500;

}


/* =========================================================
   HERO PHOTO
   ========================================================= */

.hero-photo-wrap {

  position: relative;

}

.hero-photo-card {

  background:
    rgba(255,255,255,0.07);

  border:
    1px solid rgba(255,255,255,0.15);

  border-radius: 24px;

  overflow: hidden;

}

.hero-photo-img {

  width: 100%;

  aspect-ratio: 3 / 4;

  overflow: hidden;

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,0.08),
      rgba(42,157,143,0.18)
    );

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

}

.hero-photo-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top center;

  display: block;

}

.hero-photo-footer {

  padding: 18px 22px;

  background:
    linear-gradient(
      135deg,
      var(--blue-dark),
      var(--blue)
    );

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.hero-photo-footer h3 {

  font-size: 1rem;

  font-weight: 700;

  margin-bottom: 2px;

}

.hero-photo-footer p {

  font-size: 0.78rem;

  opacity: 0.8;

}

.exp-badge {

  background:
    rgba(255,255,255,0.15);

  border:
    1px solid rgba(255,255,255,0.2);

  padding: 6px 12px;

  border-radius: 8px;

  font-size: 0.78rem;

  font-weight: 700;

  text-align: center;

  flex-shrink: 0;

}

.photo-chip {

  position: absolute;

  background: #fff;

  border-radius: 12px;

  padding: 10px 14px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.15);

  font-family: 'Poppins', sans-serif;

  z-index: 2;

}

.photo-chip.top-right {

  top: 20px;

  right: -18px;

}

.photo-chip .c-num {

  font-size: 1.2rem;

  font-weight: 800;

  color: var(--blue);

  line-height: 1;

}

.photo-chip .c-lbl {

  font-size: 0.68rem;

  color: var(--text-light);

  margin-top: 2px;

}


/* =========================================================
   BIO
   ========================================================= */

#bio {

  padding: 100px 0;

  background: #fff;

}

.bio-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: start;

}

.bio-text p {

  font-size: 0.97rem;

  line-height: 1.85;

  color: var(--text-mid);

  margin-bottom: 20px;

}

.bio-text p:last-child {
  margin-bottom: 0;
}

.bio-button-wrap {
  margin-top: 28px;
}

.bio-pull {

  border-left:
    3px solid var(--teal);

  padding: 16px 24px;

  margin: 28px 0;

  background: var(--teal-pale);

  border-radius:
    0 12px 12px 0;

}

.bio-pull p {

  font-family: 'Poppins', sans-serif;

  font-size: 1.05rem;

  font-weight: 600;

  color: var(--blue);

  line-height: 1.55;

  margin: 0 !important;

}

.credential-chips {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 28px;

}

.chip {

  background:
    rgba(27,79,138,0.08);

  color: var(--blue);

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 600;

  padding: 5px 12px;

  border-radius: 6px;

}


/* =========================================================
   BIO PHOTOS
   ========================================================= */

.bio-photos {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.bio-photo-main {

  border-radius: 20px;

  overflow: hidden;

  background:
    linear-gradient(
      160deg,
      #EBF7F5,
      #E8F0FB
    );

  aspect-ratio: 4 / 5;

  position: relative;

  box-shadow:
    0 16px 48px rgba(27,79,138,0.12);

}

.bio-photo-main img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;

  display: block;

}

.bio-accent {

  position: absolute;

  bottom: -16px;

  right: -16px;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  color: #fff;

  padding: 18px 22px;

  border-radius: 14px;

  box-shadow:
    0 10px 30px rgba(27,79,138,0.25);

}

.bio-accent .num {

  font-family: 'Poppins', sans-serif;

  font-size: 2rem;

  font-weight: 800;

  line-height: 1;

}

.bio-accent .lbl {

  font-size: 0.78rem;

  opacity: 0.88;

  margin-top: 2px;

}

.bio-photo-pair {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;

}

.bio-photo-sm {

  border-radius: 14px;

  overflow: hidden;

  aspect-ratio: 3 / 4;

  background:
    linear-gradient(
      160deg,
      #EBF7F5,
      #E8F0FB
    );

  box-shadow:
    0 8px 24px rgba(27,79,138,0.1);

}

.bio-photo-sm img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;

  display: block;

}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

#philosophy {

  padding: 100px 0;

  background: var(--gray-bg);

}

.philosophy-intro {

  max-width: 640px;

  margin:
    0 auto 56px;

  text-align: center;

}

.philosophy-intro p {

  font-size: 1rem;

  color: var(--text-light);

  line-height: 1.75;

}

.values-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 24px;

}

.value-card {

  background: #fff;

  border-radius: 20px;

  padding: 32px 28px;

  border:
    1px solid var(--gray-border);

  transition: all 0.3s;

}

.value-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 16px 48px rgba(27,79,138,0.12);

  border-color: var(--teal);

}

.value-icon {

  width: 56px;

  height: 56px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      var(--teal-pale),
      rgba(42,157,143,0.15)
    );

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  font-size: 1.5rem;

}

.value-card h3 {

  font-size: 1.05rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 10px;

}

.value-card p {

  font-size: 0.88rem;

  color: var(--text-light);

  line-height: 1.65;

}


/* =========================================================
   EXPERTISE
   ========================================================= */

#expertise {

  padding: 100px 0;

  background: #fff;

}

.expertise-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: start;

  margin-top: 56px;

}

.subsection-title {

  font-size: 1.1rem;

  font-weight: 700;

  color: var(--text-dark);

  margin-bottom: 32px;

}


/* Timeline */

.timeline {

  position: relative;

}

.timeline::before {

  content: '';

  position: absolute;

  left: 21px;

  top: 0;

  bottom: 0;

  width: 2px;

  background:
    linear-gradient(
      180deg,
      var(--teal),
      var(--blue),
      rgba(27,79,138,0.08)
    );

}

.t-item {

  display: flex;

  gap: 20px;

  margin-bottom: 32px;

  position: relative;

}

.t-dot {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--blue)
    );

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.1rem;

  flex-shrink: 0;

  z-index: 1;

  box-shadow:
    0 4px 12px rgba(42,157,143,0.3);

}

.t-body {

  padding-top: 8px;

}

.t-year {

  font-family: 'Poppins', sans-serif;

  font-size: 0.72rem;

  font-weight: 700;

  color: var(--teal);

  letter-spacing: 0.06em;

  text-transform: uppercase;

  margin-bottom: 4px;

}

.t-body h3 {

  font-size: 1rem;

  font-weight: 700;

  margin-bottom: 5px;

  color: var(--text-dark);

}

.t-body p {

  font-size: 0.85rem;

  color: var(--text-light);

  line-height: 1.65;

}


/* =========================================================
   CLINICAL FOCUS
   ========================================================= */

.focus-list {

  display: flex;

  flex-direction: column;

  gap: 14px;

}

.focus-item {

  display: flex;

  gap: 14px;

  align-items: flex-start;

  padding: 18px 20px;

  background: var(--gray-bg);

  border:
    1px solid var(--gray-border);

  border-radius: 14px;

  transition: all 0.2s;

}

.focus-item:hover {

  border-color: var(--teal);

  box-shadow:
    0 6px 20px rgba(42,157,143,0.1);

}

.focus-icon {

  width: 42px;

  height: 42px;

  border-radius: 12px;

  background: var(--teal-pale);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.2rem;

  flex-shrink: 0;

}

.focus-item h4 {

  font-size: 0.92rem;

  font-weight: 700;

  margin-bottom: 4px;

  color: var(--text-dark);

}

.focus-item p {

  font-size: 0.82rem;

  color: var(--text-light);

  line-height: 1.55;

}


/* =========================================================
   QUOTE
   ========================================================= */

#quote-section {

  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #0F1923,
      #1B4F8A 50%,
      #2A9D8F 100%
    );

  position: relative;

  overflow: hidden;

}

#quote-section::before {

  content: '';

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(42,157,143,0.15) 0%,
      transparent 60%
    );

}

.quote-inner {

  max-width: 900px;

  margin: 0 auto;

  padding: 0 24px;

  text-align: center;

  position: relative;

  z-index: 1;

}

.quote-mark {

  font-family: Georgia, serif;

  font-size: 5rem;

  line-height: 0.5;

  color:
    rgba(255,255,255,0.15);

  margin-bottom: 16px;

  display: block;

}

blockquote {

  font-family: 'Poppins', sans-serif;

  font-size:
    clamp(1.2rem,2.5vw,1.7rem);

  font-weight: 500;

  color: #fff;

  line-height: 1.6;

  margin: 0 0 36px;

  font-style: italic;

}

.quote-author {

  display: inline-flex;

  flex-direction: column;

  align-items: center;

  gap: 4px;

}

.quote-author strong {

  font-family: 'Poppins', sans-serif;

  font-size: 1rem;

  font-weight: 700;

  color: #7ED4CC;

}

.quote-author span {

  font-size: 0.82rem;

  color:
    rgba(255,255,255,0.6);

}


/* =========================================================
   CLINICAL APPROACH
   ========================================================= */

#clinical-approach {

  padding: 100px 0;

  background: var(--gray-bg);

}

.approach-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 24px;

  margin-top: 56px;

}

.approach-card {

  background: #fff;

  border-radius: 20px;

  padding: 32px 28px;

  border:
    1px solid var(--gray-border);

  position: relative;

  overflow: hidden;

  transition: all 0.3s;

}

.approach-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--teal),
      var(--blue)
    );

  opacity: 0;

  transition: opacity 0.3s;

}

.approach-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 16px 40px rgba(27,79,138,0.1);

}

.approach-card:hover::before {
  opacity: 1;
}

.ac-num {

  font-family: 'Poppins', sans-serif;

  font-size: 3.5rem;

  font-weight: 800;

  color:
    rgba(27,79,138,0.06);

  line-height: 1;

  margin-bottom: 10px;

}

.ac-icon {

  font-size: 1.8rem;

  margin-bottom: 14px;

  display: block;

}

.approach-card h3 {

  font-size: 1.05rem;

  font-weight: 700;

  margin-bottom: 10px;

  color: var(--text-dark);

}

.approach-card p {

  font-size: 0.87rem;

  color: var(--text-light);

  line-height: 1.7;

}


/* =========================================================
   CONSULTATION TYPES
   ========================================================= */

#consult-types {

  padding: 100px 0;

  background: #fff;

}

.consult-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 24px;

  margin-top: 56px;

}

.consult-card {

  background: var(--gray-bg);

  border-radius: 20px;

  padding: 36px 28px;

  border:
    1px solid var(--gray-border);

  text-align: center;

  transition: all 0.3s;

}

.consult-card:hover {

  transform: translateY(-5px);

  box-shadow:
    0 16px 40px rgba(27,79,138,0.1);

  border-color: var(--teal);

}

.consult-icon {

  width: 68px;

  height: 68px;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      var(--teal-pale),
      rgba(27,79,138,0.08)
    );

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

  margin: 0 auto 20px;

}

.consult-card h3 {

  font-size: 1.1rem;

  font-weight: 700;

  margin-bottom: 10px;

}

.consult-card p {

  font-size: 0.88rem;

  color: var(--text-light);

  line-height: 1.7;

  margin-bottom: 20px;

}

.duration-pill {

  display: inline-block;

  background: var(--teal-pale);

  color: var(--teal);

  font-family: 'Poppins', sans-serif;

  font-size: 0.78rem;

  font-weight: 700;

  padding: 5px 14px;

  border-radius: 100px;

}


/* =========================================================
   CTA
   ========================================================= */

#cta-banner {

  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      var(--blue-dark) 0%,
      var(--blue) 40%,
      var(--teal) 100%
    );

  position: relative;

  overflow: hidden;

}

#cta-banner::before {

  content: '';

  position: absolute;

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.04);

  top: -200px;

  right: -100px;

}

.cta-inner {

  max-width: 700px;

  margin: 0 auto;

  text-align: center;

  padding: 0 24px;

  position: relative;

  z-index: 1;

}

.cta-eyebrow {

  font-family: 'Poppins', sans-serif;

  font-size: 0.8rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color:
    rgba(255,255,255,0.55);

  margin-bottom: 12px;

}

#cta-banner h2 {

  font-size:
    clamp(1.8rem,3vw,2.8rem);

  font-weight: 800;

  color: #fff;

  margin-bottom: 16px;

}

#cta-banner p {

  color:
    rgba(255,255,255,0.8);

  font-size: 1rem;

  line-height: 1.7;

  margin-bottom: 36px;

}

.cta-btns {

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;

}

.btn-white {

  font-family: 'Poppins', sans-serif;

  font-weight: 700;

  font-size: 0.95rem;

  background: #fff;

  color: var(--blue);

  padding: 14px 28px;

  border-radius: 12px;

  text-decoration: none;

  transition: all 0.2s;

}

.btn-white:hover {

  transform: translateY(-2px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.2);

}

.btn-ghost-white {

  font-family: 'Poppins', sans-serif;

  font-weight: 600;

  font-size: 0.95rem;

  border:
    2px solid rgba(255,255,255,0.6);

  color: #fff;

  padding: 14px 28px;

  border-radius: 12px;

  text-decoration: none;

  transition: all 0.2s;

}

.btn-ghost-white:hover {

  background:
    rgba(255,255,255,0.1);

  border-color: #fff;

}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

  background: var(--text-dark);

  color:
    rgba(255,255,255,0.75);

  padding: 60px 0 0;

}

.footer-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: 0 24px;

}

.footer-grid {

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1.5fr;

  gap: 40px;

  padding-bottom: 48px;

  border-bottom:
    1px solid rgba(255,255,255,0.1);

}

.footer-brand img {

  height: 52px;

  filter: brightness(10);

  margin-bottom: 16px;

  display: block;

}

.footer-brand p {

  font-size: 0.85rem;

  line-height: 1.7;

  max-width: 280px;

  margin-bottom: 20px;

}

.social-icons {

  display: flex;

  gap: 10px;

}

.social-icon {

  width: 36px;

  height: 36px;

  border-radius: 10px;

  background:
    rgba(255,255,255,0.08);

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 0.9rem;

  color:
    rgba(255,255,255,0.8);

  transition: all 0.2s;

}

.social-icon:hover {

  background: var(--teal);

  color: #fff;

}

.footer-col h4 {

  font-family: 'Poppins', sans-serif;

  font-size: 0.9rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 16px;

}

.footer-col ul {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-col ul li {

  margin-bottom: 10px;

}

.footer-col ul li a {

  font-size: 0.85rem;

  color:
    rgba(255,255,255,0.65);

  text-decoration: none;

  transition: color 0.2s;

}

.footer-col ul li a:hover {

  color: var(--teal-light);

}

.footer-contact-item {

  display: flex;

  gap: 10px;

  align-items: flex-start;

  margin-bottom: 12px;

  font-size: 0.84rem;

  line-height: 1.5;

}

.footer-contact-item a {

  color:
    rgba(255,255,255,0.65);

  text-decoration: none;

}

.footer-contact-item a:hover {

  color: var(--teal-light);

}

.footer-bottom {

  padding: 20px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  flex-wrap: wrap;

}

.footer-bottom p {

  font-size: 0.82rem;

}

.footer-links {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}

.footer-links a {

  font-size: 0.82rem;

  color:
    rgba(255,255,255,0.55);

  text-decoration: none;

}

.footer-links a:hover {

  color: var(--teal-light);

}


/* =========================================================
   RESPONSIVE — 1100px
   ========================================================= */

@media (max-width: 1100px) {

  .footer-grid {

    grid-template-columns:
      1fr 1fr;

  }

}


/* =========================================================
   RESPONSIVE — 1024px
   ========================================================= */

@media (max-width: 1024px) {

  .hero-inner {

    grid-template-columns: 1fr;

  }

  .hero-photo-wrap {

    max-width: 500px;

    width: 100%;

    margin: 20px auto 0;

  }

  .bio-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .expertise-grid {

    grid-template-columns: 1fr;

    gap: 50px;

  }

  .approach-grid {

    grid-template-columns:
      repeat(2,1fr);

  }

  .consult-grid {

    grid-template-columns:
      repeat(2,1fr);

  }

}


/* =========================================================
   RESPONSIVE — 768px
   ========================================================= */

@media (max-width: 768px) {

  nav.desktop-nav {

    display: none;

  }

  .header-actions .btn-call,
  .header-actions .btn-primary {

    display: none;

  }

  .hamburger-btn {

    display: flex;

  }

  .floating-call,
  .floating-wa {

    display: flex;

  }


  #about-hero {

    padding:
      60px 0 55px;

  }

  .hero-inner {

    padding:
      0 20px;

  }

  .hero-title {

    font-size:
      clamp(2rem,8vw,3rem);

  }

  .hero-tagline {

    font-size: 0.95rem;

  }

  .hero-stats {

    gap: 24px;

  }


  #bio,
  #philosophy,
  #expertise,
  #clinical-approach,
  #consult-types,
  #quote-section,
  #cta-banner {

    padding-top: 70px;

    padding-bottom: 70px;

  }


  .values-grid {

    grid-template-columns: 1fr;

  }

  .approach-grid {

    grid-template-columns: 1fr;

  }

  .consult-grid {

    grid-template-columns: 1fr;

  }

  .footer-grid {

    grid-template-columns: 1fr;

  }

  .bio-photo-pair {

    grid-template-columns: 1fr 1fr;

  }

}


/* =========================================================
   RESPONSIVE — 480px
   ========================================================= */

@media (max-width: 480px) {

  .header-inner {

    padding-left: 16px;

    padding-right: 16px;

  }

  .section-inner {

    padding-left: 18px;

    padding-right: 18px;

  }

  .breadcrumb-inner {

    padding-left: 18px;

    padding-right: 18px;

  }

  .hero-inner {

    padding-left: 18px;

    padding-right: 18px;

  }

  .hero-quals {

    flex-direction: column;

    align-items: flex-start;

  }

  .hero-stats {

    justify-content: center;

  }

  .hero-photo-wrap {

    margin-top: 10px;

  }

  .photo-chip.top-right {

    right: 8px;

  }

  .hero-photo-footer {

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

  }

  .bio-photo-pair {

    grid-template-columns: 1fr;

  }

  .bio-accent {

    right: 10px;

    bottom: -15px;

  }

  .cta-btns {

    flex-direction: column;

  }

  .cta-btns a {

    width: 100%;

    text-align: center;

  }

  .footer-inner {

    padding-left: 18px;

    padding-right: 18px;

  }

  .footer-bottom {

    flex-direction: column;

    align-items: flex-start;

  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {

    transition: none;

    opacity: 1;

    transform: none;

  }

}