/* ==========================================================================
   style.css — Happy Hearts Child & Women Centre
   Optimized for Brand Colors: Mint Green (#6DB9A7) & Soft Pink (#FFB8D1)
   ========================================================================== */

/* ======== CSS RESET & BASE ======== */
:root {
  /* Brand Colors from Logo */
  --mint: #6DB9A7;
  --mint-light: #8DD4C4;
  --mint-dark: #4A9988;
  --pink: #FFB8D1;
  --pink-light: #FFD6E8;
  --pink-dark: #FF9AC0;
  --heart-gradient: linear-gradient(135deg, #FFB8D1 0%, #D4A5FF 50%, #A5C4FF 100%);
  
  /* Supporting Colors */
  --dark: #2C3E50;
  --muted: #6E7C8F;
  --white: #FFFFFF;
  
  /* Backgrounds */
  --bg-gradient: linear-gradient(180deg, rgba(109,185,167,0.08) 0%, rgba(255,255,255,1) 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  
  /* Effects */
  --card-shadow: 0 8px 24px rgba(109, 185, 167, 0.12);
  --glow: 0 4px 20px rgba(109, 185, 167, 0.25);
  --pink-glow: 0 4px 20px rgba(255, 184, 209, 0.25);
  --glass: rgba(255, 255, 255, 0.85);
  --radius: 16px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
  background: var(--bg-gradient);
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Poppins", Arial;
  color: var(--dark);
  scroll-behavior: smooth;
}

/* Utility container */
.inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px;
}

/* Link defaults */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.muted {
  color: var(--muted);
}

/* ======== HEADER SECTION ======== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(109, 185, 167, 0.2);
}

.header-container {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 4px;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header contact */
.header-contact {
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
}

.header-contact a {
  color: var(--white);
  font-weight: 700;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-contact a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.header-contact .address-brief {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 520px;
}
/* Hamburger */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--glow);
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 20px;
  background: var(--mint);
  margin: 4px 0;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu ul li a {
  padding: 10px 14px;
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-menu ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Patient button in header */
.patient-btn {
  background: var(--white);
  color: var(--mint);
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.patient-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
  background: var(--pink-light);
  color: var(--dark);
}

/* Nav close (mobile) */
.nav-close {
  display: none;
}

/* ======== HERO ======== */
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(109,185,167,0.06) 0%, rgba(255,184,209,0.04) 100%);
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

/* Hero images */
.hero-image {
  width: 28%;
  min-width: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white);
  padding: 12px;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Hero content */
.hero-content {
  width: 44%;
  text-align: center;
}

.headline {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: translateY(2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 100%);
  color: var(--white);
  box-shadow: var(--glow);
}

.btn-blue:hover {
  box-shadow: 0 8px 28px rgba(109, 185, 167, 0.35);
  transform: translateY(-3px);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  box-shadow: var(--pink-glow);
}

.btn-pink:hover {
  box-shadow: 0 8px 28px rgba(255, 184, 209, 0.35);
  transform: translateY(-3px);
}

/* ======== ABOUT ======== */
.about {
  background: transparent;
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Collage */
.collage {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.collage-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--card-shadow);
  border: 6px solid var(--white);
  transition: all 0.4s ease;
}

.collage-img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: var(--glow);
  border-color: var(--mint-light);
}

/* ======== TWO CENTRES ======== */
.two-centres {
  padding: 50px 0;
}

.two-centres .inner {
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.centre-card {
  flex: 1 1 340px;
  min-width: 300px;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.centre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  transition: height 0.4s ease;
}

.child-centre::before {
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-light) 100%);
}

.women-centre::before {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
}

.centre-card:hover::before {
  height: 100%;
  opacity: 0.08;
}

.centre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(109, 185, 167, 0.2);
}

.child-centre {
  background: linear-gradient(180deg, rgba(109,185,167,0.08) 0%, var(--white) 100%);
}

.women-centre {
  background: linear-gradient(180deg, rgba(255,184,209,0.08) 0%, var(--white) 100%);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
}

.services-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.8;
}

