:root {
  --gold: #00a9af;
  --gold-light: #E8C97A;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --dark: #1A1108;
  --dark2: #2D2010;
  --mid: #5C4A2A;
  --text: #3D3020;
  --text-muted: #7A6650;
  --green: #2D6A4F;
  --red: #C0392B;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 4px 32px rgba(44,28,8,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 100px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.logo-icon {
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

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

.btn-wa {
  background: #25D366;
  color: white;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.88; }

.btn-call {
  background: var(--gold);
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.btn-call:hover { opacity: 0.88; }

/* ===== HERO ===== */
#hero {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #3D2810 100%);
  padding: 70px 5% 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.hero-bullets li {
  color: rgba(255,255,255,0.88);
  padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-bullets li:last-child { border-bottom: none; }

.hero-bullets li .bullet-num { background: var(--gold); color: #fff; font-weight: 700; font-size: 0.78rem; min-width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* HERO FORM */
.hero-form-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E0D8C8;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: #FAFAF7;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); }

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== STARS / REVIEWS STRIP ===== */
#reviews-strip {
  background: white;
  padding: 22px 5%;
  border-bottom: 1px solid var(--border);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  justify-content: center;
}

.review-badge {
  display: flex; align-items: center; gap: 12px;
}

.stars { color: #F4A700; font-size: 1.2rem; letter-spacing: 2px; }
.rating-big { font-size: 2rem; font-weight: 700; color: var(--dark); font-family: 'Playfair Display', serif; }
.rating-label { font-size: 0.85rem; color: var(--text-muted); }
.rating-count { font-size: 0.9rem; font-weight: 600; color: var(--green); }

.divider { width: 1px; height: 40px; background: var(--border); }

.stat-item { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SECTION STYLES ===== */
.section { padding: 70px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-title span { color: var(--gold); }

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== GOOGLE REVIEWS ===== */
#google-reviews { background: #F9F5EC; }

.g-reviews-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}

.g-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.1rem; color: var(--dark);
}

.g-logo-dots span {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
}

.g-overall {
  display: flex; align-items: center; gap: 10px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(44,28,8,0.05);
}

.reviewer-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}

.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}

.reviewer-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.reviewer-date { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: #F4A700; font-size: 0.9rem; margin-bottom: 8px; }
.review-text { font-size: 0.88rem; color: var(--text); line-height: 1.65; }

/* ===== SERVICES ===== */
#services { background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all 0.25s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
  transform: translateY(-3px);
}

.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-name { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.service-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.service-price {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

/* ===== COMPARISON TABLE ===== */
#comparison { background: var(--cream); }

.table-wrap { overflow-x: auto; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(44,28,8,0.08);
}

table.compare thead tr {
  background: var(--dark);
  color: white;
}

table.compare th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

table.compare th.highlight {
  background: var(--gold);
  color: var(--dark);
}

table.compare tbody tr:nth-child(even) { background: #FBF7EE; }
table.compare tbody tr:nth-child(odd) { background: white; }

table.compare td {
  padding: 14px 20px;
  border-bottom: 1px solid #EDE8DC;
  color: var(--text);
}

table.compare td.highlight {
  font-weight: 600;
  color: var(--dark);
  background: rgba(201,168,76,0.08);
}

.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }

/* ===== DOCTORS ===== */
#doctors { background: white; }

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.doctor-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.doctor-card:hover { transform: translateY(-4px); }

.doctor-img {
  width: 100%;
  background: linear-gradient(135deg, #D4B896 0%, #B8975A 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
}

.doc-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.doctor-info { padding: 22px; }
.doctor-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark); margin-bottom: 4px; }
.doctor-title { font-size: 0.83rem; color: var(--mid); margin-bottom: 10px; }

.doctor-stats {
  display: flex; gap: 16px; margin-bottom: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.doc-stat { text-align: center; flex: 1; }
.doc-stat-num { font-weight: 700; font-size: 1.1rem; color: var(--gold); display: block; }
.doc-stat-label { font-size: 0.72rem; color: var(--text-muted); }

.doctor-specialties { margin-bottom: 16px; }
.specialty-tag {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--mid);
  margin: 3px 3px 0 0;
}

.btn-doc {
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.2s;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-doc:hover { background: var(--gold); color: var(--dark); }

/* ===== USPs ===== */
#usps { background: var(--dark); }
#usps .section-title { color: white; }

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.usp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 24px;
}

.usp-icon { font-size: 2.2rem; margin-bottom: 14px; }
.usp-title { font-weight: 700; font-size: 1rem; color: var(--gold-light); margin-bottom: 8px; }
.usp-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.usp-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 6px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: #F9F5EC; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
}

.testi-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -8px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-keywords {
  font-weight: 700;
  color: var(--dark);
}

.testi-author {
  display: flex; align-items: center; gap: 12px;
}

.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.9rem;
}

.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testi-condition { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars { color: #F4A700; font-size: 0.82rem; }

/* ===== FAQ ===== */
#faq { background: white; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.98rem;
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform 0.3s;
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #B8820A 100%);
  padding: 50px 5%;
  text-align: center;
}

.cta-band h2 {
  color: var(--dark);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-band p { color: rgba(44,28,8,0.75); font-size: 1rem; margin-bottom: 28px; }

.cta-band-btns {
  display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
}

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.9; }

.btn-white {
  background: white;
  color: var(--dark);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 50px 5% 30px;
}

.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }

.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-h { color: white; font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* ===== STICKY WA BUTTON ===== */
.sticky-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 999;
  animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #navbar .logo span { display: none; }
  .doctors-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-wa { display: none; }
}

/* Animate on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.7s ease both; }
.hero-form-card { animation: fadeUp 0.7s 0.2s ease both; }

.hero-content h1 {color: #fff;}

.hero-ctas a {background: var(--gold); padding: 10px 20px; border-radius: 5px; color: #fff; text-decoration: none;}

.rightsidehero img { max-width: 100%;           /* responsive */ height: auto;              /* maintain aspect ratio */ border-radius: 12px;       /* optional rounded corners */ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* subtle shadow */ object-fit: cover; }

.owl-dots { text-align: center; padding-top: 15px; display: flex; margin: auto; justify-content: center; }
.owl-dots .owl-dot span { width: 10px; height: 10px; padding: 0 5px; margin: 5px 2px; border: none; font-size: 16px; line-height: 16px; position: relative; background: #000; bottom: 0px; display: block; border-radius: 50%; }
.owl-dots .owl-dot.active span { background: #29abe2; }
.owl-dot.active span { width: 15px; height: 15px; margin-top: 3px; }