/* =========================================================
   style3.css — Vivo/Christina Medical skin (Home 02)
   [data-skin="v3"] scopes all existing-class overrides
   v3-* classes are unscoped (index3.php exclusive)
   ========================================================= */

/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */
[data-skin="v3"] {
  --v3-blue:       #1a5fff;
  --v3-blue-dark:  #1246d4;
  --v3-blue-xl:    #0a2ea8;
  --v3-blue-light: #f0f5ff;
  --v3-blue-mid:   #dbe8ff;
  --v3-dark:       #111827;
  --v3-text:       #4b5563;
  --v3-border:     #e5e7eb;
  --radius:        16px;
  --radius-lg:     24px;
  --btn-radius:    40px;
  --font-body:     'Nunito', system-ui, sans-serif;
}

[data-skin="v3"] body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--v3-text);
}

[data-skin="v3"] h1,
[data-skin="v3"] h2,
[data-skin="v3"] h3 {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--v3-dark);
}

/* ==========================================================
   2. BASE OVERRIDES
   ========================================================== */
[data-skin="v3"] .btn {
  border-radius: 40px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
}
[data-skin="v3"] .btn--primary {
  background: var(--v3-blue);
  border-color: var(--v3-blue);
}
[data-skin="v3"] .btn--primary:hover {
  background: var(--v3-blue-dark);
  border-color: var(--v3-blue-dark);
}
[data-skin="v3"] .btn--outline {
  border-color: var(--v3-blue);
  color: var(--v3-blue);
}
[data-skin="v3"] .btn--outline:hover {
  background: var(--v3-blue);
  color: #fff;
}
[data-skin="v3"] .info-bar {
  background: var(--v3-blue);
}
[data-skin="v3"] .section-divider {
  display: none;
}

/* ==========================================================
   3. SHARED SECTION HEADER HELPERS
   ========================================================== */
.v3-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.v3-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v3-blue);
  margin-bottom: .5rem;
}
.v3-title {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--v3-dark);
  margin-bottom: .6rem;
  line-height: 1.15;
}
.v3-subtitle {
  color: var(--v3-text);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================
   4. HERO
   ========================================================== */
[data-skin="v3"] .hero {
  background: linear-gradient(135deg, #061a6e 0%, #1547cc 55%, #1a6bff 100%);
  min-height: 480px;
  overflow: hidden;
}

/* The container is now the positioned ancestor for the absolutely-placed slides.
   The blue gradient stays full-width; only the slide content is clipped to 1160px. */
[data-skin="v3"] .v3-hero-container {
  position: relative;
  min-height: 480px;
  height: 100%;
}

/* h1 inside hero must be white — [data-skin="v3"] h1 (specificity 1,0,1)
   wins over .v3-hero__title (0,1,0), so we need higher specificity here */
[data-skin="v3"] .hero h1 {
  color: #fff;
}

/* Both slider arrows on the right side — avoids overlapping the text column */
[data-skin="v3"] .slider-arrow--prev {
  left: auto;
  right: calc(1.25rem + 52px);
  top: auto;
  bottom: 1.5rem;
  transform: none;
}
[data-skin="v3"] .slider-arrow--next {
  right: 1.25rem;
  top: auto;
  bottom: 1.5rem;
  transform: none;
}

/* Dots on the left so they don't collide with arrows */
[data-skin="v3"] .slider-dots {
  left: 2rem;
  bottom: 1.75rem;
  transform: none;
}

@media (max-width: 768px) {
  [data-skin="v3"] .hero {
    min-height: 360px;
    margin: 0;
    max-width: 100%;
  }
}
[data-skin="v3"] .hero-slide {
  background: none !important;
  min-height: 480px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
[data-skin="v3"] .hero-slide.active { pointer-events: auto; }
[data-skin="v3"] .hero-slide__overlay { display: none; }
[data-skin="v3"] .hero-slide__mobile-img { display: none; }
[data-skin="v3"] .hero__scroll-hint { display: none; }
[data-skin="v3"] .hero__content { max-width: 100%; text-align: left; align-items: flex-start; padding: 0; }

.v3-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding: 4rem 0;
}

.v3-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.95);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.v3-hero__title {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.v3-hero__subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

.v3-hero__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Stats row with icon circles */
.v3-hero__stats {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.v3-hero-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 1.5rem;
}
.v3-hero-stat:first-child { padding-left: 0; }
.v3-hero-stat + .v3-hero-stat {
  border-left: 1px solid rgba(255,255,255,.22);
}

.v3-hero-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.v3-hero-stat__num {
  display: block;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.v3-hero-stat__label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.72);
  margin-top: .15rem;
  white-space: nowrap;
}

/* Hero illustration */
.v3-hero__illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /*min-height: 320px;*/
}