.services-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.services-list li::before {
  content: '♥';
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.child-centre .services-list li::before {
  color: var(--mint);
}

.women-centre .services-list li::before {
  color: var(--pink);
}

/* Outline buttons */
.btn-outline {
  border-radius: 50px;
  padding: 12px 24px;
  background: transparent;
  cursor: pointer;
  border: 2px solid;
  font-weight: 800;
  transition: all 0.3s ease;
  margin-top: auto;
}

.child-centre .btn-outline {
  border-color: var(--mint);
  color: var(--mint);
}

.child-centre .btn-outline:hover {
  background: var(--mint);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.women-centre .btn-outline {
  border-color: var(--pink);
  color: var(--pink);
}

.women-centre .btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--pink-glow);
}

/* ======== DOCTORS ======== */
.doctors {
  background: transparent;
  padding: 50px 0;
}

.doctors-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.doctor-block {
  flex: 1 1 400px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s ease;
  border-top: 4px solid var(--mint);
}

.doctor-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(109, 185, 167, 0.2);
}

.doc-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 6px solid var(--mint-light);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.doctor-block:hover .doc-photo {
  transform: scale(1.05);
  border-color: var(--mint);
}

/* ======== TESTIMONIALS ======== */
.testimonials {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(109,185,167,0.05) 0%, rgba(255,184,209,0.05) 100%);
  text-align: center;
}

.testimonial-slider {
  max-width: 900px;
  margin: 24px auto;
  min-height: 150px;
  position: relative;
}

.testimonial-card {
  display: none;
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-left: 6px solid var(--mint);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(109, 185, 167, 0.2);
  margin: 0 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(109, 185, 167, 0.4);
  transform: scale(1.2);
}

.dot.active {
  background: var(--mint);
  transform: scale(1.3);
}

/* ======== GALLERY ======== */
/* ======== GALLERY ======== */
.gallery {
  padding: 50px 0;
}

.gallery .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  border: 4px solid var(--white);
}

.gallery-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: var(--glow);
  border-color: var(--mint-light);
}

/* ======== CONTACT & LOCATIONS ======== */
.contact-locations {
  padding: 50px 0;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  border-top: 6px solid var(--mint);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Small buttons */
.btn.small {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
}

/* WhatsApp & Call */
.whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.call {
  background: var(--mint);
  color: var(--white);
}

.call:hover {
  background: var(--mint-dark);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* ======== FOOTER ======== */
.site-footer {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 100%);
  color: var(--white);
  padding: 20px 0;
  margin-top: 40px;
  box-shadow: 0 -4px 20px rgba(109, 185, 167, 0.15);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-inner a {
  color: var(--white);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-inner a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ======== POPUP FORM ======== */
.popup-container {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

.popup-container.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.75);
  backdrop-filter: blur(8px);
}

/* Form box */
.popupForm {
  position: relative;
  z-index: 3001;
  width: 92%;
  max-width: 720px;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(109, 185, 167, 0.3);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  border-top: 8px solid;
  border-image: linear-gradient(90deg, var(--mint) 0%, var(--pink) 100%) 1;
}

.popup-container.active .popupForm {
  transform: scale(1);
  opacity: 1;
}

/* Form header styling */
.form-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--mint) 0%, var(--pink) 100%) 1;
}

.form-header img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.form-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

/* Close btn */
.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
}

.close-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* Form rows */
.patient-form .form-row {
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
}

.patient-form .form-row.single {
  flex-direction: column;
}

.patient-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.patient-form label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
}

.patient-form input,
.patient-form textarea,
.patient-form select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid rgba(109, 185, 167, 0.2);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(109, 185, 167, 0.02);
}

.patient-form input:focus,
.patient-form textarea:focus,
.patient-form select:focus {
  outline: none;
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(109, 185, 167, 0.1);
}

.patient-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Gender options */
.gender-options {
  display: flex;
  gap: 14px;
  align-items: center;
}

.gender-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 10px;
  border: 2px solid rgba(109, 185, 167, 0.2);
  transition: all 0.3s ease;
  font-weight: 600;
}

.gender-options input[type="radio"] {
  width: auto;
  accent-color: var(--mint);
}

.gender-options label:has(input:checked) {
  background: var(--mint-light);
  border-color: var(--mint);
  color: var(--white);
}

/* Submit */
.submit-btn {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 100%);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(109, 185, 167, 0.35);
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 100%);
}

