@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ============ VARIABLES ============ */
:root {
  --header-height: 3.5rem;
  --first-color: #1a3a6b;
  --first-color-light: #2563eb;
  --first-color-dark: #12295a;
  --first-color-bg: #eff6ff;
  --title-color: #0f172a;
  --text-color: #475569;
  --text-color-light: #94a3b8;
  --body-color: #ffffff;
  --container-color: #f8fafc;
  --border-color: #e2e8f0;
  --white-color: #ffffff;
  --body-font: 'Poppins', sans-serif;
  --title-font: 'Playfair Display', serif;
  --biggest-font-size: 3.25rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --z-fixed: 100;
  --z-tooltip: 10;
}

/* ============ BASE ============ */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--title-font);
  color: var(--title-color);
}

ul { list-style: none; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--first-color-light); border-radius: 10px; }

/* ============ REUSABLE ============ */
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.grid { display: grid; }
.section { padding-block: 5rem 1rem; }

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--first-color-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: .5rem;
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: 3rem;
}

.section__title span {
  color: var(--first-color-light);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 4rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  border: none;
}

.btn--primary {
  background: var(--first-color);
  color: white;
  box-shadow: 0 8px 24px rgba(26,58,107,.25);
}

.btn--primary:hover {
  background: var(--first-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,58,107,.35);
}

.btn--outline {
  border: 2px solid var(--first-color);
  color: var(--first-color);
  background: transparent;
}

.btn--outline:hover {
  background: var(--first-color);
  color: white;
  transform: translateY(-3px);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
  margin-top: 1.5rem;
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: transparent;
  transition: background .4s, box-shadow .4s;
}

.header.scroll-header {
  background: var(--body-color);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.3;
}

.nav__logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: var(--normal-font-size);
  font-weight: 500;
  color: var(--text-color);
  transition: color .3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--first-color-light);
  transition: width .3s;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--first-color-light);
}

.nav__link.active-link::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--first-color);
  color: white;
  padding: .6rem 1.25rem;
  border-radius: 4rem;
  font-size: var(--small-font-size);
  font-weight: 600;
  transition: all .3s;
}

.nav__btn:hover {
  background: var(--first-color-dark);
  transform: translateY(-2px);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* ============ HOME ============ */
.home {
  padding-top: calc(var(--header-height) + 3rem);
  background: linear-gradient(135deg, var(--first-color-bg) 0%, #dbeafe 100%);
  overflow: hidden;
}

.home__container {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-bottom: 3rem;
}

.home__subtitle {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--small-font-size);
  color: var(--first-color-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 1.2;
  color: var(--title-color);
  margin-bottom: 1.25rem;
}

.home__title span {
  color: var(--first-color-light);
}

.home__description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.home__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.home__stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.home__stat h3 {
  font-size: 2rem;
  color: var(--first-color-light);
}

.home__stat h3 span { font-size: 1.25rem; }

.home__stat p {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.home__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__img-wrapper {
  position: relative;
  width: 380px;
  height: 450px;
}

.home__img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-light) 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(26,58,107,.25);
  overflow: hidden;
}

.home__img-bg::after {
  content: '🦷';
  font-size: 120px;
  opacity: 0.15;
}

.home__img-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  animation: float-card 3s ease-in-out infinite;
}

.home__img-card i {
  font-size: 1.5rem;
  color: var(--first-color-light);
}

.home__img-card span {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--title-color);
}

.home__img-card--1 {
  top: 2rem;
  left: -2rem;
  animation-delay: 0s;
}

.home__img-card--2 {
  bottom: 5rem;
  left: -2.5rem;
  animation-delay: 1s;
}

