/*
Theme Name: Kadence Child - Dr. Najmus Sahar
Template: kadence
Description: Professional brand website for Dr. Najmus Sahar, MDS Periodontics & Implant Specialist
Version: 4.0
*/

@import url('../kadence/style.css');

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:        #FFFFFF;
  --cream:        #F9F7F4;
  --ink:          #1A1A1A;
  --ink-light:    #5A5A5A;
  --ink-lighter:  #B8B8B8;
  --ink-rule:     #E0E0E0;
  --gold:         #B8935A;
  --gold-light:   #F5EDE0;
  --navy:         #1B2A4A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max:          1200px;
  --gap:          clamp(64px, 10vw, 120px);
  --px:           clamp(24px, 5vw, 64px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Skip nav for accessibility */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-rule);
  padding: 0 var(--px);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  flex-shrink: 0;
}

.nav__brand em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold) !important;
  color: #FFFFFF !important;
  padding: 13px 28px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 8px;
  border-bottom: none !important;
}

.nav__cta:hover {
  background: var(--navy) !important;
  color: #FFFFFF !important;
}
.nav__cta::after { display: none; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink-rule);
  padding: 20px var(--px) 28px;
  flex-direction: column;
  z-index: 99;
}
.nav__mobile.open { display: flex; }

.nav__mobile a {
  padding: 13px 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-rule);
}
.nav__mobile a:last-child { border: none; margin-top: 12px; background: var(--navy); color: var(--white); padding: 13px 20px; text-align: center; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  align-items: center;
  gap: 64px;
}

.hero__text { padding: 48px 0; }

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__name-prefix {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  display: block;
  margin-bottom: -0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hero__name em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.hero__credentials {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0.7;
}
.hero__credentials span {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 40px;
  max-width: 400px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  border: none;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
}
.btn--primary:hover { background: var(--gold); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 13px 0;
  border: none;
  border-bottom: 1.5px solid var(--ink-rule);
  gap: 10px;
  transition: all 0.2s;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost svg { width: 17px; height: 17px; }

.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--ink-rule);
  padding-top: 32px;
}

.hero__stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--ink-rule);
}
.hero__stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 5px;
}

/* Photo */
.hero__photo {
  position: relative;
  height: clamp(420px, 72vh, 700px);
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.hero__photo-frame {
  width: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-lighter);
  position: relative;
  overflow: hidden;
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-lighter);
}
.hero__photo-placeholder svg { width: 40px; height: 40px; }
.hero__photo-placeholder p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__photo-placeholder small { font-size: 0.62rem; opacity: 0.5; }

.hero__photo-corner {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
  padding: 0 var(--px);
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--ink-rule);
}
.trust-item:last-child { border-right: none; }

.trust-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-item__label {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2px;
}
.trust-item__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
}

/* ─── SHARED SECTION ────────────────────────────────────────── */
.section { padding: var(--gap) var(--px); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section--cream { background: var(--cream); }

.eyebrow {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.85;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about__image {
  background: var(--cream);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-lighter);
  position: relative;
}
.about__image svg { width: 36px; height: 36px; }
.about__image p { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about__image-corner {
  position: absolute;
  top: -14px; left: -14px;
  width: 56px; height: 56px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
}

.about__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin: 24px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.about__text {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.88;
  margin-bottom: 28px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); gap: 12px; }

/* ─── TREATMENTS ────────────────────────────────────────────── */
.treatments-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink-rule);
  border-left: 1px solid var(--ink-rule);
}

.treatment-card {
  padding: 36px 40px;
  border-right: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
  position: relative;
  transition: background 0.22s;
  overflow: hidden;
}
.treatment-card:hover { background: var(--gold-light); }
.treatment-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.treatment-card:hover::after { width: 100%; }

.treatment-card__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--ink-lighter);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.treatment-card__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.treatment-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.72;
  margin-bottom: 18px;
}
.treatment-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.treatment-card:hover .treatment-card__link { gap: 10px; }

/* ─── WHY CHOOSE ────────────────────────────────────────────── */
.why { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }

.why__pillars { display: flex; flex-direction: column; }
.why__pillar {
  padding: 30px 0;
  border-bottom: 1px solid var(--ink-rule);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}
.why__pillar:first-child { border-top: 1px solid var(--ink-rule); }

.why__pillar-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  padding-top: 3px;
  letter-spacing: 0.06em;
}
.why__pillar-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.why__pillar-text {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.78;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px;
  border: 1px solid var(--ink-rule);
  background: var(--white);
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--gold); }

