/* ============================================
   YASHASHREE DENTAL FAMILY CARE - MAIN STYLES
   Color Palette:
   --teal:    #0A7E8C  (primary brand)
   --teal-dk: #065F6B  (hover/dark)
   --teal-lt: #E0F5F7  (soft backgrounds)
   --gold:    #D4A843  (accent/CTA)
   --gold-lt: #FBF3E2  (soft gold bg)
   --white:   #FFFFFF
   --gray-10: #F4F8F9
   --gray-20: #E8EDEF
   --gray-50: #8A9EA3
   --gray-80: #2E3E42
   --dark:    #152527
============================================ */

:root {
  --teal:     #0A7E8C;
  --teal-dk:  #065F6B;
  --teal-lt:  #E0F5F7;
  --gold:     #D4A843;
  --gold-lt:  #FBF3E2;
  --white:    #FFFFFF;
  --gray-10:  #F4F8F9;
  --gray-20:  #E8EDEF;
  --gray-50:  #8A9EA3;
  --gray-80:  #2E3E42;
  --dark:     #152527;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(10,126,140,0.12);
  --shadow-sm:0 2px 8px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-80);
  background: var(--white);
}

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: var(--dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dk); }

img { max-width: 100%; display: block; }

/* UTILITIES */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle {
  text-align: center;
  color: var(--gray-50);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}
.bg-gray   { background: var(--gray-10); }
.bg-teal   { background: var(--teal); }
.bg-dark   { background: var(--dark); }
.bg-teal-lt{ background: var(--teal-lt); }
.text-white{ color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-center{ text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #bf9430;
  border-color: #bf9430;
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212,168,67,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dk);
  border-color: var(--teal-dk);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* CARD */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-body { padding: 28px; }
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { color: var(--teal); }

/* TAG / BADGE */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-teal { background: var(--teal-lt); color: var(--teal); }
.badge-gold { background: var(--gold-lt); color: #8a6610; }

/* =====================
   TOPBAR
===================== */
.topbar {
  background: var(--dark);
  color: var(--gray-50);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gray-50); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* =====================
   HEADER / NAV
===================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: auto;
  height: 72px !important;
  max-width: 160px;
  border-radius: 8px;
  object-fit: contain;
}
.logo-text { line-height: 1.2; }
.logo-text span { display: block; }
.logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}
.logo-tagline {
  font-size: .72rem;
  color: var(--gray-50);
  letter-spacing: .04em;
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-80);
  transition: all .2s;
}
nav a:hover, nav a.active {
  background: var(--teal-lt);
  color: var(--teal);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: .7em;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: .88rem;
  color: var(--gray-80);
  border-radius: 8px;
}
.dropdown-menu a:hover { background: var(--teal-lt); color: var(--teal); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0d3a3f 45%, var(--teal-dk) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat, linear-gradient(135deg, #0A7E8C 0%, #065F6B 100%);
  opacity: .15;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(10,126,140,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,67,.15) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.2);
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Merriweather', serif;
  display: block;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  position: relative;
}
.hero-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.hero-card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.hero-card-badge-text { font-size: .82rem; line-height: 1.3; }
.hero-card-badge-text strong { display: block; color: var(--dark); font-size: .9rem; }

