/* ================================================
   AURUM CLINICS — PREMIUM STYLESHEET v2.0
   style.css — Link this in ALL pages
   ================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fafaf8;
  color: #2a2a2a;
  overflow-x: hidden;
}

/* ===== ROOT COLORS ===== */
:root {
  --green:        #2f7f6f;
  --green-dark:   #1e5c51;
  --green-light:  #e8f4f1;
  --green-glow:   rgba(47, 127, 111, 0.15);
  --gold:         #c9a84c;
  --gold-light:   #f5e9cc;
  --beige:        #f4f1eb;
  --cream:        #fafaf8;
  --white:        #ffffff;
  --text:         #2a2a2a;
  --text-muted:   #6b7280;
  --border:       rgba(47, 127, 111, 0.18);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.13);
  --radius:       14px;
  --radius-lg:    22px;
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 32px;
  background: var(--green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.top-left {
  justify-self: start;
  font-size: 13px;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.top-center {
  justify-self: center;
}

.top-center img {
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.top-center:hover img {
  transform: scale(1.12);
}

.top-right {
  justify-self: end;
  font-size: 13px;
  opacity: 0.9;
}

/* PHONE BOX */
.phone-box {
  background: var(--gold);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.phone-box:hover {
  background: #b8923e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* navbar-inner (brand + hamburger) — HIDDEN on desktop */
.navbar-inner {
  display: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  margin: 0;
}

.navbar li {
  position: relative;
}

.navbar a {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 16px 14px;
  display: block;
  transition: color 0.3s ease;
}

.navbar a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.0);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar li:hover > a::before {
  background: rgba(255,255,255,0.08);
}

.navbar li:hover > a::after {
  transform: scaleX(1);
}

.navbar li:hover > a {
  color: #fff;
}

/* ================================================
   DROPDOWN
   ================================================ */
.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s;
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  z-index: 300;
  overflow: hidden;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  padding-left: 26px;
}

.dropdown-menu a::before {
  content: '→';
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}

.whatsapp:hover {
  background: #20c05a;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 53px;
  background: rgba(37, 211, 102, 0.25);
  animation: pulse-wa 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.1); opacity: 0.2; }
}

@media (max-width: 768px) {
  .whatsapp {
    padding: 11px 16px;
    font-size: 14px;
    bottom: 18px;
    right: 18px;
  }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  padding: 60px 8% 24px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer::after {
  content: 'AURUM';
  position: absolute;
  right: -40px;
  bottom: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 44px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}

.footer-col p {
  margin: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin: 9px 0;
  font-size: 14px;
  transition: all 0.25s ease;
}

.socials a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

/* ================================================
   DOCTOR PROFILE PAGES
   ================================================ */
.doctor-profile {
  padding: 80px 8% 100px;
  background: var(--cream);
}

.doctor-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto 70px;
  align-items: start;
}

/* Sticky sidebar card */
.doctor-image {
  position: sticky;
  top: 90px;
}

.doctor-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.doctor-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.17);
}

/* Credential badge below photo */
.doctor-badge {
  margin-top: 20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.doctor-badge p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

.doctor-main {
  padding-top: 8px;
}

.doctor-main h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.doctor-main h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.doctor-main p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4a5568;
  font-size: 15.5px;
}

.doctor-contact {
  margin-top: 24px;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}

.doctor-contact p {
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section headers */
.doctor-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.doctor-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--green-dark);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.doctor-section h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  border-radius: 4px;
  flex-shrink: 0;
}

/* Cards */
.edu-card,
.exp-card {
  background: #fff;
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.edu-card::before,
.exp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--green));
  border-radius: 4px 0 0 4px;
}

.edu-card:hover,
.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.edu-card h4,
.exp-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--green-dark);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
}

.edu-card p,
.exp-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Lists */
.interest-list,
.hospital-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.interest-list li,
.hospital-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px 12px 14px;
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.interest-list li::before,
.hospital-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.interest-list li:hover,
.hospital-list li:hover {
  background: var(--green-light);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .doctor-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .doctor-image {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }
  .doctor-main h1 {
    font-size: 36px;
  }
}

