/* ============================================================
   medical-certificate.css
   Page styles for /medical-certificate
   Moved out of the inline <style> block so the browser can cache
   it. Bump the ?v= query string in the <link> when you change this.
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --navy:    #2F3589;
  --navy-dk: #1e2266;
  --sky:     #2FBEF6;
  --sky-lt:  #e8f7fe;
  --green:   #16a34a;
  --white:   #ffffff;
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-400:#9ca3af;
  --gray-600:#4b5563;
  --gray-800:#1f2937;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --radius:  10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(47,53,137,0.12);
  --shadow-lg: 0 10px 32px rgba(47,53,137,0.18);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Replacement for W3CSS .w3-animate-opacity (so w3.css can be removed) */
.w3-animate-opacity { animation: cmhFadeIn 0.3s ease-in; }
@keyframes cmhFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-sky { color: var(--sky); }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.25; }

.section-label {
  display: inline-block;
  background: var(--sky-lt);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- HERO ---- */
.hero {
  background: url('../images/bg.jpg') center/cover no-repeat;
  background-color: #1e2266;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,34,102,0.88) 45%, rgba(47,190,246,0.18) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge span { color: var(--sky); }

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--sky); }

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--navy-dk);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,190,246,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { color: rgba(255,255,255,0.9); }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
}
.hero-stat span { font-size: 0.82rem; opacity: 0.8; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy); padding: 16px 0; overflow: hidden; }
.trust-bar-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--sky); flex-shrink: 0; }

/* ---- WHAT IS ---- */
.what-is { background: var(--white); }
.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.what-is-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 16px; }
.what-is-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.what-is-content p:last-child { margin-bottom: 0; }

.use-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.use-case-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 14px;
}
.use-case-icon {
  width: 32px; height: 32px;
  background: var(--sky-lt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.use-case-item p {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0; line-height: 1.4;
}

.what-is-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1f6b 100%);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.what-is-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  display: block;
}
.what-is-visual .btn-primary {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 24px;
}
.what-is-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(47,190,246,0.1);
  border-radius: 50%;
}
.cert-preview-card { background: #fff; border-radius: 10px; padding: 24px; position: relative; z-index: 1; }
.cert-preview-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}
.cert-preview-logo {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  text-align: center; line-height: 1.2;
}
.cert-preview-title h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.cert-preview-title span { font-size: 0.78rem; color: var(--gray-400); font-family: var(--font-head); }
.cert-field { margin-bottom: 12px; }
.cert-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-400); margin-bottom: 4px;
}
.cert-field-value {
  background: var(--gray-50);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 600;
  color: var(--gray-800);
}
.cert-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #dcfce7; color: #15803d;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.cert-badge.blue { background: var(--sky-lt); color: var(--navy); }

/* ---- SERVICES ---- */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--sky);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--sky-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy); text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; color: var(--sky); }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.666% + 16px);
  width: calc(66.666% - 32px); height: 2px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--navy) 100%);
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* ---- BENEFITS ---- */
.benefits { background: var(--gray-50); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px; text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card.featured { background: var(--navy); border-color: var(--navy); }
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card.featured h3 { color: #fff; }
.benefit-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }
.benefit-card.featured p { color: rgba(255,255,255,0.8); }

/* ---- CONTENT BLOCK ---- */
.content-block { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: flex-start; }
.content-prose h2 { font-size: 1.5rem; color: var(--navy); margin: 32px 0 12px; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { font-size: 1.15rem; color: var(--navy); margin: 24px 0 10px; }
.content-prose p { color: var(--gray-600); font-size: 0.97rem; line-height: 1.85; margin-bottom: 16px; }
.content-prose ul { margin: 0 0 16px 20px; color: var(--gray-600); font-size: 0.97rem; line-height: 1.85; }
.content-prose ul li { margin-bottom: 6px; }
.content-prose a { color: var(--navy); text-decoration: underline; }

.sidebar-sticky { position: sticky; top: 24px; }
.sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px; margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 1rem; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}
.sidebar-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none; color: var(--gray-800);
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--navy); padding-left: 4px; }
.sidebar-link::before { content: '\2192'; color: var(--sky); font-size: 0.8rem; }

