:root {
  --pink: #d4899a;
  --pink-light: #e8b4be;
  --pink-pale: #f9eef0;
  --pink-deep: #b5687a;
  --gold: #b8791a;
  --gold-light: #d4921f;
  --gold-pale: #fdf4e7;
  --dark: #000000;
  --charcoal: #000000;
  --off-white: #fdf8f5;
  --white: #fff;
  --text: #111111;
  --text-muted: #444444;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --shadow-sm: 0 2px 12px rgba(180, 100, 50, .08);
  --shadow-md: 0 8px 32px rgba(180, 100, 50, .12);
  --shadow-lg: 0 20px 60px rgba(180, 100, 50, .18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px
}

.section-title em {
  font-style: italic;
  color: var(--pink-deep)
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184, 121, 26, .3);
  cursor: pointer;
  border: none;
  font-family: var(--font-body)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 121, 26, .4)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px)
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  }
  50% {
    text-shadow: 0 0 8px rgba(184, 121, 26, 0.4); /* Subtle gold glow */
  }
}



/* ── NAV ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;

  /* GLASS EFFECT */
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  transition: var(--transition);
}


.header.scrolled {
  background: rgba(253, 248, 245, .96);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(180, 100, 50, .1)
}

/* Mobile Toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo span {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}

.header__logo img {
  height: 54px;
  width: auto;
  filter: brightness(1) contrast(1.1);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  margin-left: auto;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
  cursor: pointer
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s ease
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--gold)
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%
}

.header__cta {
  margin-left: 4px;
  padding: 11px 22px;
  font-size: 12px;
  white-space: nowrap;
}

/* ── PAGES WRAPPER ── */
.page {
  display: block;
  position: relative;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px
}

/* .hero__bg {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--white);
  background-image: url('heropage.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
} */
.hero__bg {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: 0;

  background-color: var(--white);
  background-image: url('./images/bg_img.png');
  background-size: cover; /* Better for full website hero bg */
  background-position: center right;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 35%, transparent 50%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  padding-top: 40px;
  padding-bottom: 80px
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 137, 154, .12);
  border: 1px solid rgba(212, 137, 154, .3);
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .6s ease forwards
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--pink-deep);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both, textGlow 3s ease-in-out infinite;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero__title-highlight {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.75;
  color: #000000;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp .6s .2s ease both;
}

/* .hero__glass {
  display: inline-block;
  max-width: 520px;
  margin-bottom: 36px;

  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
} */

/* TEXT INSIDE */




.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp .6s .3s ease both
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  animation: fadeUp .8s .4s cubic-bezier(0.2, 0, 0.2, 1) both;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(184, 121, 26, 0.1);
  transition: var(--transition);
}

.hero__badge-item:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
}

.hero__badge-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.hero__badge-sub {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__image-wrap {
  position: relative
}

.hero__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg)
}

.hero__image-card {
  position: relative;
  margin-left: auto;
  width: fit-content;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 137, 154, .15);
  margin-top: 200px;
  animation: fadeUp 1s 0.5s ease both;
}

.hero__card-icon {
  font-size: 28px
}

.hero__card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal)
}

.hero__card-sub {
  font-size: 12px;
  color: var(--text-muted)
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease infinite
}

/* WELCOME STRIP */
.welcome-strip {
  background: var(--charcoal);
  padding: 18px 0
}

.welcome-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap
}

.welcome-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px
}

.welcome-strip__item svg {
  color: var(--pink);
  flex-shrink: 0
}

.welcome-strip__item a {
  color: rgba(255, 255, 255, .75)
}

.welcome-strip__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, .15)
}

/* SERVICES HOME */
.services-section {
  padding: 96px 0;
  background: var(--pink-pale);
  overflow: hidden
}

.services-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: #fff;
  border: 1px solid rgba(212, 137, 154, .12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  opacity: 0;
  transition: opacity .3s
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.service-card:hover::before {
  opacity: 1
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 16px
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer
}

/* ABOUT STRIP */
.about-strip {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--gold-pale) 100%);
  padding: 96px 0
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 72px
}

.about-strip__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg)
}

.about-strip__image-col {
  position: relative
}

.about-strip__credential {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 137, 154, .2)
}

.about-strip__cred-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0
}

.about-strip__cred-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3
}

.about-strip__cred-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px
}

.about-strip__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px
}

.about-strip__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px
}

.about-strip__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text)
}

.about-strip__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--pink-deep);
  border-radius: 50%;
  flex-shrink: 0
}

/* WHY */
.why-section {
  padding: 96px 0
}