.testimonial-card__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  opacity: 0.6;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.62;
  margin-bottom: 22px;
}
.testimonial-card__divider {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}
.testimonial-card__name {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-card__meta {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-light);
}

/* ─── KNOWLEDGE CENTRE ──────────────────────────────────────── */
.knowledge-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-rule);
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--ink-rule);
  padding-right: 32px;
}
.article-card:first-child { padding-left: 0; }
.article-card:not(:first-child) { padding-left: 32px; }
.article-card:last-child { border-right: none; }

.article-card__category {
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
  flex: 1;
}
.article-card:hover .article-card__title { color: var(--gold); }

.article-card__desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.72;
  margin-bottom: 16px;
}
.article-card__read {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
  border-bottom: 1px solid var(--ink-rule);
  padding-bottom: 2px;
  align-self: flex-start;
}
.article-card:hover .article-card__read { color: var(--gold); border-color: var(--gold); gap: 10px; }

/* ─── FAQ STRIP ─────────────────────────────────────────────── */
.faq-strip {
  background: var(--navy);
  padding: 64px var(--px);
}
.faq-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.faq-strip__title em { font-style: italic; color: var(--gold); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.faq-a {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
}

/* ─── CTA ───────────────────────────────────────────────────── */
.cta-section {
  padding: 80px var(--px);
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--ink-rule);
}
.cta-section__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-section__title em { font-style: italic; color: var(--gold); }
.cta-section__sub {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--ink-light);
  margin-bottom: 36px;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px var(--px) 28px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-cred {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
}

.footer__col-title {
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
}
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer__legal a {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--white); }

/* ─── WHATSAPP ──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 27px; height: 27px; fill: white; }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: none;
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 56px;
    gap: 40px;
  }
  .hero__photo { height: 320px; order: -1; }
  .hero__photo-corner { display: none; }
  .hero__stats { gap: 0; }

  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--ink-rule); }
  .trust-item:last-child { border-bottom: none; }

  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__image { aspect-ratio: 16/10; }

  .treatments-grid { grid-template-columns: 1fr; border-left: none; }

  .why { grid-template-columns: 1fr; gap: 36px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  .knowledge-grid { grid-template-columns: 1fr; border-top: none; }
  .article-card {
    padding: 24px 0 !important;
    border-right: none !important;
    border-top: 1px solid var(--ink-rule);
  }

  .faq-strip__inner { grid-template-columns: 1fr; gap: 36px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}


/* ─── KADENCE CONFLICT OVERRIDES ─────────────────────────── */
/* Hide Kadence default header & footer completely on home template */
.sahar-home-template .site-header,
.sahar-home-template #masthead,
.sahar-home-template .kadence-header,
.sahar-home-template header.header-wrap,
.sahar-home-template .site-footer,
.sahar-home-template footer#colophon,
.sahar-home-template .footer-wrap {
  display: none !important;
}

/* Remove ALL Kadence layout padding/margins */
.sahar-home-template #primary,
.sahar-home-template #content,
.sahar-home-template .content-container,
.sahar-home-template .site-container,
.sahar-home-template main#main,
.sahar-home-template .wp-site-blocks,
.sahar-home-template .entry-content,
.sahar-home-template article.page,
.sahar-home-template .page-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Reset Kadence container constraints */
.sahar-home-template .kadence-inner-column-inner,
.sahar-home-template .wp-block-column,
.sahar-home-template .alignwide,
.sahar-home-template .alignfull {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Force treatment cards to show content */
.sahar-home-template .treatment-card,
.sahar-home-template .treatment-card * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force testimonial cards to show */
.sahar-home-template .testimonial-card,
.sahar-home-template .testimonial-card * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure our nav sits at correct z-index above Kadence */
.sahar-home-template .nav {
  z-index: 99999 !important;
}

/* Fix any Kadence body margin/padding */
.sahar-home-template body,
body.sahar-home-template {
  margin: 0 !important;
  padding-top: 0 !important;
}

/* Override Kadence default link colors bleeding into our design */
.sahar-home-template a {
  color: inherit !important;
  text-decoration: none !important;
}
.sahar-home-template .nav__links a,
.sahar-home-template .nav__cta {
  color: revert !important;
}
.sahar-home-template .nav__cta {
  color: #FFFFFF !important;
  background: #B8935A !important;
}
