/* ===== DR. GOKAVI HOSPITAL - SHARED STYLES ===== */
:root {
  --primary: #D9A022;
  --secondary: #14B8A6;
  --secondary-dark: #0D9488;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.font-serif { font-family: var(--font-serif); }

/* ===== GOOGLE TRANSLATE ===== */
#google_translate_element {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9998;
}
#google_translate_element .goog-te-gadget {
  font-size: 0 !important;
}
#google_translate_element .goog-te-gadget span {
  display: none;
}
#google_translate_element .goog-te-combo {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: var(--text);
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#google_translate_element .goog-te-combo:hover {
  border-color: var(--secondary);
}
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a { color: inherit; text-decoration: none; transition: color 0.3s; }
.topbar a:hover { color: var(--primary); }
.topbar .divider { width: 1px; height: 12px; background: rgba(255,255,255,0.1); }

/* ===== NAVBAR ===== */
.main-nav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: 0.6rem 0;
  transition: padding 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
  padding: 0.4rem 0;
}
.main-nav .navbar-brand img { height: 48px; width: auto; }

/* Nav links as pill buttons */
.main-nav .nav-link {
  color: #475569 !important;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  transition: all 0.3s;
  border: 1px solid transparent;
  background: transparent;
  margin: 0 2px;
}
.main-nav .nav-link:hover {
  color: var(--secondary) !important;
  background: rgba(20,184,166,0.08);
  border-color: rgba(20,184,166,0.15);
}
.main-nav .nav-link.active {
  color: var(--secondary) !important;
  background: rgba(20,184,166,0.12);
  border-color: rgba(20,184,166,0.25);
}

/* Dropdown toggle */
.main-nav .dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: 0.15em;
}
.main-nav .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
  border-radius: 1rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.main-nav .dropdown-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.main-nav .dropdown-item:hover {
  background: #f8fafc;
  color: var(--secondary);
}

/* Book Appointment - highlighted nav button */
.nav-btn-cta {
  background: var(--secondary) !important;
  color: white !important;
  border: 1px solid var(--secondary) !important;
  border-radius: 999px;
  padding: 0.5rem 1.25rem !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 14px -2px rgba(20,184,166,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}
.nav-btn-cta:hover {
  background: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -2px rgba(20,184,166,0.45);
  color: white !important;
}
.nav-btn-cta i { font-size: 0.75rem; }

.navbar-toggler { border: none; padding: 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.15) 50%, transparent 100%);
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.4) 0%, transparent 40%);
}
.hero-card {
  position: absolute;
  bottom: 48px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 32px 40px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.4);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.badge-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid rgba(217,160,34,0.25);
  background: rgba(217,160,34,0.12); color: #B8860B;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.75rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; border: none;
  transition: all 0.3s; cursor: pointer; text-decoration: none;
  background: var(--secondary); color: white;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(20,184,166,0.5);
  color: white;
}
.icon-circ {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.btn-cta:hover .icon-circ { transform: rotate(45deg); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark);
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hospital-building-1.jpeg') center/cover no-repeat;
  opacity: 0.1;
}
.page-header .container { position: relative; z-index: 1; }

/* ===== STATS ===== */
.stats-strip {
  background: var(--secondary);
  color: white;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num { font-size: clamp(1.75rem, 3vw, 2.5rem); text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
.stat-line { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* ===== SECTIONS ===== */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 700;
}
.section-subtitle {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
}

/* ===== FEATURE CARDS ===== */
.feat-card {
  background: white;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  padding: 40px;
  transition: all 0.4s ease;
  height: 100%;
}
.feat-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}
.feat-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #f8fafc; border: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--secondary); margin-bottom: 24px;
  transition: all 0.4s;
}
.feat-card:hover .feat-icon {
  background: var(--secondary); color: white; border-color: var(--secondary);
  transform: scale(1.1);
}

/* ===== HOW IT WORKS ===== */
.hiw-card {
  background: var(--secondary);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px -12px rgba(20,184,166,0.25);
}
.step-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
}
.step-card:hover { background: rgba(255,255,255,0.15); }

/* ===== ARTICLE CARDS ===== */
.article-card {
  background: #f8fafc; border-radius: 32px;
  overflow: hidden; border: 1px solid #f1f5f9;
  transition: all 0.5s ease; height: 100%;
}
.article-card:hover {
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}
.article-img-wrap {
  height: 200px; overflow: hidden; position: relative;
}
.article-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.article-card:hover .article-img-wrap img { transform: scale(1.1); }