/* =====================
   TRUST STRIP
===================== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-20);
  border-bottom: 1px solid var(--gray-20);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-80);
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .95rem; color: var(--dark); }
.trust-item span { font-size: .78rem; color: var(--gray-50); }

/* =====================
   ABOUT
===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: 20px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--teal-lt), #b0e4ea);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.about-cert-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-cert-years { font-size: 2.4rem; font-weight: 700; display: block; }
.about-cert-text { font-size: .8rem; opacity: .85; }

.about-content { padding-left: 16px; }
.about-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; margin-bottom: 32px; }
.about-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-lt);
  color: var(--teal-dk);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .84rem;
  font-weight: 500;
}
.about-chip svg { flex-shrink: 0; }

/* =====================
   SERVICES
===================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-20);
  padding: 28px;
  transition: all .25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  color: inherit;
}
.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 18px;
  transition: all .25s;
}
.service-card:hover .service-card-icon {
  background: var(--teal);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: var(--gray-50);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =====================
   WHY CHOOSE US
===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,168,67,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-item h4 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,.65); font-size: .88rem; }

/* =====================
   TESTIMONIALS
===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-20);
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text {
  color: var(--gray-80);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-20);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testimonial-meta { font-size: .78rem; color: var(--gray-50); }

/* =====================
   FAQ
===================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-20);
}
/* FAQ classes used in service _template.php and faqs.php */
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; padding: 18px 0;
  font-size: 1rem; font-weight: 600; color: var(--dark); cursor: pointer;
  text-align: left; border-bottom: 1px solid var(--gray-20);
  font-family: inherit;
}
.faq-q:hover { color: var(--teal); }
.faq-q .faq-icon { font-size: 1.3rem; color: var(--teal); flex-shrink: 0; margin-left: 12px; transition: transform 0.2s; }
.faq-item.open .faq-q { color: var(--teal); border-color: var(--teal-lt); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0; padding-bottom: 0;
}
.faq-a p { color: var(--gray-50); font-size: .95rem; line-height: 1.75; margin: 0; }
.faq-cat-title {
  font-size: 1.15rem; color: var(--teal-dk); margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--teal-lt);
}
.faq-category-block:first-child .faq-cat-title { margin-top: 0; }


.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: all .3s;
  font-size: 1.1rem;
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--gray-50);
  font-size: .95rem;
  line-height: 1.7;
}

/* =====================
   APPOINTMENT CTA
===================== */
.appt-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.appt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(212,168,67,.15) 0%, transparent 60%);
}
.appt-cta-inner { position: relative; z-index: 1; }
.appt-cta h2 { color: var(--white); margin-bottom: 12px; }
.appt-cta p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }
.appt-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================
   CONTACT
===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--teal);
  border-radius: 20px;
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: .78rem; opacity: .7; margin-bottom: 2px; }
.contact-info-value { font-weight: 500; font-size: .95rem; }
.contact-info-value a { color: var(--white); }

.contact-hours {
  margin-top: 28px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px;
}
.contact-hours h4 { color: var(--gold); margin-bottom: 10px; font-size: .9rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }

/* =====================
   APPOINTMENT FORM
===================== */
.appt-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group label span { color: #e33; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-20);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .2s;
  background: var(--white);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,126,140,.12);
}
.form-control::placeholder { color: #bbb; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%238A9EA3' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.form-success {
  display: none;
  background: #e8f8f0;
  border: 1px solid #5cb87a;
  border-radius: 10px;
  padding: 16px 20px;
  color: #1a6b3a;
  font-weight: 500;
  margin-top: 12px;
}
.form-error {
  display: none;
  background: #fef0f0;
  border: 1px solid #e57373;
  border-radius: 10px;
  padding: 16px 20px;
  color: #c0392b;
  font-weight: 500;
  margin-top: 12px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,.4); }
.footer-about { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-btn:hover { background: var(--teal); color: var(--white); }

.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '→'; font-size: .75rem; color: var(--teal); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; font-size: .88rem; }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* =====================
   PAGE HEADERS
===================== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dk) 100%);
  padding: 72px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }

/* =====================
   SERVICE DETAIL PAGE
===================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--gray-50); margin-bottom: 20px; line-height: 1.8; }
.service-benefits {
  background: var(--teal-lt);
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
}
.service-benefits h3 { margin-bottom: 16px; color: var(--teal-dk); }
.service-benefits ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-benefits li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.service-benefits li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

.service-sidebar { position: sticky; top: 90px; }
.sidebar-appt-card {
  background: var(--teal);
  border-radius: 16px;
  padding: 28px;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-appt-card h4 { color: var(--white); margin-bottom: 8px; }
.sidebar-appt-card p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 18px; }

.sidebar-services-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-20);
}
.sidebar-services-card h4 { margin-bottom: 16px; }
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-20);
  font-size: .9rem;
  color: var(--gray-80);
  text-decoration: none;
  transition: color .2s;
}
.sidebar-service-link:hover { color: var(--teal); }
.sidebar-service-link:last-child { border-bottom: none; }

/* =====================
   GALLERY
===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* =====================
   ADMIN / DASHBOARD
===================== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar-logo .logo-name { color: var(--white); }
.admin-sidebar-logo .logo-tagline { color: rgba(255,255,255,.4); }

.admin-nav { padding: 16px 10px; flex: 1; }
.admin-nav-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  padding: 8px 12px 4px;
  margin-top: 8px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: all .2s;
  margin-bottom: 2px;
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(10,126,140,.35);
  color: var(--white);
}
.admin-nav a svg { flex-shrink: 0; }

.admin-main { flex: 1; display: flex; flex-direction: column; background: #f0f3f4; }
.admin-topbar {
  background: var(--white);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.admin-topbar h1 { font-size: 1.3rem; }
.admin-user { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--gray-80); }
.admin-avatar {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

.admin-content { flex: 1; padding: 28px; overflow-y: auto; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon.teal   { background: var(--teal-lt); color: var(--teal); }
.stat-icon.gold   { background: var(--gold-lt); color: var(--gold); }
.stat-icon.green  { background: #e5f9ee; color: #2ea862; }
.stat-icon.purple { background: #f0eaff; color: #7c3aed; }
.stat-num { font-size: 1.8rem; font-weight: 700; color: var(--dark); font-family: 'Merriweather', serif; }
.stat-label { font-size: .8rem; color: var(--gray-50); }
.stat-trend { font-size: .78rem; font-weight: 600; display: flex; align-items: center; gap: 2px; }
.stat-trend.up { color: #2ea862; }

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-20);
}
.admin-table-header h3 { font-size: 1rem; }

table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--gray-10);
  padding: 12px 16px;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-50);
  text-transform: uppercase;
  letter-spacing: .06em;
}
tbody tr { border-bottom: 1px solid var(--gray-20); transition: background .15s; }
tbody tr:hover { background: var(--gray-10); }
tbody td { padding: 14px 16px; font-size: .9rem; }
tbody tr:last-child { border-bottom: none; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-pending  { background: #fff8e1; color: #8a6600; }
.status-pending::before  { background: #f59e0b; }
.status-confirmed{ background: #e5f9ee; color: #166534; }
.status-confirmed::before{ background: #22c55e; }
.status-completed{ background: #e0f5f7; color: var(--teal-dk); }
.status-completed::before{ background: var(--teal); }
.status-cancelled{ background: #fef2f2; color: #991b1b; }
.status-cancelled::before{ background: #ef4444; }

.action-btns { display: flex; gap: 6px; }
.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  transition: all .18s;
}
.btn-icon-view   { background: var(--teal-lt); color: var(--teal); }
.btn-icon-edit   { background: var(--gold-lt); color: #8a6610; }
.btn-icon-delete { background: #fef2f2; color: #e53935; }
.btn-icon:hover  { filter: brightness(.9); transform: scale(1.05); }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-20);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-20);
  background: var(--white);
  color: var(--gray-80);
  cursor: pointer;
  transition: all .18s;
}
.page-btn:hover { border-color: var(--teal); color: var(--teal); }
.page-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ALERTS */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: #e5f9ee; border-left: 3px solid #22c55e; color: #166534; }
.alert-error   { background: #fef2f2; border-left: 3px solid #ef4444; color: #991b1b; }
.alert-info    { background: var(--teal-lt); border-left: 3px solid var(--teal); color: var(--teal-dk); }

/* LOGIN */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.login-card .logo { justify-content: center; margin-bottom: 8px; }
.login-card h2 { text-align: center; margin-bottom: 6px; }
.login-card .subtext { text-align: center; color: var(--gray-50); font-size: .9rem; margin-bottom: 32px; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-left: 0; }
  .about-cert-badge { right: 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-open nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 999;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .appt-cta { padding: 40px 24px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .hero-card { display: none; }
}

@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .section { padding: 56px 0; }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: transform .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =====================
   PAGE HERO
===================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dk) 100%);
  padding: 100px 0 72px;
  color: var(--white);
}
.page-hero-content { max-width: 720px; }
.page-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }

/* =====================
   ABOUT PAGE
===================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; border-radius: 20px; display: block; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,168,67,.4);
}
.badge-number { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.badge-label { font-size: .8rem; font-weight: 600; opacity: .9; }
.about-stats-row { display: flex; gap: 32px; margin-top: 32px; }
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--teal); }
.about-stat span { font-size: .85rem; color: var(--gray-50); }

/* Mission Vision */
.mission-vision-section { background: var(--teal-lt); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mv-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.mv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--teal-dk); }

/* Doctor Section */
.doctor-section { background: var(--white); }
.doctor-profile-grid { display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: center; }
.doctor-image-wrap img { width: 100%; border-radius: 20px; display: block; }
.doctor-credentials { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.credential-item {
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 16px;
  border-radius: 10px;
}
.doctor-tagline { color: var(--teal); font-weight: 600; font-size: 1rem; margin-bottom: 16px; }
.spec-list { columns: 2; gap: 16px; margin: 16px 0 28px; }
.spec-list li { padding: 6px 0; color: var(--gray-70); }
.spec-list li::before { content: "→ "; color: var(--teal); }

/* Why Section Alt */
.why-section-alt { background: var(--gray-5); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: 16px; padding: 28px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .2s; }
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.why-card p { font-size: .88rem; color: var(--gray-50); }

/* Infrastructure */
.infra-section { background: var(--white); }
.infra-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
.infra-item img { width:100%; border-radius: 16px; aspect-ratio: 4/3; object-fit: cover; }
.infra-item p { text-align: center; color: var(--gray-70); font-size: .9rem; margin-top: 12px; }

/* =====================
   CTA BOX
===================== */
.appt-cta-section { background: var(--teal-lt); }
.appt-cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.appt-cta-text h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 8px; }
.appt-cta-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.appt-cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-primary-lg {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.btn-primary-lg:hover { background: #b8932e; transform: translateY(-2px); }
.btn-outline-lg {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}
.btn-outline-lg:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* =====================
   GALLERY PAGE
===================== */
.gallery-section { background: var(--white); }
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,126,140,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: .9rem; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  flex-direction: column;
  gap: 16px;
}
.lightbox-content img { max-height: 75vh; max-width: 90vw; border-radius: 12px; position: relative; z-index: 1; }
.lightbox-content p { color: rgba(255,255,255,.8); position: relative; z-index: 1; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 8px;
  z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =====================
   TESTIMONIALS PAGE
===================== */
.rating-overview-section { background: var(--teal-lt); }
.rating-overview-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center; }
.rating-big-card { text-align: center; background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.rating-number { font-size: 5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.rating-stars { font-size: 1.8rem; color: var(--gold); margin: 8px 0; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: .9rem; }
.rating-bar-row > span:first-child { width: 60px; }
.rating-bar-row > span:last-child { width: 36px; font-weight: 600; }
.rating-bar { flex: 1; background: #e0e0e0; border-radius: 100px; height: 10px; }
.rating-fill { background: var(--gold); height: 100%; border-radius: 100px; }

.testimonials-full-section { background: var(--white); }
.testimonials-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card-full {
  background: var(--gray-5);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #eee;
  transition: box-shadow .2s;
}
.testimonial-card-full:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.tc-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: .95rem; }
.tc-treatment { font-size: .8rem; color: var(--teal); font-weight: 600; }
.tc-stars { font-size: .85rem; color: var(--gold); }
.tc-google { text-align: right; font-size: .75rem; color: var(--gray-50); }
.google-label { display: block; }
.tc-text { font-size: .9rem; color: var(--gray-70); line-height: 1.7; }

/* =====================
   FAQ FULL PAGE
===================== */
.faq-full-section { background: var(--white); }
.faq-category-block { margin-bottom: 48px; }
.faq-cat-title {
  font-size: 1.3rem;
  color: var(--teal-dk);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-lt);
}
.faq-still-have-q {
  background: var(--teal-lt);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.faq-still-have-q h3 { font-size: 1.6rem; margin-bottom: 12px; }
.faq-contact-btns { display: flex; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all .2s;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* =====================
   SERVICE DETAIL PAGE
===================== */
.service-detail-section { background: var(--white); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; }
.service-content-block { margin-bottom: 48px; }
.service-content-block h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--dark); }
.service-content-block p { margin-bottom: 14px; color: var(--gray-70); }
.service-detail-img { width: 100%; border-radius: 16px; margin-bottom: 40px; aspect-ratio: 16/9; object-fit: cover; }
.service-benefits-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-benefits-list li { background: var(--teal-lt); padding: 12px 16px; border-radius: 10px; font-size: .9rem; color: var(--dark); }

/* Procedure Steps */
.procedure-steps { display: flex; flex-direction: column; gap: 20px; }
.procedure-step { display: flex; gap: 20px; }
.step-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--teal); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step-content h4 { font-size: 1rem; margin-bottom: 4px; }
.step-content p { font-size: .9rem; color: var(--gray-50); margin: 0; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-book-card {
  background: var(--teal);
  border-radius: 18px;
  padding: 28px;
  color: white;
}
.sidebar-book-card h3 { color: white; font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-book-card p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 20px; }
.sidebar-call-btn, .sidebar-whatsapp-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-top: 10px;
}
.sidebar-call-btn { background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.3); }
.sidebar-whatsapp-btn { background: #25d366; color: white; }
.sidebar-clinic-info, .sidebar-other-services {
  background: var(--gray-5);
  border-radius: 16px;
  padding: 22px;
}
.sidebar-clinic-info h4, .sidebar-other-services h4 { font-size: 1rem; margin-bottom: 12px; color: var(--dark); }
.sidebar-clinic-info p { font-size: .9rem; color: var(--gray-50); margin-bottom: 4px; }
.sidebar-other-services ul { list-style: none; }
.sidebar-other-services li { border-bottom: 1px solid #eee; }
.sidebar-other-services li:last-child { border: none; }
.sidebar-other-services a { display: block; padding: 8px 0; font-size: .9rem; color: var(--teal); text-decoration: none; }
.sidebar-other-services a:hover { color: var(--teal-dk); }
.rating-badge-large {
  background: var(--gold-lt);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.rb-stars { display: block; font-size: 1.5rem; color: var(--gold); }
.rb-score { display: block; font-size: 2rem; font-weight: 800; color: var(--dark); }
.rb-label { font-size: .85rem; color: var(--gray-50); }

/* =====================
   ADMIN EXTRA STYLES
===================== */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.settings-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.settings-card h3 { font-size: 1.1rem; margin-bottom: 24px; color: var(--dark); border-bottom: 2px solid var(--teal-lt); padding-bottom: 12px; }
.clinic-info-display { display: flex; flex-direction: column; gap: 12px; }
.info-row { display: flex; gap: 12px; font-size: .92rem; }
.info-row strong { min-width: 130px; color: var(--dark); }
.info-row span { color: var(--gray-70); }
.info-note { font-size: .82rem; color: var(--gray-50); margin-top: 16px; font-style: italic; }
.btn-admin-primary {
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.btn-admin-primary:hover { background: var(--teal-dk); }
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.count-badge {
  background: var(--teal);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 8px;
}
.visit-badge {
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-weight: 700;
  font-size: .85rem;
  padding: 2px 10px;
  border-radius: 100px;
}
.services-cell { font-size: .8rem; color: var(--gray-50); max-width: 180px; }
.export-note { background: var(--gold-lt); border-radius: 12px; padding: 16px 20px; font-size: .9rem; color: var(--gray-70); margin-top: 24px; }
.btn-action { text-decoration: none; font-size: 1.1rem; margin-right: 6px; }

/* =====================
   RESPONSIVE ADDITIONS
===================== */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .doctor-profile-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .infra-grid { grid-template-columns: 1fr 1fr; }
  .rating-overview-grid { grid-template-columns: 1fr; }
  .testimonials-grid-full { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .appt-cta-box { flex-direction: column; text-align: center; padding: 40px 32px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid-full { grid-template-columns: 1fr; }
  .service-benefits-list { grid-template-columns: 1fr; }
  .spec-list { columns: 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .about-stats-row { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .faq-contact-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   CERTIFICATES SECTION
============================================ */
.certificates-section { background: var(--gray-10); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cert-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cert-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.cert-label {
  padding: 14px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.cert-label small {
  display: block;
  font-weight: 400;
  color: var(--gray-50);
  margin-top: 4px;
  font-size: .78rem;
}
@media (max-width: 900px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cert-grid { grid-template-columns: 1fr; }
}
