/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', 'Arial', sans-serif;
  line-height: 1.7;
  background-color: #f8fafc;
  color: #1e293b;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling issues on iOS */
}

/* Prevent overflow */
.hero, .hero-inner, .hero-image, .hero-image img {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* CSS Variables */
:root {
  --primary-color: #1e40af;
  --accent-color: #3b82f6;
  --bg-light: #ffffff;
  --bg-menu: #f9fafb;
  --text-light: #e2e8f0;
  --green: #22c55e;
  --green-hover: #16a34a;
  --bg-gradient: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
  --neumorph-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.5);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Scroll Animations */
.sweep-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.swipe-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.sweep-in.visible, .swipe-up.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* FadeIn Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

:root {
  --primary-blue: #142c5c;
  --highlight-yellow: #fcd300;
  --white: #ffffff;
  --urdu-font: 'Noto Nastaliq Urdu', serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

:root {
  --white: #ffffff;
  --highlight-yellow: #f9d342;
  --primary-blue: #1f3b75;
  --urdu-font: 'Noto Nastaliq Urdu', serif;
}

.navbar {
  background: linear-gradient(to bottom, #0a1a3f 0%, #1f3b75 85%, #6aa9ff 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.mobile-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 1rem;
}

/* ✅ Logo: Subtle background and shadow */
.mobile-logo {
  display: inline-flex;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.4rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  max-width: fit-content;
}

.logo-img {
  width: 70px;
  height: auto;
}

/* ✅ Centered Helpline */
.mobile-helpline {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  white-space: normal;
}

.helpline-heading {
  font-size: 1.1rem;
  color: var(--highlight-yellow);
  text-shadow: 1px 1px 2px black;
  font-weight: bold;
}

.helpline-number {
  color: red;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 1px 1px 0 white;
  display: block;
}

/* ✅ Urdu Text Aligned Right */
.mobile-urdu {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.clinic-title {
  margin: 0;
  font-family: var(--urdu-font);
  font-size: 1.3rem;
  color: red;
  text-shadow: 1px 1px 2px white;
}

.clinic-subtitle {
  margin: 0;
  font-family: var(--urdu-font);
  font-size: 1rem;
  color: var(--highlight-yellow);
  text-shadow: 1px 1px 2px black;
}

/* Nav Links (Optional Desktop Nav) */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 1rem 0 0;
  flex-wrap: wrap;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--highlight-yellow);
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-top: 1rem;
  align-self: flex-end;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
}

/* ✅ FULL Responsive + Zoom-Tolerant Layout */
@media (max-width: 768px), (max-width: 480px), (min-zoom: 200%) {
  .mobile-navbar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-logo,
  .mobile-helpline,
  .mobile-urdu {
    flex: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    background-color: var(--primary-blue);
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}



/* Hero Section */
.hero {
  background: var(--bg-gradient);
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--text-light);
  text-align: left;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 100%;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem; /* optional spacing around image */
}

.hero-image img {
  width: 300px;           /* Fixed width for consistency */
  height: auto;           /* Maintain natural aspect ratio */
  max-width: 100%;        /* Responsive on smaller screens */
  object-fit: contain;    /* Prevents distortion */
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25)); /* Soft shadow */
  border-radius: 12px;    /* Rounded corners */
  display: block;
}



/* ...existing code... */

/* ...existing code... */

/* Hero CTA Buttons - Clean, Modern, Responsive, Mobile-First */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* General CTA Button Style */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 1.5rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  background: var(--accent-color, #2563eb);
  color: #fff;
  letter-spacing: 0.01em;
  outline: none;
  touch-action: manipulation;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button:hover,
.cta-button:focus {
  background: #1e40af;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(90deg, #25d366 60%, #128c7e 100%);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background: linear-gradient(90deg, #128c7e 60%, #25d366 100%);
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}

.whatsapp-btn i {
  font-size: 1.2em;
  margin-right: 0.5em;
}

/* Female Branch Button - Subtle Pulse */
.more-clickable {
  background: linear-gradient(90deg, #ff5e62 0%, #ff9966 100%);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,94,98,0.13);
  animation: pulsePrompt 1.8s cubic-bezier(0.4,0,0.2,1) infinite alternate;
}

.more-clickable:hover,
.more-clickable:focus {
  background: linear-gradient(90deg, #ff9966 0%, #ff5e62 100%);
  box-shadow: 0 4px 16px rgba(255,94,98,0.18);
  animation: none;
}

@keyframes pulsePrompt {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255,94,98,0.13);
  }
  60% {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(255,94,98,0.16);
  }
  100% {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(255,94,98,0.20);
  }
}

/* Responsive: Row layout for larger screens */
@media (min-width: 600px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
  }
  .cta-button {
    width: auto;
    min-width: 120px;
    font-size: 1rem;
    padding: 0.7rem 1.3rem;
  }
}