/* ================================================
   HOME PAGE — HERO SECTION
   ================================================ */
.hero {
  background-image: url("Imagees/Img1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 92, 81, 0.45) 0%,
    rgba(0, 0, 0, 0.38) 60%,
    rgba(201, 168, 76, 0.10) 100%
  );
}

/* Subtle grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 60px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  animation: heroFadeIn 0.9s ease both;
}

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

/* Decorative gold line above title */
.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8em;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  line-height: 1.1;
}

.hero p {
  font-size: 1.15em;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-buttons a:first-child {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.hero-buttons a:first-child:hover {
  background: #b8923e;
  border-color: #b8923e;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.hero-buttons a:not(:first-child) {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}

.hero-buttons a:not(:first-child):hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Trust badges row under hero */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-trust span {
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 36px 24px;
  }
  .hero h1 {
    font-size: 2.4em;
  }
  .hero p {
    font-size: 1em;
  }
}

/* ================================================
   HOME PAGE — SERVICES SECTION
   ================================================ */
.services-section {
  padding: 90px 8%;
  background: var(--cream);
  text-align: center;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}

.services-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 56px;
  font-weight: 300;
}

.major-section {
  margin-bottom: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
}

@media (max-width: 768px) {
  .major-section {
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

.major-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 22px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35em;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: default;
}

.major-header::after {
  content: '—';
  color: var(--gold);
  font-size: 0.8em;
}

.major-header:hover {
  background: linear-gradient(135deg, #163e37 0%, var(--green-dark) 100%);
}

.minor-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  padding: 0;
}

.service-card {
  background: #fff;
  padding: 36px 28px;
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-light);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--green-dark);
  transition: color 0.3s;
}

.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  transition: color 0.3s;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) translateY(-4px);
}

.service-card:hover h3 {
  color: var(--green-dark);
}

/* ================================================
   HOME PAGE — MAP SECTION
   ================================================ */
.map {
  margin: 50px 0;
  padding: 0 8%;
}

.map-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--green-dark);
  margin-bottom: 20px;
  text-align: center;
}

.map iframe {
  border: 0;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow-md);
}

/* ================================================
   SECTION DIVIDER UTILITY
   ================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px auto;
  max-width: 300px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider span {
  color: var(--gold);
  font-size: 18px;
}

/* ================================================
   SCROLL TO TOP BUTTON
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ================================================
   SELECTION COLOR
   ================================================ */
::selection {
  background: var(--green);
  color: #fff;
}

/* ================================================
   HERO BUTTON CLASSES (btn-primary / btn-outline)
   ================================================ */