.v3-hero__blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  background: rgba(255,255,255,.08);
  animation: v3blob 8s ease-in-out infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes v3blob {
  0%,100% { border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; }
  50%      { border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; }
}

.v3-hero__img {
  position: relative;
  z-index: 1;
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}
.v3-hero__icon-wrap {
  position: relative;
  z-index: 1;
  font-size: 8rem;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 280px;
}

/* ==========================================================
   5. QUALITY HEALTHCARE SECTION
   ========================================================== */
.v3-section-quality {
  background: #fff;
  padding: 5rem 0 0;
}

.v3-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Left: large circle image */
.v3-quality__img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.v3-circular-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  max-width: 420px;
  width: 100%;
}
.v3-circular-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-position: bottom center;
  display: block;
  border-radius: 30px;
}
.v3-circular-img > i {
  font-size: 7rem;
  color: var(--v3-blue);
}

/* Right: features */
.v3-quality__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.v3-quality__book-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.v3-quality__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v3-quality__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.v3-quality__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--v3-blue-light);
  color: var(--v3-blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-quality__feature-body strong {
  display: block;
  font-weight: 700;
  color: var(--v3-dark);
  margin-bottom: .25rem;
}
.v3-quality__feature-body p {
  color: var(--v3-text);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 .4rem;
}

.v3-find-out-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--v3-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.v3-find-out-more i { font-size: .7rem; transition: transform .2s; }
.v3-find-out-more:hover i { transform: translateX(3px); }

/* Numbered stats row */
.v3-quality-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--v3-border);
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  flex-wrap: wrap;
}

.v3-quality-stat {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 2rem 0 0;
}
.v3-quality-stat + .v3-quality-stat {
  padding-left: 2rem;
  border-left: 1px solid var(--v3-border);
}

.v3-quality-stat__num {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v3-blue);
  line-height: 1;
  flex-shrink: 0;
}
.v3-quality-stat__body strong {
  display: block;
  font-weight: 700;
  color: var(--v3-dark);
  margin-bottom: .2rem;
}
.v3-quality-stat__body p {
  color: var(--v3-text);
  font-size: .85rem;
  margin: 0;
  line-height: 1.5;
}

/* Mission blockquote below stats */
.v3-mission-blockquote {
  border-left: 4px solid var(--v3-blue);
  margin: 0 0 3rem;
  padding: 1rem 1.5rem;
  background: var(--v3-blue-light);
  border-radius: 0 12px 12px 0;
}
.v3-mission-blockquote p {
  color: var(--v3-text);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 .5rem;
}
.v3-mission-blockquote footer {
  font-weight: 700;
  color: var(--v3-blue);
  font-size: .9rem;
}

/* ==========================================================
   6. ANNOUNCEMENT PILL BANNER
   ========================================================== */
