/* ══ GLOBAL DESIGN SYSTEM ══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #24355a;
  --navy-gradient: linear-gradient(135deg, #0e1628 0%, #1a2744 100%);
  --blue: #2e50a8;
  --blue2: #3a5fc0;
  --blue-gradient: linear-gradient(135deg, #2e50a8 0%, #3a5fc0 100%);
  --gold: #b8923a;
  --gold-hover: #a17e2f;
  --gold-gradient: linear-gradient(135deg, #d8b257 0%, #b8923a 100%);
  --white: #ffffff;
  --off: #f8f7f5;
  --off2: #f0eeea;
  --dark: #1a1f2e;
  --gray: #6b7280;
  --gray2: #9ca3af;
  --border: #e8e6e2;
  --success: #10b981;
  --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--off);
}
::-webkit-scrollbar-thumb {
  background: var(--gray2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* ══ NAVIGATION ══ */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  z-index: 1000;
  gap: 1rem;
}

.nav-logo {
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.nav-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: .875rem;
  font-weight: 500;
  opacity: .7;
  transition: all .25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--blue);
  opacity: 1;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--gold);
}

.nav-cta {
  background: var(--blue-gradient);
  color: white;
  text-decoration: none;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(46, 80, 168, 0.2);
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 80, 168, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

/* Hamburger transition when active */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══ GENERAL HERO FOR SUB-PAGES ══ */
.sub-hero {
  background: var(--navy-gradient);
  padding: 150px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46,80,168,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.sub-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sub-hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══ HOME HERO ══ */
#home {
  min-height: 100vh;
  background: url('../img/image.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,15,35,.82) 40%, rgba(10,15,35,.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 5% 90px;
  max-width: 650px;
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -.03em;
}

.hero-p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.76);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--blue-gradient);
  color: white;
  text-decoration: none;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(46, 80, 168, 0.35);
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 80, 168, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: white;
  text-decoration: none;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(184, 146, 58, 0.25);
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 146, 58, 0.35);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  object-fit: cover;
  margin-left: -9px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-review {
  position: absolute;
  bottom: 48px;
  right: 5%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,0.25);
  max-width: 295px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.rv-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: .6rem;
}

.rv-text {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.rv-author img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.rv-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
}

.rv-handle {
  font-size: .74rem;
  color: var(--gray2);
}

/* ══ GENERIC SECTIONS ══ */
.section-padding {
  padding: 90px 5%;
}

.sec-head {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 5%;
}

.sec-h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
  letter-spacing: -0.02em;
}

.sec-head.light .sec-h2 {
  color: white;
}

.sec-p {
  font-size: .95rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.sec-head.light .sec-p {
  color: rgba(255, 255, 255, 0.6);
}

/* ══ SERVICES SECTION (HOME SUMMARY) ══ */
#services {
  background: var(--navy-gradient);
}

.svc-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.svc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.svc-nav-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(46,80,168,0.3);
}

.svc-nav-btn.prev {
  left: 0.5rem;
}

.svc-nav-btn.next {
  right: 0.5rem;
}