/* ===== FAQ ===== */
.faq-item {
  border-radius: 16px; border: 1px solid #f1f5f9;
  background: #f8fafc; overflow: hidden;
  transition: all 0.3s; margin-bottom: 12px;
}
.faq-item:hover {
  border-color: #e2e8f0; background: white;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.05);
}
.faq-item.active {
  background: var(--secondary); border-color: var(--secondary);
  box-shadow: 0 10px 30px -10px rgba(20,184,166,0.3);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 20px 24px; font-weight: 600;
  cursor: pointer; border: none; background: none; width: 100%;
  text-align: left; font-size: 0.95rem; color: var(--text);
}
.faq-item.active .faq-q { color: white; }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; color: #64748b; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.active .faq-toggle {
  background: rgba(255,255,255,0.2); color: white;
}
.faq-a {
  padding: 0 24px 20px; font-size: 0.9rem; line-height: 1.7;
  display: none;
}
.faq-item.active .faq-a { display: block; color: rgba(255,255,255,0.9); }

/* ===== DOCTOR CARDS ===== */
.doctor-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 32px;
  text-align: center; transition: all 0.5s;
}
.doctor-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
}
.doctor-img-wrap {
  width: 200px; height: 200px; border-radius: 24px;
  overflow: hidden; margin: 0 auto 24px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.5s;
}
.doctor-card:hover .doctor-img-wrap { border-color: var(--primary); }
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.7s; }
.doctor-card:hover .doctor-img-wrap img { transform: scale(1.1); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white; border-radius: 32px;
  padding: 40px; border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.05);
  height: 100%;
}

/* ===== GALLERY ===== */
.gallery-img {
  border-radius: 24px; overflow: hidden;
  border: 1px solid #f1f5f9; cursor: pointer;
  transition: all 0.4s; position: relative;
}
.gallery-img:hover {
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.gallery-img img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-img:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
.gallery-img:hover .gallery-overlay { background: rgba(0,0,0,0.3); }
.gallery-overlay i { opacity: 0; transition: all 0.3s; color: white; font-size: 1.5rem; }
.gallery-img:hover .gallery-overlay i { opacity: 1; }

/* ===== VIDEO GALLERY ===== */
.video-card {
  border-radius: 24px; overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.4s; cursor: pointer;
}
.video-card:hover {
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.video-thumb {
  position: relative; height: 200px; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.video-play-btn .play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--secondary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: all 0.3s;
}
.video-card:hover .play-icon {
  background: var(--primary); transform: scale(1.1);
}

/* ===== CONTACT FORM ===== */
.contact-card {
  background: #f8fafc; border-radius: 48px;
  padding: 48px; border: 1px solid #f1f5f9;
  position: relative; overflow: hidden;
}
.form-inner {
  background: white; border-radius: 24px;
  padding: 32px; border: 1px solid #f1f5f9;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.05);
}
.form-input {
  height: 56px; border-radius: 12px; border: 1px solid #e2e8f0;
  background: #f8fafc; padding: 0 20px; font-size: 0.95rem;
  transition: all 0.3s; width: 100%;
}
.form-input:focus {
  border-color: var(--secondary); outline: none;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15); background: white;
}
.form-input.textarea { height: auto; min-height: 120px; padding: 16px 20px; resize: none; }

/* ===== EVENT CARD ===== */
.event-card {
  background: white; border-radius: 24px;
  border: 1px solid #f1f5f9; overflow: hidden;
  transition: all 0.4s;
}
.event-card:hover {
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.event-date {
  background: var(--secondary); color: white;
  padding: 16px 20px; text-align: center;
  min-width: 80px;
}

/* ===== VISION / MISSION / CORE PRINCIPLES ===== */
.vm-card {
  background: white;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  padding: 40px 32px;
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}
.vm-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  transform: translateY(-8px);
  border-color: var(--secondary);
}
.vm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(20,184,166,0.1);
  border: 2px solid rgba(20,184,166,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--secondary);
  margin: 0 auto 20px;
  transition: all 0.4s;
}
.vm-card:hover .vm-icon {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: scale(1.1);
}

