/* ==========================================================================
   Ankur Children Hospital - Coming Soon Webpage Styles
   Brand Color: #3F5441 (Earthy Medical Forest Green)
   Style: Clean White Background, Pediatric & Child-Friendly Aesthetic
   ========================================================================== */

:root {
  /* Brand Colors from Provided Logo */
  --brand-primary: #3F5441;
  --brand-primary-hover: #324334;
  --brand-dark: #273528;
  --brand-light: #EBF2ED;
  --brand-tint: #F5F8F6;
  --brand-border: #D7E3D9;
  
  /* Pediatric Accents */
  --accent-red: #E82D2C;
  --accent-red-light: #FEECEB;
  --accent-gold: #F59E0B;
  --accent-gold-light: #FEF3C7;
  --accent-blue: #0284C7;
  --accent-blue-light: #E0F2FE;

  /* Neutrals & Clean White Surfaces */
  --bg-pure: #FFFFFF;
  --bg-subtle: #FAFCFA;
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-light: #E9EFEA;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(63, 84, 65, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(63, 84, 65, 0.08), 0 4px 10px -2px rgba(63, 84, 65, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(63, 84, 65, 0.12), 0 8px 16px -4px rgba(63, 84, 65, 0.06);
  --shadow-glow: 0 0 30px rgba(63, 84, 65, 0.15);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-pure);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--brand-dark);
  line-height: 1.25;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Playful Floating Decorative Elements
   -------------------------------------------------------------------------- */
.bg-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(40px);
  animation: floatSlow 12s infinite alternate ease-in-out;
}

.bubble-1 {
  top: -5%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(235, 242, 237, 0.9) 0%, rgba(245, 248, 246, 0) 70%);
}

.bubble-2 {
  top: 35%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
  animation-duration: 16s;
  animation-delay: -3s;
}

.bubble-3 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  animation-duration: 14s;
  animation-delay: -5s;
}

.bubble-4 {
  bottom: -5%;
  left: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(235, 242, 237, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
}

.floating-shape {
  position: absolute;
  animation: floatBob 6s infinite ease-in-out alternate;
}

.shape-star-1 {
  top: 15%;
  right: 12%;
  animation-duration: 5s;
}

.shape-star-2 {
  top: 55%;
  left: 6%;
  animation-duration: 7s;
  animation-delay: -2s;
}

.shape-heart-1 {
  top: 28%;
  left: 48%;
  animation-duration: 6.5s;
  animation-delay: -1s;
}

.shape-cloud-1 {
  top: 8%;
  left: 8%;
  opacity: 0.5;
  animation: floatDrift 20s infinite linear alternate;
}

.shape-cloud-2 {
  bottom: 25%;
  right: 6%;
  opacity: 0.45;
  animation: floatDrift 24s infinite linear alternate-reverse;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, 35px) scale(1.08); }
}

@keyframes floatBob {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(6deg); }
}

@keyframes floatDrift {
  0% { transform: translateX(0px); }
  100% { transform: translateX(40px); }
}

/* --------------------------------------------------------------------------
   Site Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  background-color: var(--brand-light);
  border: 1px solid var(--brand-border);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-red);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--accent-red);
  opacity: 0.5;
  animation: pulsePing 1.8s infinite cubic-bezier(0, 0, 0.2, 1);
}

@keyframes pulsePing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(63, 84, 65, 0.25);
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 84, 65, 0.35);
}

.btn-outline {
  background-color: #FFFFFF;
  color: var(--brand-primary);
  border-color: var(--brand-border);
}

.btn-outline:hover {
  background-color: var(--brand-light);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--brand-primary);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4.5rem;
}

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

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--brand-light);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
}

.sprout-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
}

.highlight-brand {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.highlight-brand::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(245, 158, 11, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* Coming Soon Main Announcement Card */
.coming-soon-banner {
  background: #FFFFFF;
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.coming-soon-banner:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.coming-soon-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, #68856B 50%, var(--accent-red) 100%);
}

.cs-badge-wrapper {
  margin-bottom: 0.75rem;
}