.home__img-card--3 {
  top: 40%;
  right: -2rem;
  animation-delay: 2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ MARQUEE ============ */
.marquee__section {
  background: var(--first-color);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee__track span {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 2rem;
  letter-spacing: 2px;
}

.marquee__track span i {
  font-size: .4rem;
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICES ============ */
.services {
  background: var(--first-color-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service__card {
  background: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--first-color-light));
  transform: scaleX(0);
  transition: transform .4s;
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,58,107,.12);
  border-color: var(--first-color-light);
}

.featured__card {
  background: var(--first-color);
  border-color: var(--first-color);
}

.featured__card .service__icon i,
.featured__card h3,
.featured__card p,
.featured__card .service__link {
  color: white !important;
}

.featured__card .service__icon {
  background: rgba(255,255,255,0.15) !important;
}

.service__icon {
  width: 56px;
  height: 56px;
  background: var(--first-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s;
}

.service__card:hover .service__icon {
  background: var(--first-color-bg);
}

.service__icon i {
  font-size: 1.75rem;
  color: var(--first-color);
}

.service__card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.service__card p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--first-color-light);
  transition: gap .3s;
}

.service__link:hover { gap: .5rem; }

/* ============ ABOUT ============ */
.about { background: var(--body-color); }

.about__container {
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image { position: relative; }

.about__img-bg {
  width: 80%;
  height: 480px;
  background: linear-gradient(135deg, var(--first-color-bg), #dbeafe);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 3px solid var(--border-color);
  box-shadow: 0 16px 48px rgba(26,58,107,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.doctor-bg { background: linear-gradient(135deg, #dbeafe, var(--first-color-bg)); }

.doctor-bg i {
  font-size: 120px;
  color: var(--first-color);
  opacity: 0.3;
}

.about__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.about__badge i {
  font-size: 1.75rem;
  color: var(--first-color-light);
}

.about__badge h4 {
  font-size: var(--small-font-size);
  font-weight: 700;
}

.about__badge span {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.about__badge--1 { top: 2rem; right: -1rem; }
.about__badge--2 { bottom: 3rem; right: -1rem; }

.about__data .section__subtitle,
.about__data .section__title {
  text-align: left;
}

.about__description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--small-font-size);
  font-weight: 500;
}

.about__feature i {
  color: var(--first-color-light);
  font-size: 1.125rem;
}

/* ============ HOURS ============ */
.hours { background: var(--first-color-bg); }

.hours__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hours__card {
  background: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all .3s;
}

.hours__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,58,107,.1);
}

.featured__hours {
  background: var(--first-color);
  border-color: var(--first-color);
  color: white;
}

.featured__hours .hours__icon i,
.featured__hours h3,
.featured__hours .hours__time,
.featured__hours .hours__time span,
.featured__hours .hours__divider {
  color: white !important;
}

.featured__hours .hours__icon {
  background: rgba(255,255,255,.15) !important;
}

.closed__card {
  opacity: 0.7;
}

.hours__icon {
  width: 64px;
  height: 64px;
  background: var(--first-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.hours__icon i {
  font-size: 1.75rem;
  color: var(--first-color);
}

.hours__card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.hours__times {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.hours__time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.hours__time i { color: var(--first-color-light); }

.hours__divider {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  font-style: italic;
}

.hours__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .25rem .75rem;
  border-radius: 4rem;
  font-size: var(--smaller-font-size);
  font-weight: 600;
}

.hours__badge.open {
  background: #dcfce7;
  color: #16a34a;
}

.hours__badge.closed {
  background: #fee2e2;
  color: #dc2626;
}

.hours__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: .75rem;
  padding: 1rem 1.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.hours__note i {
  color: var(--first-color-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hours__note a {
  color: var(--first-color-light);
  font-weight: 600;
}

/* ============ WHY US ============ */
.why { background: var(--body-color); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why__card {
  background: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
}

.why__card:hover {
  background: var(--first-color);
  border-color: var(--first-color);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,58,107,.2);
}

.why__card:hover h3,
.why__card:hover p,
.why__card:hover .why__icon i {
  color: white;
}

.why__card:hover .why__icon {
  background: rgba(255,255,255,.15);
}

.why__icon {
  width: 60px;
  height: 60px;
  background: var(--first-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background .3s;
}

.why__icon i {
  font-size: 1.75rem;
  color: var(--first-color);
  transition: color .3s;
}

.why__card h3 {
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
  transition: color .3s;
}

.why__card p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color .3s;
}

/* ============ TESTIMONIALS ============ */
.testimonial { background: var(--first-color-bg); padding-bottom: 5rem; }

.testimonial__swiper { padding-bottom: 3rem !important; }

.testimonial__card {
  background: var(--body-color);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid var(--border-color);
}

.testimonial__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}

.testimonial__stars i { color: #fbbf24; }

.testimonial__card p {
  color: var(--text-color);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--small-font-size);
}

.testimonial__author h4 { font-size: var(--normal-font-size); }
.testimonial__author span { font-size: var(--smaller-font-size); color: var(--text-color-light); }

.swiper-pagination-bullet-active { background: var(--first-color) !important; }

/* ============ CONTACT ============ */
.contact { background: var(--body-color); }

.contact__container {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: .75rem;
  transition: all .3s;
}

.contact__card:hover {
  border-color: var(--first-color-light);
  box-shadow: 0 4px 16px rgba(26,58,107,.08);
  transform: translateX(8px);
}

.contact__card i {
  font-size: 1.5rem;
  color: var(--first-color-light);
  margin-top: .25rem;
}

.contact__card h4 {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .25rem;
}

.contact__card p,
.contact__card a {
  font-size: var(--small-font-size);
  color: var(--text-color);
  transition: color .3s;
}

.contact__card a:hover { color: var(--first-color-light); }

.contact__form {
  background: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.contact__form h3 {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.form__group { margin-bottom: 1.25rem; }

.form__group label {
  display: block;
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--first-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}

.form__input {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: .75rem;
  padding: .875rem 1rem;
  transition: border-color .3s, box-shadow .3s;
}

.form__input:focus-within {
  border-color: var(--first-color-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form__input i {
  color: var(--first-color-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.form__input input,
.form__input select,
.form__input textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--title-color);
}

.form__input input::placeholder,
.form__input textarea::placeholder {
  color: var(--text-color-light);
}

.form__textarea { align-items: flex-start; }
.form__textarea i { margin-top: .25rem; }

/* ============ MAP ============ */
.map__section {
  border-top: 4px solid var(--first-color);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--first-color);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.footer__container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: white;
  font-family: var(--title-font);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.footer__logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: var(--small-font-size);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: background .3s;
}

.footer__social a:hover { background: rgba(255,255,255,.25); }

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
  color: white;
  font-size: var(--normal-font-size);
  margin-bottom: 1.25rem;
}

.footer__links,
.footer__services {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__links a,
.footer__services a {
  font-size: var(--small-font-size);
  color: rgba(255,255,255,.65);
  transition: color .3s;
}

.footer__links a:hover,
.footer__services a:hover {
  color: white;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: var(--small-font-size);
}

.footer__contact p i { flex-shrink: 0; margin-top: .125rem; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  font-size: var(--small-font-size);
  max-width: 1120px;
  margin-inline: auto;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer__bottom strong { color: rgba(255,255,255,.9); }

/* ============ SCROLL UP ============ */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background: var(--first-color);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(26,58,107,.3);
  transition: bottom .4s, transform .3s;
  z-index: var(--z-tooltip);
}

.scrollup:hover { transform: translateY(-4px); }
.scrollup.show-scroll { bottom: 5rem; }

/* ============ WHATSAPP ============ */
.whatsapp__float {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: var(--z-tooltip);
  animation: float-bounce 2s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ RESPONSIVE ============ */
@media screen and (max-width: 1024px) {
  .home__title { font-size: 2.75rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .hours__container { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .footer__container { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--body-color);
    width: 70%;
    height: 100vh;
    padding: 5rem 2rem;
    box-shadow: -4px 0 16px rgba(0,0,0,.1);
    transition: right .4s;
    z-index: var(--z-fixed);
  }

  .nav__menu.show-menu { right: 0; }
  .nav__list { flex-direction: column; gap: 2.5rem; }
  .nav__close { display: block; position: absolute; top: 1.25rem; right: 1.5rem; }
  .nav__toggle { display: block; }
  .nav__btn { display: none; }

  .home__container { grid-template-columns: 1fr; text-align: center; }
  .home__subtitle { justify-content: center; }
  .home__btns { justify-content: center; }
  .home__stats { justify-content: center; }
  .home__img-wrapper { width: 300px; height: 350px; }
  .home__title { font-size: 2.25rem; }
  .home__img-card { padding: .625rem 1rem; font-size: .75rem; }

  .services__grid { grid-template-columns: 1fr 1fr; }

  .about__container { grid-template-columns: 1fr; }
  .a.doctor__img-bg { height: 300px !important; }
.doctor-photo__img { height: 300px !important; }bout__image { display: block; width: 100%; }

  .about__data .section__subtitle,
  .about__data .section__title { text-align: center; }

  .contact__container { grid-template-columns: 1fr; }
  .contact__info .section__subtitle,
  .contact__info .section__title { text-align: center; }
  .contact__description { text-align: center; }

  .footer__container { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 480px) {
  .home__title { font-size: 1.875rem; }
  .section__title { font-size: 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .home__img-wrapper { width: 260px; height: 300px; }
  /* ============ PAGE HERO ============ */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--first-color-bg), #dbeafe);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.08), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--title-color);
  margin-bottom: .75rem;
}

.page-hero h1 span { color: var(--first-color-light); }

.page-hero p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .875rem;
}

.page-hero__breadcrumb a {
  color: var(--first-color-light);
  font-weight: 600;
}

.page-hero__breadcrumb span {
  color: var(--text-color);
}

.page-hero__breadcrumb i {
  color: var(--text-color-light);
}

/* ============ DOCTOR SECTION ============ */
.doctor { background: var(--body-color); }

.doctor__container {
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.doctor__img-wrapper { position: relative; }

.doctor__img-bg {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--first-color-bg), #dbeafe);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  overflow: hidden;
}

.doctor__img-bg i {
  font-size: 120px;
  color: var(--first-color);
  opacity: 0.2;
}

.doctor__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border: 1px solid var(--border-color);
}

.doctor__badge i {
  font-size: 1.75rem;
  color: var(--first-color-light);
}

.doctor__badge h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--title-color);
}

.doctor__badge span {
  font-size: .75rem;
  color: var(--text-color-light);
}

.doctor__badge--1 { top: 1.5rem; right: -1.5rem; }
.doctor__badge--2 { bottom: 3rem; right: -1.5rem; }

.doctor__data .section__subtitle,
.doctor__data .section__title {
  text-align: left;
}

.doctor__description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .938rem;
}

.doctor__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}

.doctor__highlight {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-color);
}

.doctor__highlight i {
  color: var(--first-color-light);
  font-size: 1.125rem;
}

/* ============ EDUCATION ============ */
.education { background: var(--first-color-bg); }

.education__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.education__card {
  background: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all .3s;
}

.education__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,58,107,.1);
  border-color: var(--first-color-light);
}

.education__card--featured {
  border-left: 4px solid var(--first-color-light);
  background: linear-gradient(135deg, var(--first-color-bg), white);
}

.education__icon {
  width: 60px;
  height: 60px;
  background: var(--first-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.education__icon i {
  font-size: 1.75rem;
  color: var(--first-color);
}

.education__label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--first-color-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.education__info h3 {
  font-size: 1.125rem;
  color: var(--title-color);
  margin-bottom: .875rem;
}

.education__detail {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
}

.education__detail i {
  color: var(--first-color-light);
  font-size: 1.125rem;
  margin-top: .125rem;
  flex-shrink: 0;
}

.education__detail p {
  font-size: .875rem;
  color: var(--text-color);
  line-height: 1.7;
}

.education__tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.education__tags span {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--first-color-bg);
  color: var(--first-color);
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 4rem;
  border: 1px solid rgba(37,99,235,.15);
}

/* ============ POSTING ============ */
.posting { background: var(--body-color); }

.posting__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.posting__card {
  background: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all .4s;
  overflow: hidden;
}

.posting__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--first-color-light);
  transition: height .4s;
}

.posting__card:hover::before { height: 100%; }

.posting__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26,58,107,.12);
  border-color: var(--first-color-light);
}

.posting__card--featured {
  background: var(--first-color);
  border-color: var(--first-color);
}

.posting__card--featured .posting__number,
.posting__card--featured .posting__label,
.posting__card--featured h3,
.posting__card--featured p {
  color: white !important;
}

.posting__card--featured .posting__icon {
  background: rgba(255,255,255,.15) !important;
}

.posting__card--featured .posting__icon i {
  color: white !important;
}

.posting__card--featured .posting__tags span {
  background: rgba(255,255,255,.15) !important;
  color: white !important;
  border-color: rgba(255,255,255,.2) !important;
}

.posting__number {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: rgba(37,99,235,.1);
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  line-height: 1;
}

.posting__icon {
  width: 56px;
  height: 56px;
  background: var(--first-color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.posting__icon i {
  font-size: 1.75rem;
  color: var(--first-color);
}

.posting__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--first-color-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.posting__info h3 {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-bottom: .75rem;
}

.posting__info p {
  font-size: .875rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.posting__tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.posting__tags span {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--first-color-bg);
  color: var(--first-color);
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 4rem;
  border: 1px solid rgba(37,99,235,.15);
}

/* ============ ABOUT STATS ============ */
.about-stats { background: var(--first-color); padding-block: 4rem; }

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-stats__card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1.25rem;
  transition: all .3s;
}

.about-stats__card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-8px);
}