.cta-sidebar {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1f6b 100%);
  border-radius: var(--radius);
  padding: 28px; text-align: center; color: #fff;
}
.cta-sidebar h4 { font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
.cta-sidebar p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 18px; font-family: var(--font-head); }
.cta-sidebar .btn-primary { width: 100%; justify-content: center; }

/* ---- FAQ ---- */
.faq { background: var(--white); }
.faq-grid { max-width: 800px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .faq-arrow {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--sky-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 0.8rem; color: var(--navy);
}
.faq-item.open .faq-q { background: var(--sky-lt); }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--navy); color: #fff; }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.93rem; color: var(--gray-600); line-height: 1.8; background: var(--sky-lt); }
.faq-item.open .faq-a { display: block; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--gray-50); }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin: 8px;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.93rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
}
.reviewer-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.reviewer-city { font-size: 0.78rem; color: var(--gray-400); font-family: var(--font-head); }

/* ---- BOTTOM CTA ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, #1a1f6b 50%, #16265a 100%);
  padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(47,190,246,0.08);
  border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-primary { font-size: 1rem; padding: 16px 36px; }

/* ---- CAUSE ---- */
.cause { background: var(--white); }
.cause-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cause-content h2 { color: var(--sky); font-size: 1.7rem; margin-bottom: 8px; }
.cause-content h2 strong { color: var(--navy); }
.cause-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 0.97rem; }
.cause-list { list-style: none; padding: 0; }
.cause-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-family: var(--font-head);
  font-size: 0.9rem; color: var(--gray-800);
}
.cause-list li::before { content: '\2713'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.cause-visual img { width: 100%; border-radius: 12px; height: auto; }

/* ---- STEP GUIDE ---- */
.step-guide { background: var(--gray-50); }
.step-guide-inner { max-width: 760px; margin: 40px auto 0; }
.guide-step {
  display: flex; gap: 20px; margin-bottom: 20px;
  background: #fff; border-radius: var(--radius);
  padding: 20px 24px; border: 1px solid var(--gray-200);
  align-items: flex-start;
}
.guide-step-num {
  width: 36px; height: 36px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.guide-step h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 4px; }
.guide-step p { font-size: 0.88rem; color: var(--gray-600); }
.guide-step a { color: var(--navy); font-weight: 600; }

/* ---- CITIES ---- */
.cities-section { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 80px 0; }
.cities-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white; font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px; letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: #1e293b;
  margin-bottom: 12px; line-height: 1.2;
}
.section-description { font-size: 1.1rem; color: #64748b; line-height: 1.7; font-weight: 400; }
.cities-wrapper { max-width: 1200px; margin: 0 auto; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.city-group {
  background: white; border-radius: 16px; padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.city-group::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.city-group:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); border-color: rgba(59, 130, 246, 0.2); }
.city-group:hover::before { transform: scaleX(1); }
.city-group.featured { background: linear-gradient(135deg, #1e293b, #334155); border-color: rgba(59, 130, 246, 0.3); }
.city-group.featured .city-name, .city-group.featured .cert-link { color: white; }
.city-group.featured .cert-link:hover { color: #60a5fa; }
.city-name {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 800;
  color: #1e293b; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9; letter-spacing: -0.02em;
}
.cert-links { display: flex; flex-direction: column; gap: 8px; }
.cert-link {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: #475569; text-decoration: none; padding: 10px 0;
  position: relative; transition: all 0.2s ease;
}
.cert-link::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8); transition: width 0.3s ease;
}
.cert-link:hover { color: #1e293b; padding-left: 8px; }
.cert-link:hover::before { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .what-is-grid, .content-grid, .cause-inner { grid-template-columns: 1fr; }
  .services-grid, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .use-case-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .section-pad { padding: 48px 0; }
  .cities-section { padding: 60px 0; }
  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
  .city-group { padding: 24px; }
}
@media (max-width: 480px) {
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 1.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}