/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body { background: #f4f6f8; }

/* ===== NAVBAR ===== */
.navbar {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo { display: flex; align-items: center; }
.logo img { height: 56px; width: auto; display: block; }
nav { display: flex; gap: 25px; }
nav a { text-decoration: none; color: #333; font-size: 15px; font-weight: 600; transition: .3s; }
nav a:hover { color: #0a8f7a; }
.call-btn {
  background: #0a8f7a; color: white; text-decoration: none;
  padding: 10px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: .3s;
}
.call-btn:hover { background: #087563; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0c6d69 0%, #118b87 50%, #63c4c4 100%);
  color: white;
}
.hero-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; padding: 80px 40px;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 52px; line-height: 1.1; margin-bottom: 20px; color: white; }
.hero-text p { font-size: 18px; line-height: 1.8; max-width: 600px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img { width: 100%; max-width: 480px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 10px; font-weight: 600; text-decoration: none;
  background: white; color: #0c6d69; transition: all .3s ease;
}
.btn.outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.8); }
.btn:hover { transform: translateY(-3px); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex; justify-content: center;
  background: #0a8f7a; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 44px; color: white;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item:last-child { border-right: none; }
.trust-num { font-size: 26px; font-weight: 700; line-height: 1.2; }
.trust-item span:last-child { font-size: 13px; opacity: .85; margin-top: 2px; }

/* ===== ABOUT ===== */
.about-section { padding: 60px 0; background: white; }
.about {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px; padding: 0 40px;
}
.about-image { flex: 1; }
.about-image img { width: 100%; max-width: 460px; height: auto; border-radius: 16px; display: block; }
.about-content { flex: 1; }
.about-tag { color: #0a8f7a; font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.about-content h2 { font-size: 40px; margin: 10px 0 20px; color: #1d2b4d; }
.about-intro, .about-footer { line-height: 1.8; color: #555; }
.about-list { list-style: none; padding: 0; margin: 20px 0; }
.about-list li { margin-bottom: 10px; padding-left: 28px; position: relative; color: #444; }
.about-list li::before { content: "✔"; position: absolute; left: 0; color: #0a8f7a; }

/* ===== CONSULTATION FEES ===== */
.consult-fees { margin-top: 28px; background: #f3faf8; border-radius: 12px; padding: 20px; border: 1px solid #c8e8e4; }
.consult-fees h4 { color: #0a6b67; font-size: 15px; margin-bottom: 14px; }
.fees-grid { display: flex; gap: 14px; }
.fee-card {
  flex: 1; background: white; border: 1.5px solid #d0ede8;
  border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
}
.fee-card.highlight { border-color: #0a8f7a; background: #eaf7f4; }
.fee-card i { font-size: 22px; color: #0a8f7a; }
.fee-type { font-size: 13px; color: #555; }
.fee-amt { font-size: 22px; font-weight: 700; color: #0a6b67; }

/* ===== SERVICES ===== */
#services { padding: 60px 40px 80px; background: #f3f7f8; }
.section-header { text-align: center; margin-bottom: 50px; }
.subtitle { display: block; color: #159570; font-weight: 700; letter-spacing: 1px; font-size: 13px; margin-bottom: 10px; }
.section-header h2 { font-size: 38px; color: #1d2b4d; margin-bottom: 15px; }
.underline { width: 80px; height: 4px; background: #159570; margin: auto; border-radius: 20px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1200px; margin: 0 auto; }
.service-card {
  background: white; border-radius: 15px; padding: 24px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.icon { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; display: flex; justify-content: center; align-items: center; font-size: 30px; }
.content h3 { margin-bottom: 6px; color: #1d2b4d; }
.content p { color: #666; line-height: 1.5; font-size: 14px; }
.green { background: #eaf7ef; color: #1a7f45; }
.purple { background: #f4e8fb; color: #7c3aad; }
.teal { background: #e7f7f6; color: #0a7a74; }
.blue { background: #e9f0ff; color: #2952b3; }
.orange { background: #fff1e6; color: #b85c00; }
.pink { background: #ffe8f3; color: #b33771; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 60px 40px; background: white; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: #f8fdfc; border: 1px solid #d0ede8;
  border-radius: 16px; padding: 24px; position: relative;
}
.testimonial-card::before {
  content: "\201C"; font-size: 64px; color: #0a8f7a; opacity: .15;
  position: absolute; top: 4px; left: 14px;
  line-height: 1; font-family: Georgia, serif; pointer-events: none;
}
.stars { color: #f5a623; font-size: 16px; margin-bottom: 10px; }
.testimonial-card p { color: #444; font-size: 14px; line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.patient-name { font-weight: 600; font-size: 13px; color: #1d2b4d; }
.condition-tag {
  display: inline-block; margin-top: 8px;
  background: #eaf7f0; color: #0a6b67;
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
}

/* ===== APPOINTMENT ===== */
#appointment { padding: 0 30px 60px; }
.appt-title { text-align: center; font-size: 36px; color: #1d2b4d; padding: 50px 0 30px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; }
form, .info {
  background: #fff; padding: 30px;
  border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
input, select, textarea {
  width: 100%; padding: 11px 12px; margin: 7px 0;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 14px; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #0a8f7a; }
button[type="submit"] {
  margin-top: 12px; background: #0a8f7a; color: white;
  border: none; padding: 14px; border-radius: 8px;
  width: 100%; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s;
}
button[type="submit"]:hover { background: #087563; }
.form-note { font-size: 12px; color: #888; text-align: center; margin-top: 10px; }

/* Clinic info */
.info h3 { color: #0a6b67; font-size: 26px; margin-bottom: 22px; }
.info-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.info-item p { margin: 0; line-height: 1.4; }
.info-item a { color: #0a8f7a; text-decoration: none; }
.contact-icon { width: 22px; min-width: 22px; display: flex; align-items: center; justify-content: center; font-size: 16px; padding-top: 2px; }
.info-item span { color: #555; }
.working-hours { margin-top: 20px; }
.working-hours h4 { color: #0a6b67; font-size: 18px; margin-bottom: 10px; }
.working-hours p { margin-bottom: 8px; color: #555; font-size: 14px; }

/* Need medicines */
.need-medicines {
  display: flex; gap: 12px; align-items: flex-start;
  background: #f3faf8; border-radius: 10px; padding: 14px;
  margin-top: 18px; border: 1px solid #c8e8e4;
}
.need-medicines i { font-size: 22px; color: #0a8f7a; margin-top: 2px; flex-shrink: 0; }
.need-medicines strong { display: block; color: #1d2b4d; margin-bottom: 4px; font-size: 14px; }
.need-medicines p { font-size: 13px; color: #555; margin-bottom: 8px; }
.wa-order-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25d366; color: white; text-decoration: none;
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 6px;
}
.wa-order-btn:hover { background: #1ebe5d; }

/* Map */
.map-container { overflow: hidden; border-radius: 12px; margin-top: 18px; }
.map-container iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: #0a6b67; color: white; text-align: center; padding: 30px 20px; }
.footer h4 { margin-bottom: 10px; font-size: 20px; }
.footer p { margin: 6px 0; opacity: 0.9; font-size: 14px; }

/* ===== STICKY WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: #25d366; color: white;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-tooltip {
  position: absolute; right: 72px;
  background: #1d2b4d; color: white;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  padding: 7px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #1d2b4d; border-right: 0;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  nav { display: none; }
  .hero-content { flex-direction: column; text-align: center; padding: 50px 20px; gap: 30px; }
  .hero-text h1 { font-size: 34px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-image img { max-width: 280px; }
  .trust-item { padding: 14px 20px; flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .about { flex-direction: column; text-align: center; padding: 0 20px; }
  .about-list li { padding-left: 0; }
  .about-list li::before { display: none; }
  .fees-grid { flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .service-card { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  #services, .testimonials-section { padding: 40px 20px 60px; }
  #appointment { padding: 0 16px 50px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 28px; }
  .wa-tooltip { display: none; }
}