.v3-announce-pill {
  background: var(--v3-blue);
  padding: 1.25rem 1.5rem;
}
.v3-announce-pill__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(255,255,255,.08);
  border-radius: 60px;
  padding: 1rem 1.25rem 1rem 2rem;
  flex-wrap: wrap;
}
.v3-announce-pill__text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  flex: 1;
  min-width: 200px;
}
.v3-announce-pill__text > i {
  font-size: 1.5rem;
  opacity: .85;
  flex-shrink: 0;
}
.v3-announce-pill__text strong {
  display: block;
  font-weight: 800;
  font-size: .98rem;
}
.v3-announce-pill__text span {
  display: block;
  font-size: .82rem;
  opacity: .82;
  margin-top: .1rem;
}
.v3-announce-pill__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--v3-blue);
  font-weight: 800;
  font-family: 'Nunito', system-ui, sans-serif;
  padding: .75rem 1.75rem;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  font-size: .9rem;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.v3-announce-pill__btn:hover {
  background: var(--v3-blue-mid);
  color: var(--v3-blue-dark);
}

/* ==========================================================
   7. SERVICES SPECIALTY GRID
   ========================================================== */
.v3-section-services {
  background: var(--v3-blue-light);
  padding: 5rem 0;
}

/* Two-column header */
.v3-specialty-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* Consult box */
.v3-consult-box {
  border: 2px solid var(--v3-blue);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 260px;
  max-width: 300px;
}
.v3-consult-box .v3-label { margin-bottom: .4rem; }
.v3-consult-box p {
  color: var(--v3-text);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* Specialty grid */
.v3-specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.v3-specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 2px solid var(--v3-border);
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.v3-specialty-item:hover {
  border-color: var(--v3-blue);
  background: var(--v3-blue-light);
  box-shadow: 0 6px 20px rgba(26,95,255,.10);
}

.v3-specialty-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--v3-blue-mid);
  color: var(--v3-blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.v3-specialty-item:hover .v3-specialty-icon {
  background: var(--v3-blue);
  color: #fff;
}

.v3-specialty-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--v3-dark);
  line-height: 1.3;
}

/* ==========================================================
   8. REVIEWS — 3-column static grid
   ========================================================== */
.v3-section-reviews {
  background: var(--v3-blue-light);
  padding: 5rem 0;
}

.v3-reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.v3-reviews-header__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.v3-reviews-stars {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.v3-reviews-stars .stars-inline i { color: #f59e0b; }
.v3-reviews-stars span { font-size: .85rem; color: var(--v3-text); }

/* 3-card sliding reviews */
.v3-reviews-slider-wrap {
  overflow: hidden;
  margin-top: 2rem;
}
.v3-reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.v3-reviews-track .v3-review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
[data-skin="v3"] .reviews-dot {
  background: var(--v3-blue-mid);
}
[data-skin="v3"] .reviews-dot.active {
  background: var(--v3-blue);
}
@media (max-width: 1023px) {
  .v3-reviews-track .v3-review-card { flex: 0 0 calc(50% - .75rem); }
}
@media (max-width: 639px) {
  .v3-reviews-track .v3-review-card { flex: 0 0 100%; }
}

.v3-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
}
.v3-review-card:hover {
  box-shadow: 0 10px 32px rgba(26,95,255,.12);
  transform: translateY(-3px);
}

.v3-review-card__quote {
  font-size: 2.5rem;
  color: var(--v3-blue);
  line-height: 1;
}

.v3-review-card__text {
  color: var(--v3-text);
  font-size: .92rem;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v3-review-card__footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}
.v3-review-card__footer > div:not(.review-avatar) {
  flex: 1;
}
.v3-review-card__footer strong {
  display: block;
  font-weight: 700;
  color: var(--v3-dark);
  font-size: .9rem;
}
.v3-review-card__footer span {
  font-size: .78rem;
  color: var(--v3-text);
}
.v3-review-card__google {
  color: #4285f4;
  font-size: 1.1rem;
  flex-shrink: 0;
}
[data-skin="v3"] .review-avatar {
  background: var(--v3-blue);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==========================================================
   9. TEAM — 4-column grid with aspect-ratio photo
   ========================================================== */
.v3-section-team {
  background: #fff;
  padding: 5rem 0;
}

.v3-team-grid {
  display: grid;
  grid-template-columns: repeat(var(--team-cols, 4), 1fr);
  gap: 1.5rem;
}
.v3-team-grid--single {
  max-width: 320px;
  margin-inline: auto;
}
.v3-team-grid--pair {
  max-width: 680px;
  margin-inline: auto;
}

.v3-team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--v3-border);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.v3-team-card:hover {
  box-shadow: 0 8px 28px rgba(26,95,255,.12);
  transform: translateY(-3px);
}

.v3-team-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--v3-blue-mid);
}
.v3-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.v3-team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--v3-blue);
  opacity: .35;
}