.cs-tag {
  display: inline-block;
  background-color: var(--brand-light);
  color: var(--brand-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.cs-body {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.cs-icon-box {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background-color: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
  padding: 6px;
}

.cs-logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cs-text h3 {
  font-size: 1.18rem;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.cs-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cs-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Trust Chips */
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-chip:hover {
  border-color: var(--brand-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.chip-icon {
  font-size: 1.05rem;
}

/* Hero Visual Column */
.hero-visual {
  position: relative;
}

.card-visual-wrapper {
  position: relative;
}

.visual-main-card {
  background-color: #FFFFFF;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem 2rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(180deg, var(--brand-tint) 0%, rgba(255,255,255,0) 100%);
  z-index: 0;
}

.visual-logo-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.visual-vertical-logo {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(63, 84, 65, 0.08));
  transition: transform 0.4s ease;
}

.visual-main-card:hover .visual-vertical-logo {
  transform: scale(1.03);
}

.visual-card-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.visual-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  background-color: var(--brand-tint);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

.visual-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-light);
}

/* Floating Badges */
.visual-badge-floating {
  position: absolute;
  top: -18px;
  right: -15px;
  z-index: 2;
  background-color: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  animation: floatBob 5s infinite ease-in-out alternate;
}

.visual-badge-star {
  font-size: 1.4rem;
}

.visual-badge-floating strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.1;
}

.visual-badge-floating small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Facilities Section (Sneak Peek)
   -------------------------------------------------------------------------- */
.facilities-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-heading {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.section-pill {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background-color: var(--brand-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.facility-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.facility-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-lg);
}

.highlighted-card {
  border-color: rgba(232, 45, 44, 0.3);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFD 100%);
}

.highlighted-card:hover {
  border-color: var(--accent-red);
}

.facility-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.facility-card:hover .facility-icon-wrap {
  transform: scale(1.08) rotate(3deg);
}

.facility-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.emergency-pill {
  color: var(--accent-red);
  background-color: var(--accent-red-light);
  font-weight: 700;
}

.facility-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.facility-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.facility-features {
  margin-top: auto;
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
}

.facility-features li {
  font-size: 0.82rem;
  color: var(--text-main);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.facility-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Why Section (Parent Reassurance)
   -------------------------------------------------------------------------- */
.why-section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
}

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

.features-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-bullet {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
}

.feature-desc h4 {
  font-size: 1.08rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.feature-desc p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Brand Values Card */
.brand-values-card {
  background: linear-gradient(145deg, #FFFFFF 0%, var(--brand-tint) 100%);
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.values-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.values-icon {
  font-size: 2rem;
}

.values-header h3 {
  font-size: 1.45rem;
  color: var(--brand-primary);
}

.values-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--brand-dark);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  border-left: 3px solid var(--brand-primary);
  padding-left: 1rem;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.value-tags .tag {
  background-color: #FFFFFF;
  border: 1px solid var(--brand-border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.opening-status-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--brand-primary);
}

.opening-status-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Contact & Pre-Opening Desk Section
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
}

.contact-box {
  background-color: #FFFFFF;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-md);
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--brand-tint);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-card h4 {
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.address-text {
  font-size: 0.92rem;
  color: var(--text-main) !important;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.contact-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.contact-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.maps-link {
  font-size: 0.88rem;
  color: var(--brand-primary);
  background-color: #FFFFFF;
  border: 1px solid var(--brand-border);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.maps-link:hover {
  background-color: var(--brand-light);
  border-color: var(--brand-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

.whatsapp-link {
  color: #128C7E;
}

.contact-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: auto;
}

/* Direct Action Banner */
.direct-action-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #2D3D2F 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.action-text h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.action-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2.5px;
  background-color: var(--brand-primary);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-red);
  display: inline-block;
  margin-top: 6px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 0;
  background-color: var(--bg-subtle);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 520px;
    margin-inline: auto;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.45rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

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

  .direct-action-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

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

  .footer-bottom-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .visual-badge-floating {
    top: -12px;
    right: 12px;
    padding: 0.4rem 0.8rem;
  }

  .visual-main-card {
    padding: 2rem 1.25rem 1.75rem;
  }

  .contact-box {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.05rem;
  }

  .brand-logo {
    height: 42px;
  }

  .cs-body {
    flex-direction: column;
    text-align: center;
  }

  .cs-cta-group {
    flex-direction: column;
    width: 100%;
  }

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