.why-section__header {
  margin-bottom: 56px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.why-card {
  border-top: 2px solid var(--pink-light);
  padding-top: 24px
}

.why-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #b8791a;
  line-height: 1;
  margin-bottom: 14px
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px
}

.why-card__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted)
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(100deg, var(--charcoal), #5a4321);
  padding: 64px 0
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px
}

.cta-banner__text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.847)
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.cta-outline {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .3)
}

.cta-outline:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .6)
}

/* PAGE HERO generic */
.page-hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
  text-align: center
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-pale), var(--gold-pale));
  z-index: 0
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 137, 154, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 137, 154, .06) 1px, transparent 1px);
  background-size: 40px 40px
}

.page-hero__inner {
  position: relative;
  z-index: 1
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 12px 0 16px
}

.page-hero__title em {
  font-style: italic;
  color: var(--pink-deep)
}

.page-hero__sub {
  font-size: 20px;
  color: var(--text-muted)
}

/* ABOUT PAGE */
.doctor-bio {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.doctor-bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.doctor-bio__image-col {
  position: relative;
  z-index: 1;
}

.doctor-bio__image-col::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: var(--gold-pale);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.5;
}

.doctor-bio__img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.doctor-bio__img:hover {
  transform: scale(1.02);
}

.doctor-bio__quals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 400px;
}

.doctor-bio__quals .p{
  font-size: 18px;
  color: var(--text-muted);

}

.qual-badge {
  background: var(--off-white);
  border: 1px solid rgba(184, 121, 26, 0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.qual-badge:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.qual-badge__icon {
  font-size: 24px;
  background: var(--gold-pale);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.qual-badge__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal)
}

.qual-badge__sub {
  font-size: 16px;
  color: var(--text-muted)
}

.doctor-bio__content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px
}

.doctor-bio__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid rgba(184, 121, 26, 0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  flex-shrink: 0;
  margin-top: 5px
}

.value-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px
}

.value-item__desc {
  font-size: 13px;
  color: var(--text-muted)
}

/* VISION & MISSION SPLIT LAYOUT */
.vision-mission-split {
  padding: 120px 0;
  background-color: var(--pink-pale);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.split-row:last-child {
  margin-bottom: 0;
}

.split-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text); /* Changed to darker black */
  margin-top: 10px;
  font-weight: 500;
}

.split-content ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content li {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.split-content li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.clinic-section {
  background: var(--pink-pale);
  padding: 80px 0
}

.clinic-gallery {
  margin: 40px 0 24px;
  height: 320px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clinic-gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
}

.clinic-gallery__track:hover {
  animation-play-state: paused;
}

.clinic-gallery img {
  width: 450px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

/* ── GALLERY PAGE GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.clinic-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6
}

.clinic-address svg {
  color: var(--pink-deep);
  flex-shrink: 0;
  margin-top: 2px
}

/* INSTAGRAM SECTION */
.instagram-section {
  padding: 90px 0 100px;
  background: var(--white);
}

.instagram-section__header {
  text-align: center;
  margin-bottom: 10px;
}

.instagram-section__header .section-label {
  justify-content: center;
}

.instagram-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.instagram-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(184, 121, 26, 0.12);
  box-shadow: var(--shadow-sm);
  transition: 0.4s ease;
  padding: 14px;
  color: var(--text);
}

.instagram-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.instagram-card__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.instagram-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: radial-gradient(circle at 30% 110%, #feda75 0 24%, #fa7e1e 35%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
  flex-shrink: 0;
}

.instagram-card__profile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.instagram-card__profile strong {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-card__profile small {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 2px;
}

.instagram-card__menu {
  width: 4px;
  height: 4px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: 7px 0 0 var(--text-muted), 14px 0 0 var(--text-muted);
}

.instagram-reel-frame {
  position: relative;
  min-height: 430px;
  aspect-ratio: 9 / 14;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.2), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #4f5bd5 0%, #962fbf 35%, #d62976 65%, #fa7e1e 100%);
}

.instagram-reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 38%, rgba(0,0,0,0.62) 100%);
  z-index: 1;
}

.instagram-reel-frame__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-card:hover .instagram-reel-frame__thumb {
  transform: scale(1.06);
}

.instagram-reel-frame--gold {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.18), rgba(0,0,0,0.7)),
    linear-gradient(135deg, var(--gold) 0%, #d4921f 48%, #d4899a 100%);
}

.instagram-reel-frame--pink {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
    linear-gradient(135deg, var(--pink-deep) 0%, #962fbf 45%, var(--gold-light) 100%);
}

.instagram-reel-frame__glow {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  z-index: 2;
}

.instagram-reel-frame__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  text-align: center;
  color: #fff;
  z-index: 3;
}