.v3-team-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.v3-team-card__badge {
  display: inline-block;
  background: var(--v3-blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: .3rem;
}

.v3-team-card__name {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--v3-dark);
  margin: 0;
}
.v3-team-card__spec {
  font-size: .78rem;
  color: var(--v3-blue);
  font-weight: 600;
  margin: 0;
}
.v3-team-card__quote-text {
  font-size: .85rem;
  color: var(--v3-blue);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 .4rem;
  border-left: 2px solid var(--v3-blue);
  padding-left: .6rem;
}
.v3-team-card__bio {
  font-size: .82rem;
  color: var(--v3-text);
  line-height: 1.55;
  margin: .25rem 0 0;
}

/* ==========================================================
   10. INSURANCE — pill logo strip
   ========================================================== */
.v3-section-insurance {
  background: #fff;
  padding: 4rem 0;
}

.v3-insurance-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.v3-insurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--v3-border);
  border-radius: 40px;
  padding: .5rem 1.5rem;
  height: 60px;
  min-width: 110px;
  transition: box-shadow .2s, border-color .2s;
}
.v3-insurance-item:hover {
  box-shadow: 0 4px 16px rgba(26,95,255,.10);
  border-color: var(--v3-blue);
}
.v3-insurance-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(.3) opacity(.75);
  transition: filter .2s;
  display: block;
}
.v3-insurance-item:hover img { filter: none; }
.v3-ins-text {
  font-size: .78rem;
  font-weight: 700;
  color: var(--v3-text);
  text-align: center;
}

/* ==========================================================
   11. BOOK YOUR DOCTOR CTA
   ========================================================== */
.v3-section-book {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid var(--v3-border);
}

.v3-book-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.v3-book-content .v3-title { text-align: left; }
.v3-book-content p {
  color: var(--v3-text);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.v3-book-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.v3-book-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--v3-blue-mid);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.v3-book-icon {
  position: relative;
  z-index: 1;
  font-size: 6rem;
  color: var(--v3-blue);
}

/* ==========================================================
   12. TIPS ON HEALTHY LIFE (gallery)
   ========================================================== */
.v3-section-gallery {
  background: var(--v3-blue-light);
  padding: 5rem 0;
}

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

.v3-tip-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.v3-tip-card:hover {
  box-shadow: 0 10px 32px rgba(26,95,255,.12);
  transform: translateY(-4px);
}

.v3-tip-card__img-wrap {
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.v3-tip-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.v3-tip-card:hover .v3-tip-card__img { transform: scale(1.04); }

.v3-tip-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.v3-tip-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--v3-blue-light);
  color: var(--v3-blue);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-tip-card__title {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: .98rem;
  font-weight: 800;
  color: var(--v3-dark);
  margin: 0;
  line-height: 1.3;
}
.v3-tip-card__desc {
  font-size: .83rem;
  color: var(--v3-text);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================
   13. HOURS
   ========================================================== */
.v3-section-hours {
  background: #fff;
  padding: 4rem 0;
}
.v3-hours-rows { max-width: 520px; margin: 0 auto; }
.v3-hours-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--v3-border);
}
.v3-hours-row:last-child { border-bottom: none; }
.v3-hours-days { font-weight: 700; color: var(--v3-dark); min-width: 140px; }
.v3-hours-dots { flex: 1; border-bottom: 2px dotted var(--v3-blue-mid); }
.v3-hours-time { color: var(--v3-blue); font-weight: 700; }
.v3-multi-hours {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2rem;
}

