/* ==========================================================================
   THE UROLOGY STUDIO - DR. AKSHEY BATTA
   Clean, Modern Medical Design System (White & Premium Bronze/Gold)
   Optimized for Mobile-First & Direct SVG Icons (Zero Missing Glyphs)
   ========================================================================== */

:root {
  /* Brand Colors */
  --bg-body: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-subtle-gold: #FDFBF7;
  --bg-dark: #0B1320;
  
  --gold-primary: #C5A059;
  --gold-dark: #9A7B38;
  --gold-darker: #785E22;
  --gold-light: #FAF6EE;
  --gold-border: #E6D5B8;
  
  --text-primary: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --blue-accent: #0284C7;
  --blue-light: #F0F9FF;
  --blue-border: #BAE6FD;
  
  --whatsapp-green: #25D366;
  --facebook-blue: #1877F2;
  --instagram-pink: #E1306C;
  
  --border-light: #E2E8F0;
  --border-card: #CBD5E1;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  
  --font-main: Arial, Helvetica, sans-serif;
  --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif !important;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--text-body);
  background-color: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h2 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.02rem; }

p { margin-bottom: 0.85rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--gold-darker); }

/* SVG Icons Utility (Guarantees zero missing boxes/squares) */
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  flex-shrink: 0;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Containers */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.section-padding {
  padding: 3.2rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4.2rem 0;
  }
}

.bg-white { background-color: #FFFFFF; }
.bg-subtle { background-color: var(--bg-subtle); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bg-gold-subtle { background-color: var(--bg-subtle-gold); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); }

/* Section Header */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 0.7rem;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: inline-block;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-dark);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-darker);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold-light);
  color: var(--gold-darker);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  background: var(--text-primary);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: var(--gold-dark);
  color: #FFFFFF;
}

/* ==========================================================================
   TOP BAR (Desktop / Tablet)
   ========================================================================== */
.top-bar {
  background: #0B1320;
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.top-bar-social a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.top-bar-social a svg {
  width: 14px;
  height: 14px;
  fill: #CBD5E1;
}

.top-bar-social a:hover {
  background: var(--gold-dark);
}

.top-bar-social a:hover svg {
  fill: #FFFFFF;
}

/* ==========================================================================
   NAVBAR (Sleek Mobile & Desktop Experience)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

/* Circular Logo Styling */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-circle-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 2px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-brand:hover .logo-circle-wrap {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--gold-dark);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  line-height: 1.15;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-location-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-links li a {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .nav-container {
    height: 62px;
  }
  .logo-brand {
    gap: 0.5rem;
    max-width: calc(100% - 52px);
    overflow: hidden;
  }
  .logo-circle-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
  }
  .logo-text-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
  }
  .logo-title {
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .logo-subtitle {
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 700;
    white-space: nowrap;
    display: block !important;
  }
  .logo-location-tag {
    display: none !important;
  }
  .nav-links {
    display: none !important;
  }
  .nav-actions .btn {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-flex !important;
    flex-shrink: 0;
  }
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
  fill: var(--text-primary);
}

.mobile-toggle:hover {
  background: var(--gold-light);
  border-color: var(--gold-border);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 32, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2200;
  box-shadow: -5px 0 25px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0 !important;
}

.mobile-drawer-header {
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-subtle);
}

.mobile-drawer-close {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-drawer-close svg {
  width: 16px;
  height: 16px;
  fill: var(--text-primary);
}

.mobile-drawer-close:hover {
  background: var(--gold-light);
}

.mobile-nav-list {
  list-style: none;
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.4rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav-list li a .nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: inline-block;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
  background: var(--gold-light);
  color: var(--gold-darker);
  border-left-color: var(--gold-dark);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding: 1.2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.mobile-drawer-hospital {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 0.8rem;
}

.mobile-drawer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.9rem;
}

.mobile-drawer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.mobile-drawer-social a svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}

/* ==========================================================================
   MOBILE BOTTOM STICKY QUICK ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-card);
  box-shadow: 0 -3px 15px rgba(0,0,0,0.08);
  z-index: 1800;
  padding: 0.45rem 0.6rem;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0.4rem;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  gap: 0.2rem;
  text-align: center;
}

.mobile-bottom-btn svg {
  width: 18px;
  height: 18px;
}

.btn-bottom-call {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-bottom-call svg {
  fill: var(--text-primary);
}

.btn-bottom-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

.btn-bottom-whatsapp svg {
  fill: #FFFFFF;
}

.btn-bottom-book {
  background: var(--gold-dark);
  color: #FFFFFF;
}

.btn-bottom-book svg {
  fill: #FFFFFF;
}

/* ==========================================================================
   HERO SECTION & BANNERS
   ========================================================================== */