/* ===== VISITOR COUNTER ===== */
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.visitor-counter .counter-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.visitor-counter .counter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.visitor-counter i {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 80px; padding-bottom: 48px;
  position: relative; overflow: hidden;
}
.footer-link {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; display: flex;
  align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.footer-link:hover { color: var(--primary); }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; transition: all 0.3s;
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }

/* ===== BREADCRUMB ===== */
.breadcrumb-custom {
  background: none; padding: 0; margin: 0;
}
.breadcrumb-custom .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-custom .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb-custom .breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--primary); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== SERVICE PAGE LIST ===== */
.service-list-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  background: #f8fafc; border: 1px solid #f1f5f9;
  transition: all 0.3s; margin-bottom: 0.75rem;
}
.service-list-item:hover {
  background: white; border-color: var(--secondary);
  box-shadow: 0 4px 12px -4px rgba(20,184,166,0.1);
  transform: translateX(4px);
}
.service-list-item i { color: var(--secondary); font-size: 1.25rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero { height: auto; min-height: 600px; border-radius: 0 0 24px 24px; }
  .hero-card { position: relative; bottom: auto; left: auto; right: auto; margin: 16px; padding: 24px; }
  .stat-line { display: none; }
  .page-header { padding: 80px 0 50px; }
  #google_translate_element {
    top: 6px; right: 6px;
  }
  #google_translate_element .goog-te-combo {
    padding: 4px 6px;
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .hero-card { border-radius: 20px; padding: 20px; }
  .section-title { font-size: 1.75rem; }
  .page-header { border-radius: 0 0 24px 24px; }
  .contact-card { border-radius: 24px; padding: 24px; }
  .nav-btn-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: none; 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: white; font-size: 2rem; cursor: pointer;
  background: none; border: none;
}


/* === Professional content, alignment and responsive refinements === */
.content-prose p,
.about-content p,
.service-content p,
.doctor-detail p,
.doctor-biography p,
.clinical-content p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.85;
  hyphens: auto;
}

.footer-copyright {
  font-size: 1rem !important;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: center !important;
  width: 100%;
}

.doctor-profile-section {
  padding: 5rem 0;
}
.doctor-profile-section:nth-of-type(even) {
  background: #f8fafc;
}
.doctor-profile-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .07);
}
.doctor-profile-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
}
.doctor-qualification {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.65;
}
.profile-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.profile-list li {
  position: relative;
  padding: .55rem 0 .55rem 1.75rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.profile-list li:last-child { border-bottom: 0; }
.profile-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .58rem;
  color: var(--secondary);
  font-weight: 800;
}
.clinical-content {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.clinical-panel {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}
.clinical-panel h3 {
  margin-bottom: 1rem;
}
.clinical-panel ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}
.clinical-panel li {
  margin-bottom: .65rem;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .navbar-nav.align-items-center { align-items: stretch !important; }
  .main-nav .navbar-collapse { max-height: calc(100vh - 90px); overflow-y: auto; padding-bottom: 1rem; }
  .doctor-profile-section { padding: 3.5rem 0; }
}
@media (max-width: 767.98px) {
  .content-prose p,
  .about-content p,
  .service-content p,
  .doctor-detail p,
  .doctor-biography p,
  .clinical-content p {
    text-align: left;
  }
  .doctor-profile-photo { max-width: 280px; margin: 0 auto 1.5rem; display: block; }
  .doctor-profile-card { border-radius: 18px; }
  .footer-copyright { font-size: .95rem !important; line-height: 1.6; padding: .25rem 1rem; }
  h1, h2, h3 { overflow-wrap: anywhere; }
  img { max-width: 100%; height: auto; }
}

/* Map and gallery enhancements */
.map-responsive{position:relative;overflow:hidden;width:100%;border-radius:22px;box-shadow:0 16px 45px rgba(15,23,42,.12)}
.map-responsive iframe{display:block;width:100%;height:450px;border:0}
.gallery-new-item,.home-gallery-item{display:block;overflow:hidden;border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(15,23,42,.10)}
.gallery-new-item img,.home-gallery-item img{display:block;width:100%;height:260px;object-fit:cover;transition:transform .35s ease}
.gallery-new-item:hover img,.home-gallery-item:hover img{transform:scale(1.045)}
.home-mini-gallery{background:#f8fafc}
@media(max-width:767.98px){.map-responsive iframe{height:340px}.gallery-new-item img,.home-gallery-item img{height:180px}}