/* ==========================================================
   14. LOCATION
   ========================================================== */
.v3-section-location {
  background: var(--v3-blue-light);
  padding: 4rem 0;
}

/* ==========================================================
   15. CONTACT INFO STRIP
   ========================================================== */
.v3-contact-info-strip {
  background: #fff;
  border-top: 1px solid var(--v3-border);
  padding: 3rem 0;
}

.v3-contact-info-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.v3-contact-info-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 0 1.5rem;
}
.v3-contact-info-item:first-child { padding-left: 0; }
.v3-contact-info-item + .v3-contact-info-item {
  border-left: 1px solid var(--v3-border);
}

.v3-contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v3-blue-mid);
  color: var(--v3-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.v3-contact-info-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--v3-text);
  margin-bottom: .2rem;
}

.v3-contact-info-value {
  display: block;
  font-weight: 700;
  color: var(--v3-dark);
  font-size: .88rem;
  text-decoration: none;
  line-height: 1.4;
}
a.v3-contact-info-value:hover { color: var(--v3-blue); }

/* ==========================================================
   16. BOTTOM CTA — You Deserve The Best Healthcare
   ========================================================== */
.v3-bottom-cta {
  background: var(--v3-blue-light);
  padding: 5rem 0;
}

.v3-bottom-cta__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.v3-bottom-cta__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.v3-bottom-cta__circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--v3-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.v3-bottom-cta__circle > i {
  font-size: 6rem;
  color: rgba(255,255,255,.55);
}

.v3-bottom-cta__content .v3-title { text-align: left; }
.v3-bottom-cta__content p {
  color: var(--v3-text);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 500px;
}

.v3-bottom-cta__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.v3-bottom-cta__phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--v3-dark);
  background: #fff;
  border: 1px solid var(--v3-border);
  border-radius: 40px;
  padding: .75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.v3-bottom-cta__phone:hover {
  border-color: var(--v3-blue);
  box-shadow: 0 4px 16px rgba(26,95,255,.12);
}
.v3-bottom-cta__phone > i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v3-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.v3-bottom-cta__phone span {
  display: block;
  font-size: .68rem;
  color: var(--v3-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.v3-bottom-cta__phone strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--v3-dark);
}

/* ==========================================================
   17. CONTACT STRIP (navy bottom)
   ========================================================== */
.v3-contact-strip {
  background: #061a6e;
  padding: 4rem 0;
}
.v3-contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.v3-contact-strip__text .v3-label { color: rgba(255,255,255,.7); }
.v3-contact-strip__text .v3-title { color: #fff; margin-bottom: 0; }
.v3-contact-strip__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.v3-contact-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: .9rem 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: background .2s;
}
.v3-contact-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.v3-contact-btn i { font-size: 1.4rem; flex-shrink: 0; }
.v3-contact-btn span { font-size: .75rem; opacity: .8; display: block; }
.v3-contact-btn strong { display: block; font-size: .95rem; }
.v3-contact-btn--wa {
  background: rgba(37,211,102,.15);
  border-color: rgba(37,211,102,.3);
}
.v3-contact-btn--wa:hover { background: rgba(37,211,102,.25); }

/* ==========================================================
   18. SOCIAL SECTION
   ========================================================== */