/* ...existing code... */
/* ...existing code... */

/* WhatsApp subtle pulse */

/* ...existing code... */
/* Services Section - Mobile Optimized */
.meet-services {
  padding: clamp(40px, 10vw, 60px) clamp(16px, 5vw, 24px);
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
  color: #1e293b;
}

.services-intro {
  max-width: 900px;
  text-align: center;
  margin-bottom: clamp(24px, 6vw, 40px);
}

.services-intro h2 {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-intro p {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  line-height: 1.8;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid-alt {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: clamp(16px, 4vw, 24px);
  max-width: 100%;
  justify-items: center;
}

.service-card-alt {
  background: var(--bg-light);
  border-radius: 16px;
  padding: clamp(16px, 4vw, 20px);
  width: 100%;
  max-width: 360px;
  box-shadow: var(--neumorph-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(145deg, #ffffff, #e0f2fe);
}

.service-card-alt:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-alt img {
  width: 100%;
  height: clamp(160px, 40vw, 200px);
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.service-card-alt:hover img {
  transform: scale(1.02);
}

.service-card-alt h3 {
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  color: #1e3a8a;
  margin: 12px 0 8px;
  text-align: center;
}

.service-card-alt p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
  padding: 0 clamp(8px, 2vw, 12px);
}

@media (min-width: 768px) {
  .services-grid-alt {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .services-intro h2 {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }

  .services-intro p {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
  }

  .service-card-alt {
    padding: 24px;
  }

  .service-card-alt h3 {
    font-size: 1.4rem;
  }

  .service-card-alt p {
    font-size: 1.05rem;
  }
}

/* About Us Section - Mobile Optimized */
.about-us {
  padding: clamp(2rem, 8vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(to bottom, #e0f2fe, #f8fafc);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}

header h2 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

header p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 24px);
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}

.mission-card, .vision-card {
  background: var(--bg-light);
  padding: clamp(1.2rem, 4vw, 1.5rem);
  border-radius: 12px;
  box-shadow: var(--neumorph-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background-image: linear-gradient(145deg, #ffffff, #e0f2fe);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.mission-card h3, .vision-card h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.mission-card p, .vision-card p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.team-overview, .call-to-action {
  text-align: center;
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
}

.team-overview h3, .call-to-action h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.team-overview p, .call-to-action p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.call-to-action a {
  display: inline-flex;
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  padding: clamp(10px, 2.5vw, 12px) clamp(18px, 4vw, 20px);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
  min-height: 44px;
}

.call-to-action a:hover, .call-to-action a:focus {
  background-color: #1e40af;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  header h2 {
    font-size: clamp(2.2rem, 5vw, 2.5rem);
  }

  header p {
    font-size: clamp(1.05rem, 2.5vw, 1.125rem);
  }

  .mission-card, .vision-card {
    padding: 2rem;
  }

  .mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
  }

  .team-overview h3, .call-to-action h3 {
    font-size: 1.5rem;
  }
}

/* Meet Experts Section */
.meet-experts {
  padding: clamp(60px, 15vw, 80px) clamp(16px, 5vw, 24px);
  background: linear-gradient(145deg, #3b82f6 0%, #1e3a8a 100%);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  position: relative;
}

.experts-intro {
  max-width: 720px;
  margin: 0 auto clamp(24px, 6vw, 40px);
}

.experts-intro h2 {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 800;
  color: #f5f9ff;
  margin-bottom: 16px;
}

.experts-intro p {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: #d6e3f0;
  line-height: 1.7;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 24px);
  max-width: 100%;
  justify-items: center;
}

.expert-profile {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: clamp(16px, 4vw, 20px);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.expert-profile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.expert-profile img {
  width: clamp(160px, 40vw, 180px);
  height: clamp(200px, 50vw, 220px);
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.expert-profile:hover img {
  transform: scale(1.08);
}

.expert-profile h3 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 800;
  color: #f5f7fa;
}

.expert-profile .title {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #c3d9ec;
  margin-bottom: 6px;
}

.expert-profile .expertise {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: #b0c4d8;
  line-height: 1.6;
  padding: 0 clamp(8px, 2vw, 12px);
}

@media (min-width: 768px) {
  .experts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .experts-intro h2 {
    font-size: clamp(2.4rem, 6vw, 3rem);
  }

  .experts-intro p {
    font-size: clamp(1.1rem, 3vw, 1.2rem);
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: var(--bg-light);
  margin: auto;
  padding: clamp(20px, 5vw, 24px);
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: left;
  color: #1e293b;
  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: #6b7280;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.close-modal:hover, .close-modal:focus {
  color: #1e293b;
  transform: rotate(90deg);
}

.modal-content h3 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-content p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

/* Resources Section */
.resources-header {
  text-align: center;
  padding: clamp(24px, 6vw, 40px) clamp(12px, 3vw, 16px);
  background-color: var(--bg-light);
  border-bottom: 2px solid #e5e7eb;
}

.resources-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  color: #1e293b;
  margin-bottom: 8px;
}

.resources-header p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #6b7280;
}

.resource-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 20px);
  margin: clamp(24px, 6vw, 40px) 0;
}

.resource-card {
  background-color: var(--bg-light);
  padding: clamp(16px, 4vw, 20px);
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.resource-card h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  color: #1e293b;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #6b7280;
}

@media (min-width: 768px) {
  .resource-cards {
    flex-direction: row;
    justify-content: center;
  }
}

/* Support Links */
.support-links, .external-resources {
  text-align: center;
  margin: clamp(24px, 6vw, 40px) 0;
}

.support-links h3, .external-resources h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #1e293b;
  margin-bottom: 16px;
}

.support-links ul, .external-resources ul {
  list-style: none;
}

.support-links li, .external-resources li {
  margin-bottom: 8px;
}

.support-links a, .external-resources a {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  padding: 8px;
}

.support-links a:hover, .support-links a:focus,
.external-resources a:hover, .external-resources a:focus {
  color: #1e40af;
  transform: translateX(5px);
}

/* Founder Section */
.founder-section {
  background-color: var(--bg-light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.founder-photo {
  flex-shrink: 0;
  width: clamp(100px, 25vw, 120px);
  height: clamp(100px, 25vw, 120px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.founder-photo:hover {
  transform: scale(1.05);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.founder-photo:hover img {
  transform: scale(1.1);
}

.founder-info {
  text-align: center;
}

.founder-info h4 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.founder-info p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 768px) {
  .founder-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .founder-info {
    text-align: left;
  }
}

/* Location Section */
.our-location-section {
  background: linear-gradient(to right, #e0f2fe, #f8fafc);
  padding: clamp(40px, 10vw, 60px) clamp(12px, 3vw, 16px);
  text-align: center;
}

.our-location-section .container {
  max-width: 960px;
}

.location-title {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  color: #1e3a8a;
  font-weight: 800;
  margin-bottom: 16px;
}

.location-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #4b5563;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.location-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.directions-button {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: white;
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 18px);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background-color var(--transition), transform var(--transition);
  min-height: 44px;
}

.directions-button:hover, .directions-button:focus {
  background-color: #1e40af;
  transform: scale(1.05);
}

.location-info {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #4b5563;
  background-color: var(--bg-light);
  padding: clamp(16px, 4vw, 20px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: inline-block;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: clamp(40px, 10vw, 60px) clamp(12px, 3vw, 16px) clamp(24px, 6vw, 30px);
  border-top: 5px solid var(--accent-color);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 6vw, 32px);
}

.footer-col h3, .footer-col h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 3vw, 1.3rem);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after, .footer-col h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-tagline {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #cbd5e1;
}

.footer-col ul li a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 0.95rem);
  transition: color var(--transition), transform var(--transition);
  padding: 8px 0;
  display: block;
}

.footer-col ul li a:hover, .footer-col ul li a:focus {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #334155;
  font-size: clamp(0.8rem, 2vw, 0.85rem);
  color: #94a3b8;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}