@media (max-width: 768px) {
  .svc-slider-container {
    padding: 0 2.5rem;
  }
  .svc-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.svc-wrap {
  overflow-x: auto;
  padding: 0 5% 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.svc-wrap::-webkit-scrollbar {
  display: none;
}

.svc-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.svc-card {
  width: 290px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.svc-img-box {
  width: 100%;
  height: 310px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: .9rem;
  background: linear-gradient(135deg, #1a2744 0%, #2e50a8 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.svc-img-box img[data-error] {
  display: none;
}

.svc-card:hover .svc-img-box img {
  transform: scale(1.06);
}

.svc-info {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.svc-card:hover .svc-info {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.svc-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.svc-cat {
  font-size: .78rem;
  color: var(--gray2);
  margin-top: .2rem;
  font-weight: 500;
}

.svc-arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--dark);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.svc-card:hover .svc-arr {
  background: var(--blue);
  color: white;
  transform: translateX(3px);
}

.svc-prog {
  padding: 1.6rem 5% 0;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-track {
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}

.svc-bar {
  height: 100%;
  width: 16%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width .25s ease;
}

/* ══ SERVICES PAGE EXPANDED ══ */
.services-grid-detailed {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.service-card-expanded {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.service-card-expanded:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 80, 168, 0.2);
}

.service-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-expanded:hover .service-card-header img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--navy);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.02em;
}

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-details-meta {
  background: var(--off);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.meta-row:last-child {
  margin-bottom: 0;
}

.meta-label {
  color: var(--gray);
  font-weight: 500;
}

.meta-value {
  color: var(--dark);
  font-weight: 700;
}

.service-btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.service-btn-book:hover,
.service-card-expanded:hover .service-btn-book {
  background: #20ba5a;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* ══ COMMITMENT & STATS ══ */
#about {
  background: var(--off);
}

.about-welcome {
  max-width: 1000px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-welcome-text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.about-welcome-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-welcome-text p:last-child {
  margin-bottom: 0;
}

.about-welcome-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  height: 380px;
}

.about-welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-num {
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: .88rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ══ ABOUT US PAGE EXTRA SECTIONS ══ */
.bio-sec {
  background: var(--white);
}

.bio-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-image-box {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.bio-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-gradient);
  color: white;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(184, 146, 58, 0.3);
  text-align: center;
  z-index: 2;
}

.bio-years-badge .num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.bio-years-badge .txt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bio-details h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.bio-details h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.bio-sub {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.bio-p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.bio-p strong {
  color: var(--dark);
}

.bio-credentials {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.cred-icon {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.cred-text {
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
}

/* ══ CLINIC STORY & JOURNEY ══ */
.journey-sec {
  background: var(--off);
  padding: 80px 5%;
}

.journey-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.journey-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
}

.j-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.j-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.2rem;
  letter-spacing: -0.015em;
}

.j-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.j-lists-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}

.j-list-box h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.j-list {
  list-style: none;
  padding: 0;
}

.j-list li {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.45;
}

.j-list li::before {
  content: '•';
  color: var(--gold);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.1rem;
}

.j-list.highlights li::before {
  content: '✓';
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  top: 1px;
}

.j-list.highlights li strong {
  color: var(--navy);
}

.journey-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-img-box {
  width: 100%;
  max-width: 440px;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
}

.journey-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══ CERTIFICATES & ACHIEVEMENTS ══ */
.cert-sec, .journey-sec {
  background: var(--off);
}

.cert-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.cert-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.cert-nav-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(46,80,168,0.25);
}

.cert-nav-btn.prev {
  left: 0.5rem;
}

.cert-nav-btn.next {
  right: 0.5rem;
}

@media (max-width: 768px) {
  .cert-slider-container {
    padding: 0 2.5rem;
  }
  .cert-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.cert-outer {
  overflow: hidden;
  padding: 0 0 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cert-outer::-webkit-scrollbar {
  display: none;
}

.cert-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.cert-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 80, 168, 0.2);
}

.cert-img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #fcfbfa;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.cert-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-card:hover .cert-img-box img {
  transform: scale(1.05);
}

.cert-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cert-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cert-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* ══ CLINIC STANDARDS ══ */
.standards-sec {
  background: var(--white);
}

.standards-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.standard-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.std-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46, 80, 168, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.std-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.std-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ══ PATIENT STORIES / REVIEWS ══ */
.stories-sec {
  background: var(--navy);
}

.stories-outer {
  overflow: hidden;
  padding: 0 0 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories-outer::-webkit-scrollbar {
  display: none;
}

.stories-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.stories-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.story-card {
  width: 360px;
  flex-shrink: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: .9rem;
}

.story-badge {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .22rem .75rem;
  font-size: .74rem;
  color: var(--gray);
  margin-bottom: .9rem;
  font-weight: 500;
  background: var(--off);
  width: fit-content;
}

.story-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
  letter-spacing: -0.01em;
}

.story-body {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
}

.story-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.story-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.story-aname {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}

.story-adate {
  font-size: .77rem;
  color: var(--gray2);
  margin-top: .1rem;
}

/* ══ FAQ SECTION ══ */
.faq-sec {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: var(--off);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.01);
  transition: border 0.3s;
}

.faq-item:hover {
  border-color: rgba(46, 80, 168, 0.15);
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
}

.faq-q {
  font-size: .9rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
}

.faq-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-gradient);
  color: white;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-btn {
  transform: rotate(45deg);
  background: var(--dark);
}

.faq-ans {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.75;
  padding: 0 1.4rem 1.4rem;
  display: none;
}

.faq-item.open .faq-ans {
  display: block;
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══ CONTACT & APPOINTMENT COMPONENT ══ */
.contact-sec {
  background: var(--off);
}

.contact-card {
  background: linear-gradient(135deg, #132247 0%, #1c3263 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(184, 146, 58, 0.3);
}

.c-label {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.c-h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: white;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.c-p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.c-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: .8rem 2rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
  box-shadow: none;
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--gold-gradient);
  color: white;
  text-decoration: none;
  padding: .8rem 2rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(184, 146, 58, 0.25);
  border: 2px solid transparent;
}

.btn-wa:hover {
  background: var(--gold);
  box-shadow: 0 6px 18px rgba(184, 146, 58, 0.35);
  transform: translateY(-2px);
}

/* ══ CONTACT PAGE LAYOUT ══ */
.contact-layout-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--off);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.contact-info-panel h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-detail-card {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-detail-card:last-child {
  margin-bottom: 0;
}

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(46, 80, 168, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.detail-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.detail-content a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.detail-content a:hover {
  text-decoration: underline;
}

/* ══ PREMIUM BOOKING FORM ══ */
.booking-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  position: relative;
}

.booking-form-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.booking-form-wrapper p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--off);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(46, 80, 168, 0.12);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--blue-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(46, 80, 168, 0.2);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 80, 168, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Success notification style */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.form-success-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.success-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Map frame styling */
.map-sec {
  background: var(--off);
  padding: 0;
}

.map-wrapper {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══ FOOTER ══ */
footer {
  background: linear-gradient(135deg, #1b2848 0%, #2e50a8 100%);
  padding: 80px 5% 40px;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
  gap: 3.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2.5rem;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.f-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.f-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.015em;
}

.f-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 320px;
}

.f-label {
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
}

.f-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.f-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links-list li {
  margin-bottom: 0.75rem;
}

.f-links-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
}

.f-links-list a:hover {
  color: var(--gold) !important;
  transform: translateX(4px);
}

.f-val {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.6;
}

.f-loc-link {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.f-loc-link:hover {
  color: var(--gold) !important;
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.f-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.f-contact-item a:hover {
  color: var(--gold) !important;
}

.f-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
  margin-left: 0.25rem;
}

.footer-bottom a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ══ FLOATING WA ══ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 990px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about-welcome {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-welcome-img {
    height: 320px;
  }
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bio-image-box {
    height: 400px;
    max-width: 450px;
    margin: 0 auto;
  }
  .bio-years-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -15px;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .journey-img-box {
    max-width: 400px;
    height: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 64px 5%;
  }
  
  /* stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stat-card {
    min-height: 200px;
    padding: 2rem 1.5rem;
  }
  
  /* story cards */
  .story-card {
    width: 310px;
    padding: 1.8rem;
  }
  
  /* contact card */
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  
  /* FAQ grid */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  /* navigation */
  nav {
    top: 10px;
    width: calc(100% - 24px);
    padding: 12px 18px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    gap: 1.1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    border: 1px solid var(--border);
  }
  .nav-links.open a {
    font-size: 1rem;
    opacity: .8;
    padding: 4px 0;
  }
  .nav-links.open a.active::after {
    bottom: -2px;
  }
  .nav-toggle {
    display: flex;
  }
  
  /* hero */
  #home {
    min-height: 100svh;
  }
  .hero-content {
    padding: 110px 5% 70px;
  }
  .hero-h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }
  .hero-p {
    font-size: .88rem;
    margin-bottom: 1.8rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 2rem;
  }
  .hero-btns a {
    text-align: center;
    padding: .9rem 1.4rem;
    font-size: .9rem;
    width: 100%;
  }
  .hero-review {
    display: none;
  }
  
  /* services */
  .svc-card {
    width: 240px;
  }
  .svc-img-box {
    height: 250px;
  }
  
  /* stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .stat-card {
    min-height: auto;
    padding: 1.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .stat-num {
    font-size: 2.8rem;
  }
  .stat-label {
    text-align: right;
    margin-top: 0;
  }
  .stat-desc {
    display: none;
  }
  
  /* stories */
  .stories-sec {
    padding: 56px 0;
  }
  .stories-head {
    padding: 0 5%;
    margin-bottom: 2rem;
  }
  .story-card {
    width: 270px;
    padding: 1.5rem;
  }
  .story-title {
    font-size: 1.05rem;
  }
  .story-body {
    font-size: .83rem;
  }
  
  /* contact page */
  .contact-info-panel {
    padding: 1.8rem 1.5rem;
  }
  .booking-form-wrapper {
    padding: 1.8rem 1.5rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  /* journey section mobile */
  .j-lists-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .journey-card {
    padding: 2rem 1.5rem;
  }
  .journey-img-box {
    max-width: 100%;
    height: 380px;
  }
  
  /* footer */
  footer {
    padding: 50px 5% 25px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero-h1 {
    font-size: 2.2rem;
  }
  .story-card {
    width: 240px;
  }
  .svc-card {
    width: 210px;
  }
  .svc-img-box {
    height: 220px;
  }
}
