/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #17C0CE;
  --teal-dark: #0fa8b5;
  --navy: #1a2332;
  --dark: #222831;
  --text: #444;
  --light-bg: #f0f6f9;
  --white: #fff;
  --border: #e0eef2;
  --shadow: 0 4px 20px rgba(23,192,206,0.10);
  --radius: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.teal { color: var(--teal); }
.section { padding: 80px 0; }
.section-light { background: var(--light-bg); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; font-weight: 600; }
.btn-white:hover { background: #f0f6f9; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-teal-dark { background: transparent; color: var(--navy); border-color: var(--navy); padding: 10px 32px; font-weight: 600; }
.btn-outline-teal-dark:hover { background: var(--navy); color: #fff; }

/* ====== TOP BAR ====== */
.topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a { display: flex; align-items: center; gap: 6px; color: var(--text); transition: color 0.2s; }
.topbar-left a:hover { color: var(--teal); }
.topbar-right { display: flex; gap: 8px; }
.social-icon {
  width: 30px; height: 30px; border: 1.5px solid var(--teal); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); transition: all 0.2s;
}
.social-icon:hover { background: var(--teal); color: #fff; }

/* ====== NAVBAR ====== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 72px; }

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo img { height: 80px !important; width: 80px !important; }
.logo-badge svg { display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.5px; }
.logo-dark { color: var(--navy); }
.logo-teal { color: var(--teal); }
.logo-sub { font-size: 0.82rem; color: var(--text); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 7px 12px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--dark);
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-vip {
  background: var(--teal); color: #fff; border-radius: 6px;
  padding: 7px 14px;
}
.nav-links .nav-vip:hover { background: var(--teal-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== HERO ====== */
.hero { background: #f0f6f9; padding: 80px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { color: var(--teal); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
.hero-tagline { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 18px; letter-spacing: 0.3px; }
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800;
  color: var(--navy); line-height: 1.25; margin-bottom: 20px;
}
.hero-highlight {
  background: var(--teal); color: #fff;
  padding: 2px 12px; border-radius: 4px; display: inline;
}
.hero-desc { color: var(--text); font-size: 0.92rem; line-height: 1.75; margin-bottom: 32px; max-width: 460px; }

.hero-img-wrap { position: relative; }
.hero-img-circle {
  width: 380px; height: 380px; border-radius: 50%;
  overflow: hidden; margin-left: auto;
  border: 6px solid var(--teal);
}
.hero-img-circle img { width: 100%; height: 100%; }
.hero-img-overlay {
  position: absolute; bottom: 20px; left: 0;
  width: 260px; height: 260px; border-radius: 50%;
  overflow: hidden; border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-img-overlay img { width: 100%; height: 100%; object-fit: cover; }

/* ====== SECTION HEADER ====== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--text); font-size: 0.9rem; line-height: 1.7; }

.badge {
  display: inline-block; background: var(--teal); color: #fff;
  padding: 5px 18px; border-radius: 4px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.3px; margin-bottom: 14px;
}

/* ====== ABOUT ====== */
.about-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.about-heart {
  position: relative; width: 100%;
  border-radius: 16px; overflow: hidden;
}
.about-heart img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; }
.heart-icon {
  position: absolute; top: 10px; right: -10px;
  width: 56px; height: 56px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(23,192,206,0.4);
}

.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.about-content p { color: var(--text); font-size: 0.88rem; line-height: 1.75; margin-bottom: 12px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.info-card {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px;
}
.info-icon {
  width: 38px; height: 38px; background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-label { display: block; font-size: 0.7rem; color: var(--text); margin-bottom: 2px; }
.info-value { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* ====== SPLIT SECTION ====== */
.section-split { display: grid; grid-template-columns: 1fr 1fr; }
.split-image img { width: 100%; height: 480px; object-fit: cover; }
.split-content {
  padding: 64px 56px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.split-tag { color: var(--teal); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.split-content h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 18px; line-height: 1.3; }
.split-content p { color: var(--text); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.check-icon {
  width: 24px; height: 24px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* ====== SERVICES ====== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-img { height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; transition: transform 0.3s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 22px 22px 24px; }
.service-title-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.service-icon-wrap {
  width: 38px; height: 38px; background: #e8f9fb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.service-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.service-line { width: 40px; height: 3px; background: var(--teal); border-radius: 2px; margin: 12px 0 14px; }
.service-body p { color: var(--text); font-size: 0.82rem; line-height: 1.7; margin-bottom: 18px; }
.btn-more {
  display: block; text-align: center; width: 80px; margin: 0 auto;
  border: 1.5px solid var(--teal); color: var(--teal); border-radius: 5px;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-more:hover { background: var(--teal); color: #fff; }

/* ====== CTA BANNER ====== */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0db8c8 0%, #17C0CE 50%, #0fa5b2 100%);
  padding: 64px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1400&q=40') center/cover;
  opacity: 0.08;
}
.cta-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 16px; }
.cta-line { width: 60px; height: 3px; background: rgba(255,255,255,0.5); margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.88); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-doctors img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }

/* ====== WHY CHOOSE US ====== */
.why-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  background: var(--navy); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { color: var(--text); font-size: 0.85rem; line-height: 1.7; }
.why-image img { width: 100%; height: 460px; border-radius: var(--radius); }

/* ====== DOCTORS ====== */
.doctors-grid { display: grid; grid-template-columns: repeat(2, 280px); gap: 28px; justify-content: center; }
.doctor-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.doctor-img { position: relative; height: 280px; }
.doctor-img img { width: 100%; height: 100%; }
.doctor-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
}
.doctor-info { background: var(--navy); color: #fff; padding: 16px 18px; }
.doctor-info h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 4px; }
.doctor-info p { font-size: 0.78rem; color: var(--teal); font-weight: 500; }

/* ====== HOURS ====== */
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hours-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.3; margin: 14px 0 22px; }
blockquote {
  border-left: 4px solid var(--teal); padding: 12px 18px;
  color: var(--text); font-size: 0.88rem; line-height: 1.7;
  background: #f0f6f9; border-radius: 0 6px 6px 0; margin-bottom: 28px;
}
.hours-table { margin-bottom: 32px; }
.hours-table h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.hours-table hr { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
.hours-row { display: grid; grid-template-columns: 180px 1fr; gap: 16px; margin-bottom: 14px; align-items: start; }
.day { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.time { font-size: 0.82rem; color: var(--text); line-height: 1.7; }
.time.closed { color: #e53e3e; font-weight: 600; }

.hours-phone { position: relative; }
.hours-phone img { width: 100%; height: 440px; border-radius: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.hours-heart {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(23,192,206,0.4);
}

/* ====== FEEDBACK ====== */
.feedback-line { width: 48px; height: 4px; background: var(--teal); margin: 14px auto 18px; border-radius: 2px; }
.feedback-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feedback-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feedback-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quote-icon {
  font-size: 4rem; color: var(--teal); opacity: 0.18;
  font-family: Georgia, serif; line-height: 1; margin-bottom: 10px;
}
.feedback-card p { color: var(--teal); font-size: 0.82rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 8px; }
.feedback-card strong { font-size: 0.8rem; color: var(--navy); letter-spacing: 0.5px; }

/* ====== FAQ ====== */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { text-align: center; }
.faq-q {
  display: inline-block; background: var(--teal); color: #fff;
  padding: 10px 28px; border-radius: 5px; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 14px; cursor: pointer;
}
.faq-a { color: var(--text); font-size: 0.88rem; line-height: 1.75; max-width: 620px; margin: 0 auto; }
.faq-a a { color: var(--teal); font-weight: 600; }
.faq-divider { border: none; border-top: 1px solid var(--border); margin-top: 20px; }

/* ====== FOOTER ====== */
.footer-contact-top {
  background: var(--white); padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-divider { width: 40px; height: 3px; background: var(--teal); margin: 16px auto 16px; border-radius: 2px; }
.footer-contact-top p { color: var(--text); font-size: 0.88rem; line-height: 1.7; }

.footer-main {
  background: var(--teal);
  background-image: url('klinik.jpeg');
  background-size: cover; background-blend-mode: multiply;
  padding: 56px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }

.footer-brand { color: rgba(255,255,255,0.85); }
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; margin-bottom: 10px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; margin-bottom: 8px; }
.fsocial {
  width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); transition: all 0.2s;
}
.fsocial:hover { background: rgba(255,255,255,0.2); color: #fff; }
.footer-handles { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

.footer-social-grid h4,
.footer-contact-info h4 { color: #fff; font-size: 0.88rem; margin-bottom: 8px; font-weight: 500; letter-spacing: 0.5px; }
.footer-line { width: 36px; height: 3px; background: rgba(255,255,255,0.5); margin-bottom: 18px; border-radius: 2px; }
.social-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.social-photo-grid img { width: 100%; aspect-ratio: 1; border-radius: 4px; transition: transform 0.2s; }
.social-photo-grid img:hover { transform: scale(1.04); }

.fcontact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.fcontact-icon {
  width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fcontact-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 2px; display: block; }
.fcontact-item p, .fcontact-item div > p { color: rgba(255,255,255,0.9); font-size: 0.82rem; line-height: 1.6; }
.google-map-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-size: 0.82rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px;
}
.google-map-link:hover { border-color: #fff; }

.footer-bottom { background: rgba(0,0,0,0.25); padding: 16px 0; }
.footer-bottom-inner { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.footer-bottom-inner a { color: rgba(255,255,255,0.7); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom-inner a:hover { color: #fff; text-decoration: underline; }

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px; background: var(--teal); color: #fff;
  border: none; border-radius: 8px; font-size: 1.1rem;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: all 0.2s; z-index: 999;
  box-shadow: 0 4px 16px rgba(23,192,206,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feedback-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px; z-index: 999;
  }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-img-circle { width: 280px; height: 280px; margin: 0 auto; }
  .hero-img-overlay { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-heart { margin: 0 auto; }
  .about-image { display: flex; justify-content: center; }
  .section-split { grid-template-columns: 1fr; }
  .split-image img { height: 280px; }
  .split-content { padding: 40px 24px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-doctors { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .hours-inner { grid-template-columns: 1fr; }
  .hours-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; justify-items: center; }
  .feedback-grid { grid-template-columns: 1fr; }
  .topbar-left { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .cta-buttons { flex-direction: column; }
  .hours-row { grid-template-columns: 1fr; gap: 4px; }
}