.about-stats__icon {
  font-size: 2rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}

.about-stats__card h3 {
  font-size: 2.5rem;
  color: white;
  font-family: 'Playfair Display', serif;
  margin-bottom: .25rem;
}

.about-stats__card h3 span {
  font-size: 1.5rem;
}

.about-stats__card p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}

/* ============ DOCTOR PHOTO SECTION ============ */
.doctor-photo {
  background: linear-gradient(135deg, var(--first-color) 0%, #1e40af 100%);
  padding-block: 5rem;
}

.doctor-photo__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

.doctor-photo__image { display: relative;
}

.doctor-photo__img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.doctor-photo__badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  border-radius: 4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  white-space: nowrap;
}

.doctor-photo__badge i {
  color: var(--first-color-light);
  font-size: 1.5rem;
}

.doctor-photo__badge span {
  font-weight: 700;
  color: var(--title-color);
  font-size: .938rem;
}

/* ============ SERVICES INTRO ============ */
.services-intro { background: var(--first-color-bg); }

.services-intro__content {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-intro__content p {
  font-size: 1.0625rem;
  color: var(--text-color);
  line-height: 1.8;
}

.services-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.si__stat {
  background: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
}

.si__stat:hover {
  border-color: var(--first-color-light);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,58,107,.1);
}