.submit-btn:active {
  transform: translateY(1px);
}

/* ======== ANIMATIONS ======== */
.fade-load {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Popup smooth fade */
#popupForm.fade-in .form-box {
  animation: popupFade 0.3s ease forwards;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse animation for buttons */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(109, 185, 167, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(109, 185, 167, 0);
  }
}

.patient-btn {
  animation: pulse 2s infinite;
}

/* ======== RESPONSIVE ======== */
/* Tablets and smaller */
@media (max-width: 900px) {
  .header-contact {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .headline {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(180deg, var(--mint) 0%, var(--mint-light) 100%);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 60px 24px 24px;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: 2200;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-menu ul li a {
    display: block;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close {
    display: block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--mint);
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .nav-close:hover {
    background: var(--white);
    transform: rotate(90deg);
  }

  .patient-btn {
    width: 100%;
    margin-top: 12px;
  }

  .doctors-inner {
    flex-direction: column;
  }

  .doctor-block {
    max-width: 500px;
    margin: 0 auto;
  }

  .centre-card {
    min-width: 280px;
  }

  .collage-img {
    width: 160px;
    height: 160px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .headline {
    font-size: 1.8rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .collage-img {
    width: 130px;
    height: 130px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    width: 100%;
  }

  .popupForm {
    width: 96%;
    max-width: 420px;
    padding: 24px 20px;
  }

  .form-header h2 {
    font-size: 1.4rem;
  }

  .patient-form .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .doc-photo {
    width: 150px;
    height: 150px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }
}

/* Very small screens */
@media (max-height: 600px) {
  .popupForm {
    padding: 18px;
    max-height: 85vh;
  }

  .form-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .form-header img {
    width: 60px;
    height: 60px;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .patient-form .form-row {
    margin-bottom: 12px;
  }
}

/* Landscape mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    padding: 30px 0;
  }

  .hero-inner {
    flex-direction: row;
  }

  .hero-image {
    width: 35%;
  }

  .hero-content {
    width: 60%;
  }
}

/* ======== ACCESSIBILITY & POLISH ======== */
.menu-toggle:focus,
.patient-btn:focus,
.btn:focus,
.submit-btn:focus,
button:focus,
a:focus {
  outline: 3px solid var(--mint-light);
  outline-offset: 4px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--mint-light);
  color: var(--white);
}

::-moz-selection {
  background: var(--mint-light);
  color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(109, 185, 167, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--mint-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mint);
}

/* Loading state for buttons */
.btn.loading,
.submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after,
.submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Print styles */
@media print {
  .main-header,
  .menu-toggle,
  .nav-menu,
  .patient-btn,
  .hero-ctas,
  .btn,
  .popup-container,
  .site-footer {
    display: none !important;
  }

  body {
    background: white;
  }

  .hero,
  .about,
  .doctors,
  .contact-locations {
    page-break-inside: avoid;
  }
}


/* ========== AWARDS AND CERTIFICATES ========== */
.awards {
  padding: 80px 20px;
  background: #f8f9fa;
}

.awards .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d5f5d;
  margin-bottom: 50px;
  font-weight: 700;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.award-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .awards {
    padding: 70px 20px;
  }

  .awards .section-title {
    font-size: 2.25rem;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }

  .award-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .awards {
    padding: 60px 15px;
  }

  .awards .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .award-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .awards {
    padding: 50px 10px;
  }

  .awards .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 5px;
  }

  .award-img {
    height: 180px;
    border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .awards {
    padding: 40px 8px;
  }

  .awards .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 5px;
  }

  .award-img {
    height: 160px;
    border-radius: 6px;
  }
}

@media (max-width: 360px) {
  .award-img {
    height: 140px;
  }
}
/* ===== FOOTER BASE ===== */
.site-footer {
  background: linear-gradient(135deg, #a0d9c5 0%, #e6f2ec 100%);
  color: #205b45;
  font-family: 'Poppins', sans-serif;
  padding: 25px 20px;
  border-top: 3px solid #a0d9c5;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

/* FOOTER LINKS (MIDDLE) */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links li a {
  text-decoration: none;
  color: #205b45;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffb6c1;
}

/* CONTACT DETAILS (BOTTOM) */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
}

.footer-contact p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.footer-contact a {
  color: #205b45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb6c1;
}

/* COPYRIGHT LINE */
.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-links {
    gap: 12px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  .footer-contact p {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}


/* ===== MOBILE FIRST OPTIMIZATION ===== */
/* ========== RESPONSIVE - MOBILE VIEW ========== */
@media (max-width: 768px) {
  /* Footer Main Container */
  .site-footer {
    padding: 25px 15px 15px; /* Reduced top/bottom padding */
  }

  .footer-inner {
    padding: 0 10px;
  }

  /* Footer Top Grid - Single Column */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px; /* Reduced gap between sections */
    padding-bottom: 20px;
    text-align: center;
  }

  /* Footer Columns */
  .footer-col {
    margin-bottom: 0; /* Remove extra margin */
  }

  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 12px; /* Reduced margin */
  }

  .footer-col p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  /* Quick Links */
  .footer-links-list {
    text-align: center;
    padding: 0;
  }

  .footer-links-list li {
    margin-bottom: 8px; /* Reduced spacing */
  }

  .footer-links-list li a {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  /* Contact Section */
  .footer-contact {
    align-items: center;
    gap: 8px; /* Reduced gap */
  }

  .contact-link {
    justify-content: center;
    font-size: 0.85rem;
    padding: 4px 0;
  }

  /* Social Icons */
  .social-icons {
    justify-content: center;
    margin-top: 12px;
    gap: 8px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  /* Footer Bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 0 10px; /* Reduced padding */
    gap: 6px;
  }

  .footer-bottom p,
  .footer-right small {
    font-size: 0.8rem;
    margin: 0;
  }

  /* Remove Extra Spacing */
  .footer-link {
    display: inline-block;
    padding: 4px 0;
    margin: 0;
  }
}

/* ========== EXTRA SMALL DEVICES (< 480px) ========== */
@media (max-width: 480px) {
  .site-footer {
    padding: 20px 10px 10px; /* Even more compact */
  }


  .footer-top {
    gap: 15px; /* Minimal gap */
  }

  .footer-col h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-links-list li {
    margin-bottom: 6px;
  }

  .footer-links-list li a,
  .contact-link {
    font-size: 0.8rem;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 12px 0 8px;
    font-size: 0.75rem;
  }

  .footer-bottom p,
  .footer-right small {
    font-size: 0.75rem;
  }
}

/* ========== LANDSCAPE MODE FIX ========== */
@media (max-width: 768px) and (orientation: landscape) {
  .site-footer {
    padding: 20px 15px 12px;
  }

  .footer-top {
    gap: 18px;
  }
}


/* ===== FIX HAMBURGER ICON VERTICAL ALIGNMENT ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column; /* stack 3 lines vertically */
    justify-content: center;
    align-items: center;
    background: var(--mint);
    border: none;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    margin: 3px 0;
    transition: 0.3s ease;
  }

  .menu-toggle:hover {
    transform: scale(1.05);
  }
}


/* =============================
   FIXED RESPONSIVE FOOTER FORMAT
   ============================= */
.site-footer {
  background: linear-gradient(135deg, #a0d9c5 0%, #e6f2ec 100%);
  color: #205b45;
  font-family: 'Poppins', sans-serif;
  padding: 25px 15px;
  border-top: 3px solid #a0d9c5;
  text-align: center;
}

/* Footer inner container */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 1️⃣ Navigation Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #205b45;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffb6c1;
}

/* 2️⃣ Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  margin-top: 6px;
}

.footer-contact a {
  color: #205b45;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb6c1;
}

/* 3️⃣ Copyright Line */
.footer-bottom {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
  opacity: 0.85;
}

/* =============================
   RESPONSIVE FOOTER (MOBILE VIEW)
   ============================= */
@media (max-width: 600px) {
  .site-footer {
    padding: 20px 10px;
  }

  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-links li a {
    font-size: 0.85rem;
  }

  .footer-contact {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}



/* Responsive for Mobile Devices */
@media (max-width: 768px) {
  .footer-right {
    text-align: center;   /* Center align text on mobile */
    margin-top: 10px;
  }

  .footer-right p {
    margin: 8px 0;
  }

  .footer-right a {
    font-size: 16px;
    display: inline-block;
  }
}