.btn-primary {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  background: #b8923e;
  border-color: #b8923e;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* MAP DESC */
.map-desc {
  font-size: 1.05em;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ================================================
   MOBILE HAMBURGER MENU
   ================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 500;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

/* Animate to X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   RESPONSIVE — TABLET (max 900px)
   ================================================ */
@media (max-width: 900px) {

  /* Top bar compact */
  .top-bar {
    padding: 10px 20px;
  }

  .top-center img {
    height: 58px;
  }

  /* Doctor page grid */
  .doctor-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doctor-image {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }

  .doctor-main h1 {
    font-size: 38px;
  }

  /* Services smaller padding */
  .services-section {
    padding: 60px 5%;
  }

  .minor-services {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* ================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================ */
@media (max-width: 768px) {

  /* ---- TOP BAR ---- */
  .top-bar {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 16px;
    gap: 6px;
  }

  .top-left {
    grid-column: 1;
    grid-row: 2;
    font-size: 11px;
    opacity: 0.75;
  }

  .top-center {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .top-center img {
    height: 50px;
  }

  .top-right {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: center;
  }

  .phone-box {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* ---- NAVBAR — HAMBURGER MODE ---- */
  .navbar {
    position: sticky;
    top: 0;
  }

  /* Show the brand + hamburger bar on mobile */
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 16px;
    background: var(--green);
  }

  .navbar-brand {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  /* Hide ul by default on mobile, show when toggled */
  .navbar > ul,
  .navbar #nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--green-dark);
    width: 100%;
  }

  .navbar > ul.mobile-open,
  .navbar #nav-links.mobile-open {
    display: flex;
  }

  .navbar a {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar a::after {
    display: none;
  }

  /* Dropdown inline on mobile */
  .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    display: none;
    min-width: 100%;
    border: none;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: rgba(255,255,255,0.85);
    background: transparent;
    padding: 12px 32px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 40px;
  }

  .dropdown-menu a::before {
    color: var(--gold);
  }

  /* Hamburger button — shown on mobile */
  .hamburger {
    display: flex;
  }

  /* Navbar wrapper flex for hamburger */
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .navbar-brand {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 0;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 60vh;
    padding: 30px 16px;
    background-position: center top;
  }

  .hero-content {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 2em;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 0.95em;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 13px 20px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-trust span {
    font-size: 11.5px;
  }

  /* ---- SERVICES ---- */
  .services-section {
    padding: 50px 16px;
  }

  .services-title {
    font-size: 30px;
  }

  .services-subtitle {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .major-section {
    margin-bottom: 30px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
    background: #fff;
  }

  .major-header {
    padding: 16px 20px;
    font-size: 1.1em;
    border-radius: 14px 14px 0 0;
  }

  .minor-services {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .service-card {
    padding: 22px 16px;
  }

  .service-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  /* ---- MAP ---- */
  .map {
    padding: 0 16px;
    margin: 36px 0;
  }

  .map-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .map-desc {
    font-size: 0.95em;
    padding: 0 8px;
  }

  .map iframe {
    height: 280px;
    border-radius: 14px;
  }

  /* ---- FOOTER ---- */
  .footer {
    padding: 44px 16px 20px;
    margin-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-col h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .footer-col p,
  .socials a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 16px;
  }

  /* ---- DOCTOR PAGES ---- */
  .doctor-profile {
    padding: 40px 16px 60px;
  }

  .doctor-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .doctor-image {
    position: static;
    max-width: 220px;
    margin: 0 auto;
  }

  .doctor-main h1 {
    font-size: 32px;
    text-align: center;
  }

  .doctor-main h3 {
    font-size: 13px;
    text-align: center;
  }

  .doctor-main p {
    font-size: 14.5px;
  }

  .doctor-section {
    margin: 36px auto;
    padding: 0 4px;
  }

  .doctor-section h2 {
    font-size: 26px;
  }

  .edu-card,
  .exp-card {
    padding: 18px 20px;
  }

  .edu-card h4,
  .exp-card h4 {
    font-size: 17px;
  }

  .interest-list,
  .hospital-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* ---- WHATSAPP ---- */
  .whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ================================================
   RESPONSIVE — SMALL PHONES (max 480px)
   ================================================ */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.65em;
  }

  .minor-services {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .doctor-main h1 {
    font-size: 28px;
  }

  .top-left {
    display: none; /* Too cramped on tiny screens */
  }
}
.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Top bar icons */
.top-left .ico,
.top-right .ico {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  opacity: 0.85;
}

/* Navbar / buttons */
.btn-primary .ico,
.btn-outline .ico,
.whatsapp .ico {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
}

/* Service card icons */
.service-icon .ico {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  color: var(--green);
}

/* Hero trust badges */
.hero-trust .ico {
  width: 12px;
  height: 12px;
  color: var(--gold);
  vertical-align: -1px;
}

/* Footer icons */
.footer-col .ico,
.socials .ico {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  opacity: 0.8;
}

/* Doctor contact icons */
.doctor-contact .ico {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  color: var(--green);
}

/* Info box icons (contact page) */
.info-icon .ico {
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* Gallery lightbox zoom */
.overlay .ico {
  width: 32px;
  height: 32px;
  color: #fff;
  stroke-width: 1.5;
}