.instagram-reel-frame__label {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.instagram-reel-frame__icon {
  padding: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.instagram-reel-frame__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.instagram-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 2px 2px;
}

.instagram-card__actions span {
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 2px solid var(--charcoal);
}

.instagram-card__actions span:nth-child(1) {
  border-radius: 50%;
}

.instagram-card__actions span:nth-child(2) {
  border-radius: 50% 50% 50% 4px;
}

.instagram-card__actions span:nth-child(3) {
  width: 16px;
  margin-left: auto;
  border-radius: 2px 2px 8px 8px;
}

/* Follow Button */
.instagram-follow-btn {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: 0.3s ease;
  text-decoration: none;
}

.instagram-follow-btn:hover {
  color: var(--gold);
  gap: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .instagram-section {
    padding: 70px 0;
  }

  .instagram-reel-frame {
    min-height: 380px;
  }
}

/* FEATURED CARD */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 121, 26, 0.1);
  box-shadow: var(--shadow-md);
  max-width: 1050px;
  margin: 0 auto;
  transition: var(--transition);
}

.featured-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.featured-card__img {
  height: 100%;
  min-height: 350px;
}

.featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__body {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-list-section {
  padding: 72px 0 96px
}

.services-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(212, 137, 154, .25);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body)
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink-deep)
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212, 137, 154, .35)
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.service-list-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 137, 154, .12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

.service-list-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.service-list-card__img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden
}

.service-list-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.service-list-card:hover .service-list-card__img-wrap img {
  transform: scale(1.06)
}

.service-list-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px
}

.service-list-card__body {
  padding: 24px 24px 28px
}

.service-list-card__icon {
  font-size: 28px;
  margin-bottom: 12px
}

.service-list-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px
}

.service-list-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px
}

.service-list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer
}

.service-list-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border: 2px dashed rgba(184, 121, 26, 0.3);
  text-align: center;
}
.service-list-card--more:hover {
  border-style: solid;
}

/* CONTACT */
.contact-main {
  padding: 80px 0 96px
}

.contact-main__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px
}

.info-block__icon {
  width: 44px;
  height: 44px;
  background: var(--pink-pale);
  border: 1px solid rgba(212, 137, 154, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink-deep)
}

.info-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px
}

.info-block__value {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text)
}

.social-links-flex {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-link {
  color: var(--pink-deep);
  transition: var(--transition);
  display: inline-flex;
}
.social-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.info-block__value--link {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 18px
}

.contact-form-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 137, 154, .12)
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px
}

.contact-form__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted)
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(212, 137, 154, .2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212, 137, 154, .12);
  background: #fff
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px
}

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .75);
  margin-top: 0
}

.footer__top {
  padding: 72px 0 56px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px
}

.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.85);
  margin-bottom: 20px
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  max-width: 280px;
  margin-bottom: 24px
}

.footer__social {
  display: flex;
  gap: 12px
}

.footer__social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
  cursor: pointer
}

.footer__social-icon:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-2px)
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: color .25s;
  cursor: pointer
}

.footer__links a:hover {
  color: var(--pink-light)
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px
}

.footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, .6)
}

.footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--pink)
}

.footer__contact-list a {
  color: rgba(255, 255, 255, .7)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .35)
}

/* NAV PILL */
.page-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(44, 30, 16, .92);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 8px 12px;
  display: flex;
  gap: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .25)
}

.page-nav button {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body)
}

.page-nav button.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff
}

