@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #f8bbd0;
  --accent: #ff4081;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-section: #fdf2f8;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a { color: var(--white); display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover { opacity: 0.85; }
.top-bar-left .icon { font-size: 14px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  font-size: 13px;
  transition: var(--transition);
}
.top-bar-right a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img { height: 72px; width: auto; }
.logo { display: flex; align-items: center; gap: 10px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: var(--bg-section);
}

/* Services Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  z-index: 100;
  animation: fadeIn 0.2s ease;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content h4 {
  padding: 8px 16px 4px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}
.dropdown-content a {
  display: block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}
.dropdown-content a:hover { background: var(--bg-section); color: var(--primary); }

.btn-download {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(233,30,99,0.3);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,30,99,0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  background: none; border: none;
  font-size: 26px; cursor: pointer;
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero .container { display: flex; align-items: center; gap: 40px; }
.hero-content { flex: 1; z-index: 2; }
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(233,30,99,0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,99,0.4); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  background: var(--white);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.hero-image {
  flex: 1;
  text-align: right;
  z-index: 2;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  max-height: 520px;
  object-fit: contain;
  border-radius: 30px 30px 0 0;
  display: block;
}

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-pink { background: var(--bg-section); }
.section-white { background: var(--white); }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-grid { display: flex; gap: 50px; align-items: center; }
.about-text { flex: 1; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-text p { color: var(--text-light); line-height: 1.9; font-size: 15px; }
.about-image { flex: 0.8; }
.about-image img { border-radius: 20px; box-shadow: var(--shadow-lg); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.service-card .service-icon {
  width: 70px; height: 70px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--primary);
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}
.service-card a { color: var(--dark); }
.service-card a:hover { color: var(--primary); }

/* ===== VISION CARDS ===== */
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.vision-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vision-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 12px; }
.vision-card p { font-size: 14px; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial-item {
  display: none;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.testimonial-item.active { display: block; }
.testimonial-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-item .quote-icon {
  font-size: 40px;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dots .dot.active { background: var(--primary); transform: scale(1.2); }

/* ===== BOOK DOCTOR CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-section), #fff0f5);
  padding: 60px 0;
}
.cta-content {
  max-width: 600px;
}
.cta-content .cta-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.cta-content p { color: var(--text-light); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-about-text { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-about .logo-img { height: 66px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 14px;
}
.footer-contact-item .icon { color: var(--primary); font-size: 16px; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--primary); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  padding: 50px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--dark);
}
.page-banner .breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}
.page-banner .breadcrumb a { color: var(--primary); }

/* ===== TEAM GRID ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card {
  background: none;
  box-shadow: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-card .team-img-wrapper {
  width: 240px;
  height: 320px;
  margin: 0 auto 20px;
  border-radius: 120px / 160px; /* Perfect vertical oval */
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fce4ec 0%, #f8bbd0 40%, #f48fb1 100%);
  border: 5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-card:hover .team-img-wrapper {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(233,30,99,0.25);
  transform: scale(1.02);
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.4s ease;
}
.team-card:hover img {
  transform: scale(1.08);
}
.team-card .team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 120px / 160px;
}
.team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}
.team-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 700;
}
.team-overlay .role {
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: rgba(233,30,99,0.3);
  padding: 3px 10px;
  border-radius: 10px;
}
.team-overlay .qualifications {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.team-card .team-info {
  padding: 10px 10px 20px;
}
.team-card .team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card .team-info .role {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  background: var(--bg-section);
  padding: 3px 12px;
  border-radius: 15px;
  margin-bottom: 6px;
}
.team-card .team-info .qualifications {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(233,30,99,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 28px;
}
.gallery-item:hover .overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: var(--white); font-size: 36px;
  cursor: pointer; background: none; border: none;
}

/* ===== FACILITIES ===== */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.facility-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); border-left: 4px solid var(--primary); }
.facility-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.facility-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ===== SERVICES DETAIL PAGE ===== */
.service-detail { margin-bottom: 50px; }
.service-detail-grid { display: flex; gap: 40px; align-items: flex-start; }
.service-detail-grid.reverse { flex-direction: row-reverse; }
.service-detail-text { flex: 1; }
.service-detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-light);
  display: inline-block;
}
.service-detail-text p { font-size: 15px; color: var(--text-light); line-height: 1.9; }
.service-detail-img { flex: 0.6; }
.service-detail-img img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== CONTACT PAGE ===== */
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.contact-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.contact-card .icon-box {
  width: 54px; height: 54px; min-width: 54px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 22px;
}
.contact-card h4 { font-size: 17px; margin-bottom: 8px; color: var(--dark); font-weight: 600; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.contact-card a:hover { color: var(--primary); }
.form-group { margin-bottom: 18px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg-light);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,99,0.3); }

.map-container { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content p { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-image { justify-content: center; width: 100%; }
  .hero-image img { max-height: 400px; }
  .about-grid { flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid, .service-detail-grid.reverse { flex-direction: column; }
  .vision-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px; }
  .nav-menu.open { display: flex; }
  .mobile-toggle { display: block; }
  .dropdown-content { position: static; box-shadow: none; padding-left: 20px; }
  .dropdown:hover .dropdown-content { display: none; }
  .dropdown.open .dropdown-content { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h2 { font-size: 1.4rem; }
  .section { padding: 50px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
  .facilities-grid { grid-template-columns: 1fr; }
}