.v3-section-social { background: #fff; padding: 2.5rem 0; }

[data-skin="v3"] .v3-section-social .contact-card {  
  color: var(--v3-dark);
}
[data-skin="v3"] .v3-section-social .contact-card strong { color: var(--v3-dark); }
[data-skin="v3"] .v3-section-social .contact-card span   { color: var(--v3-text); opacity: 1; }

/* ==========================================================
   19. RESPONSIVE BREAKPOINTS
   ========================================================== */

/* 1200px — specialty grid to 4 col */
@media (max-width: 1200px) {
  .v3-specialty-grid { grid-template-columns: repeat(4, 1fr); }
  .v3-tips-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 900px — single column for quality, bottom CTA, reviews */
@media (max-width: 900px) {
  /* Hero: let height grow with content instead of clipping it */
  [data-skin="v3"] .hero          { min-height: 0; overflow: hidden; }
  [data-skin="v3"] .v3-hero-container { min-height: 0; height: auto; }

  /* Slides: pull out of absolute flow so they push the hero's height */
  [data-skin="v3"] .hero-slide {
    position: relative !important;
    inset: auto !important;
    display: none;
    opacity: 1 !important;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  [data-skin="v3"] .hero-slide.active { display: flex; }

  /* Grid: text above, image below */
  .v3-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2.5rem 0 0;
    width: 100%;
  }

  /* Illustration: break out of container padding → full viewport width */
  .v3-hero__illustration {
    display: flex;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
  .v3-hero__blob { display: none; }
  .v3-hero__img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    filter: none;
    display: block;
  }
  .v3-hero__icon-wrap { display: none; }

  .v3-quality-grid { grid-template-columns: 1fr; gap: 2rem; }
  .v3-quality__img-col { display: flex; justify-content: center; order: -1; }

  .v3-tips-grid { grid-template-columns: repeat(2, 1fr); }

  .v3-bottom-cta__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .v3-bottom-cta__visual { display: none; }

  .v3-specialty-header { grid-template-columns: 1fr; }
  .v3-consult-box { max-width: 100%; }

  .v3-book-grid { grid-template-columns: 1fr; gap: 2rem; }
  .v3-book-illustration { display: none; }

  .v3-team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px — hero 1-col, contact info wrap */
@media (max-width: 768px) {
  .v3-hero__stats { flex-wrap: wrap; gap: .75rem; }

  .v3-contact-info-grid { flex-wrap: wrap; gap: 1.5rem; }
  .v3-contact-info-item {
    flex: 0 0 calc(50% - .75rem);
    min-width: 140px;
    padding: 0;
    border-left: none;
  }

  .v3-contact-strip__inner { flex-direction: column; text-align: center; }
  .v3-contact-strip__actions { justify-content: center; }

  .v3-quality-stats { flex-direction: column; gap: 1.5rem; }
  .v3-quality-stat + .v3-quality-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--v3-border); padding-top: 1.5rem; }

  .v3-announce-pill__inner { border-radius: 16px; flex-direction: column; align-items: flex-start; }
  .v3-announce-pill__btn { width: 100%; justify-content: center; }
}

/* 560px — team 1-col, tips 1-col, contact info 2-col */
@media (max-width: 560px) {
  .v3-team-grid { grid-template-columns: 1fr; }
  .v3-tips-grid { grid-template-columns: 1fr; }
  .v3-contact-info-item { flex: 0 0 100%; }
  .v3-tip-card__icon { display: none; }
  .v3-tip-card__img-wrap { height: auto; aspect-ratio: 4/3; }
  .v3-tip-card__body { flex: none; padding: 0.75rem 1rem; }
}

/* 480px — specialty 2-col, stats flex-wrap */
@media (max-width: 480px) {
  .v3-specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-hero__stats { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .v3-hero-stat { border-left: none !important; padding: 0 !important; }
  .v3-section-header { margin-bottom: 2rem; }
  .v3-hours-days { min-width: 110px; }
  .v3-quality-stat__num { font-size: 1.7rem; }
  .v3-circular-img { max-width: 300px; }
}