.hero {
  background: #FFFFFF;
  padding: 2.2rem 0 3.2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.hero-badge {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold-darker);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.location-highlight-badge {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  color: #0284C7;
}

.hero-title {
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.hero-subtitle {
  color: var(--gold-dark);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero-description {
  color: var(--text-body);
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Hero Doctor Card (Only 1 Doctor Photo on Main Landing) */
.hero-doctor-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.hero-doctor-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-floating-badge {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 0.9rem 1.1rem;
}

.badge-header {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-dark);
  margin-bottom: 0.15rem;
}

.badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #0B1320 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 2.8rem 0;
  position: relative;
  border-bottom: 3px solid var(--gold-dark);
}

.page-banner-content {
  max-width: 800px;
}

.page-banner h1 {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin-bottom: 0.45rem;
}

.page-banner p {
  color: #CBD5E1;
  font-size: 0.96rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 0.7rem;
}

.breadcrumb a {
  color: #CBD5E1;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   SERVICES & SPECIALTIES (Exact 7 Services List)
   ========================================================================== */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.3rem;
}

.service-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 3px solid var(--gold-dark);
}

.service-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-dark);
}

.service-num-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.35rem;
}

.service-item-card h3 {
  font-size: 1.08rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-item-card p {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

/* Stylized List Bullets with Gold Tick marks */
.tick-list {
  list-style: none;
  margin: 0.6rem 0 1rem 0;
}

.tick-list li {
  font-size: 0.86rem;
  color: var(--text-body);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tick-mark {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* Kidney Feature Grid */
.feature-info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}

.kidney-info-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.kidney-info-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #FFFFFF;
}

.kidney-info-footer {
  padding: 0.9rem 1.1rem;
  background: var(--bg-subtle-gold);
  border-top: 1px solid var(--gold-border);
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.3rem;
}

.award-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border-left: 4px solid var(--gold-dark);
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}

.award-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.award-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: inline-block;
}

.award-title {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.award-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.award-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Social Media Cards */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}

.social-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-dark);
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.social-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon-box svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.icon-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.icon-facebook {
  background: #1877F2;
}

.icon-whatsapp {
  background: #25D366;
}

.social-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0.9rem 0;
}

.social-post-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-body);
}

/* ==========================================================================
   LOCATION & CONTACT
   ========================================================================== */
.location-featured-card {
  background: #FFFFFF;
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.location-featured-card::before {
  content: 'PRIMARY OPD';
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--gold-dark);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 34px;
  letter-spacing: 1px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}

.info-box-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.info-box-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-box-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-dark);
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   MODAL & FORMS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 32, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-card);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close svg {
  width: 14px;
  height: 14px;
  fill: var(--text-primary);
}

.modal-close:hover {
  background: #fee2e2;
}

.modal-close:hover svg {
  fill: #dc2626;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-light);
}

/* Floating Emergency WhatsApp (Desktop) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
}

.fab-whatsapp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .floating-actions {
    display: none;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #0B1320;
  color: #CBD5E1;
  padding: 3.2rem 0 1.6rem 0;
  border-top: 3px solid var(--gold-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: #94A3B8;
  line-height: 1.55;
}

.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.35rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  color: #CBD5E1;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
  transition: var(--transition);
}

.footer-social-btn svg {
  width: 17px;
  height: 17px;
  fill: #FFFFFF;
}

.footer-social-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 1.4rem;
  border-top: 1px solid #1E293B;
  text-align: center;
  font-size: 0.78rem;
  color: #64748B;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIRST FOCUS)
   ========================================================================== */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions .btn {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .hero-grid,
  .feature-info-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }

  .hero-doctor-img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 94%;
    padding: 0 0.4rem;
  }

  .section-padding {
    padding: 2.6rem 0;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .social-grid,
  .services-list-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.72rem;
    display: block !important;
  }

  .logo-location-tag {
    display: none !important;
  }

  .nav-actions .btn {
    display: none !important;
  }
}