.si__stat i {
  font-size: 2rem;
  color: var(--first-color-light);
  margin-bottom: .75rem;
  display: block;
}

.si__stat h3 {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  color: var(--first-color);
  margin-bottom: .25rem;
}

.si__stat p {
  font-size: .813rem;
  color: var(--text-color);
}

/* ============ SERVICE DETAILS ============ */
.all-services { background: var(--body-color); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-detail__img-bg {
  width: 100%;
  height: 380px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  border: 2px solid var(--border-color);
  transition: transform .3s;
}

.service-detail__img-bg:hover {
  transform: scale(1.02);
}

.service-img--1 { background: linear-gradient(135deg, #f0f9ff, #dbeafe); color: #1d4ed8; }
.service-img--2 { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626; }
.service-img--3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #16a34a; }
.service-img--4 { background: linear-gradient(135deg, #fdf4ff, #f3e8ff); color: #7c3aed; }
.service-img--5 { background: linear-gradient(135deg, #fff7ed, #fed7aa); color: #ea580c; }
.service-img--6 { background: linear-gradient(135deg, #fefce8, #fef08a); color: #ca8a04; }
.service-img--7 { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); color: #0d9488; }
.service-img--8 { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #be185d; }

.service-detail__img-bg i {
  opacity: 0.35;
}

.service-detail__number {
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: rgba(37,99,235,.06);
  font-weight: 900;
  line-height: 1;
  margin-bottom: -.5rem;
}

.service-detail__tag {
  display: inline-block;
  background: var(--first-color-bg);
  color: var(--first-color-light);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .875rem;
  border: 1px solid rgba(37,99,235,.15);
}

.service-detail__content h3 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--title-color);
  margin-bottom: 1rem;
}

.service-detail__content p {
  font-size: .938rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-color);
}

.service-detail__list i {
  color: var(--first-color-light);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ============ RESPONSIVE FOR NEW PAGES ============ */
@media screen and (max-width: 1024px) {
  .posting__grid { grid-template-columns: 1fr 1fr; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro__stats { grid-template-columns: repeat(2, 1fr); }
  .service-detail { gap: 3rem; }
}

@media screen and (max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }

  .doctor__container { grid-template-columns: 1fr; }
  .doctor__image { display: none; }
  .doctor__data .section__subtitle,
  .doctor__data .section__title { text-align: center; }

  .education__grid { grid-template-columns: 1fr; }
  .education__card { flex-direction: column; }

  .posting__grid { grid-template-columns: 1fr; }

  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }

  .doctor-photo__container { grid-template-columns: 1fr; }
  .doctor-photo__image { display: none; }

  .services-intro__stats { grid-template-columns: repeat(2, 1fr); }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .service-detail--right .service-detail__content {
    order: -1;
  }
}

@media screen and (max-width: 480px) {
  .page-hero h1 { font-size: 1.75rem; }
  .education__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
  .services-intro__stats { grid-template-columns: 1fr 1fr; }
  .service-detail__content h3 { font-size: 1.5rem; }
  .doctor-photo__container { grid-template-columns: 1fr; }
}