@media(max-width:1024px) {
  .header__inner {
    gap: 18px;
  }

  .header__logo img {
    height: 46px;
  }

  .header__logo span {
    font-size: 1.45rem;
  }

  .header__nav {
    gap: 18px;
  }

  .header__nav-link {
    font-size: 12px;
    letter-spacing: .08em;
  }

  .header__cta {
    padding: 10px 18px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .services-list-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .header {
    padding: 8px 0;
  }

  .header__inner {
    min-height: 58px;
  }

  .header__logo {
    gap: 9px;
    min-width: 0;
  }

  .header__logo img {
    height: 42px;
  }

  .header__logo span {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 74px;
    right: -100%;
    width: min(82vw, 320px);
    height: calc(100vh - 74px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .header__nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 121, 26, 0.12);
    font-size: 13px;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__cta {
    justify-content: center;
    margin: 22px 0 0;
    width: 100%;
  }

  .header__nav.active {
    right: 0;
  }

  .header__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .header__toggle.active span:nth-child(2) { opacity: 0; }
  .header__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px
  }

  .hero__subtitle {
    max-width: 100%
  }

  .hero__actions {
    justify-content: center
  }

  .hero__stats {
    justify-content: center
  }

  .hero__scroll-hint {
    display: none
  }

  .hero__visual {
    order: -1
  }

  .hero__image {
    height: 300px
  }

  .hero__image-card {
    margin: 30px auto 0;
    left: 0;
    position: relative;
  }

  .about-strip__inner {
    grid-template-columns: 1fr
  }

  .about-strip__credential {
    right: 16px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .doctor-bio__inner {
    grid-template-columns: 1fr
  }

  .contact-main__inner {
    grid-template-columns: 1fr
  }

  .clinic-gallery {
    height: auto;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-row {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  
  .split-row:nth-child(even) .split-img {
    order: -1;
  }

  .clinic-gallery img {
    height: 200px
  }

  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card__img {
    height: 280px;
    min-height: auto;
  }
  .featured-card__body {
    padding: 40px 24px;
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 18px;
  }

  .header__inner {
    min-height: 54px;
  }

  .header__logo img {
    height: 38px;
  }

  .header__logo span {
    max-width: calc(100vw - 130px);
  }

  .header__toggle {
    padding: 8px;
  }

  .header__nav {
    top: 70px;
    height: calc(100vh - 70px);
    width: 100%;
    max-width: none;
  }

  .hero__bg {
    /* Use a mobile-optimized vertical image if you have one */
    background-image: url('./images/bg_img_mobile.png');
    background-size: cover;
    background-position: center center;
    top: 70px; /* Adjusting for smaller mobile header */
    height: calc(100% - 70px);
  }

  .hero__bg::after { 
    /* Solid white fade on mobile to ensure text readability over the image */
    background: linear-gradient(to bottom, var(--white) 0%, rgba(255, 255, 255, 0.9) 20%, transparent 100%); 
   }

  .services-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center
  }

  .services-list-grid {
    grid-template-columns: 1fr
  }

  .contact-form-col {
    padding: 28px 20px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .welcome-strip__inner {
    flex-direction: column;
    gap: 12px;
  }

  .welcome-strip__divider {
    display: none;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }
}

/* 
.header__nav-link {
  position: relative;
  text-decoration: none;
  color: #222;
  padding-bottom: 6px;
}

.header__nav-link.active {
  color: #b8791a;
}

.header__nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #b8791a;
  border-radius: 2px;
} */


/* Journey Responsive Fix */
@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
}
@media (max-width: 600px) {
  .journey-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── STICKY CONTACT BAR ── */
.sticky-contact-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-contact-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  color: #fff; /* Icons are white */
}

.sticky-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.call-btn {
  background: #007bff; /* Blue for call */
}

.whatsapp-btn {
  background: #25d366; /* Green for WhatsApp */
}

.sticky-contact-btn svg {
  width: 24px;
  height: 24px;
  stroke: #fff; /* Ensure SVG stroke is white */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .sticky-contact-bar {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  .sticky-contact-btn {
    width: 45px;
    height: 45px;
  }
  .sticky-contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ── AREAS WE SERVE ── */
.areas-map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 121, 26, 0.1);
  transition: var(--transition);
}

.areas-map-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.areas-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ───────── GRID ───────── */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

/* ───────── CARD ───────── */
.ba-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid rgba(184, 121, 26, 0.08);
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ───────── IMAGE ───────── */
.ba-card__images {
  position: relative;
  overflow: hidden;
}

/* image */
.ba-card__images img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  cursor: zoom-in;
}

/* hover zoom */
.ba-card:hover .ba-card__images img {
  transform: scale(1.15);
}

/* ───────── LABELS ───────── */
.ba-label {
  position: absolute;
  top: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  z-index: 2;
}

.ba-label--before {
  left: 12px;
  background: rgba(0,0,0,0.6);
}

.ba-label--after {
  right: 12px;
  background: #c9a227;
}

/* ───────── INFO ───────── */
.ba-card__info {
  padding: 22px;
}

.ba-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ba-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ───────── LIGHTBOX ───────── */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transform: scale(0.8);
  transition: 0.3s ease;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-overlay.active img {
  transform: scale(1);
}

/* ───────── MOBILE ───────── */
@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {

  .hero__badge-item {
    min-width: unset;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .hero__badge-icon {
    width: 34px;
    height: 34px;
  }

  .hero__badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__badge-label {
    font-size: 12px;
  }

  .hero__badge-sub {
    font-size: 10px;
  }

}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {

  .hero__badge-item {
    width: 100%;
  }

}
html, body {
  overflow-x: hidden;
  width: 100%;
}
* {
  box-sizing: border-box;
}
