/* Font Awesome 6 Free */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* =============================================
   Global Health & Dental Tourism — Shared CSS
   Colors: #134062 | #3a8394 | #88a85e
   ============================================= */

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

:root {
  --navy:   #134062;
  --teal:   #3a8394;
  --green:  #88a85e;
  --navy-dark: #0d2e47;
  --teal-light: #d0eaf0;
  --green-light: #e8f0dc;
  --white:  #ffffff;
  --off-white: #f5f8fb;
  --gray:   #6c757d;
  --dark:   #1e2d3a;
  --border: #dce6ed;
  --shadow: 0 4px 24px rgba(19,64,98,0.12);
  --shadow-hover: 0 8px 40px rgba(19,64,98,0.22);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.text-navy  { color: var(--navy); }
.text-teal  { color: var(--teal); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: #729049; border-color: #729049;
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white); color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: #2f6e7a; border-color: #2f6e7a;
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Navigation ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(19,64,98,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px; height: 48px; object-fit: contain;
  border-radius: 50%; background: transparent;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text span:first-child {
  font-size: 0.98rem; font-weight: 800; color: var(--white); letter-spacing: 0.5px;
}
.nav-logo-text span:last-child {
  font-size: 0.7rem; color: var(--green); font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0; flex-shrink: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500;
  padding: 8px 8px; border-radius: var(--radius-sm);
  transition: var(--transition); position: relative; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--green);
  border-radius: 2px;
}
.nav-cta { margin-left: 16px; }
.nav-admin-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-left: 10px;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px; color: white; font-size: 0.95rem;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.nav-admin-icon:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); color: white; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy-dark);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
  padding: 10px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-mobile .btn { margin-top: 12px; justify-content: center; }

/* ── Page Hero (inner pages) ────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
  padding: 140px 24px 80px;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.875rem; opacity: 0.7;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ── Section Wrapper ────────────────────────── */
.section { padding: 90px 24px; }
.section-sm { padding: 60px 24px; }
.section-lg { padding: 110px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--green-light); color: var(--green);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 14px;
}
.section-tag.teal {
  background: var(--teal-light); color: var(--teal);
}
.section-tag.navy {
  background: rgba(19,64,98,0.08); color: var(--navy);
}
.section-header { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 620px; }
.section-header.text-center p { margin: 0 auto; }
.divider {
  width: 50px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-body { padding: 28px; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: var(--teal-light);
}
.card-icon.green { background: var(--green-light); }
.card-icon.navy  { background: rgba(19,64,98,0.08); }
.card h3 { margin-bottom: 10px; color: var(--navy); }
.card p  { color: var(--gray); font-size: 0.95rem; }

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ── Badge / Tag ────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}
.badge-green { background: var(--green-light); color: #5a7a35; }
.badge-teal  { background: var(--teal-light); color: #26636f; }
.badge-navy  { background: rgba(19,64,98,0.1); color: var(--navy); }

/* ── Stat Bar ───────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 50px 24px; color: var(--white);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.stat-item p  { opacity: 0.8; font-size: 0.9rem; }

/* ── Testimonial ────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-card .quote { font-size: 1.05rem; color: var(--dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-card .author-info strong { display: block; color: var(--navy); font-size: 0.9rem; }
.testimonial-card .author-info span  { color: var(--gray); font-size: 0.8rem; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 12px; }

/* ── CTA Block ──────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius); padding: 60px 40px;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px; right: -80px;
}
.cta-block h2 { margin-bottom: 14px; }
.cta-block p  { opacity: 0.85; margin-bottom: 30px; font-size: 1.05rem; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.8);
  padding: 70px 24px 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { width: 52px; height: 52px; margin-bottom: 16px; }
.footer-brand .brand-name { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand .brand-tagline { font-size: 0.78rem; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; }
.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}
.footer-bottom p { opacity: 0.5; }
.footer-bottom-links { display: flex; gap: 20px; opacity: 0.5; }
.footer-bottom-links a:hover { opacity: 1; color: var(--green); }

/* ── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--dark); margin-bottom: 7px;
}
.form-group label span { color: #e74c3c; margin-left: 3px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.95rem;
  color: var(--dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,131,148,0.12); }
.form-control::placeholder { color: #b0bec5; }
select.form-control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }

/* ── Accordion ──────────────────────────────── */
.accordion-item {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
}
.accordion-header {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; font-family: var(--font); font-size: 1rem;
  font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.accordion-header:hover { background: var(--off-white); }
.accordion-header .icon { transition: transform 0.3s; color: var(--teal); font-size: 1.2rem; }
.accordion-header.open .icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 22px 20px; color: var(--gray); line-height: 1.7; font-size: 0.95rem; }
.accordion-body.open { display: block; }

/* ── Utility ────────────────────────────────── */
.bg-off-white  { background: var(--off-white); }
.bg-navy       { background: var(--navy); }
.bg-teal-light { background: var(--teal-light); }
.bg-green-light{ background: var(--green-light); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.mt-32{ margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16{ margin-bottom: 16px; }
.mb-24{ margin-bottom: 24px; }
.mb-32{ margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.full-width { width: 100%; }
.highlight { color: var(--teal); }
.highlight-green { color: var(--green); }

/* ── Notification ───────────────────────────── */
.notification {
  position: fixed; top: 90px; right: 24px; z-index: 9999;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 16px 20px; max-width: 340px;
  border-left: 4px solid var(--green);
  display: flex; align-items: flex-start; gap: 12px;
  animation: slideIn 0.4s ease; font-size: 0.9rem;
}
.notification.hidden { display: none; }
.notification.error { border-left-color: #e74c3c; }
.notification-icon { font-size: 1.2rem; margin-top: 1px; }
.notification strong { display: block; margin-bottom: 3px; color: var(--navy); }
.notification-close { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--gray); padding: 0 0 0 8px; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ── Progress Steps ─────────────────────────── */
.steps-bar {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 40px; gap: 0;
}
.step-item {
  display: flex; align-items: center; gap: 0;
  flex: 1; max-width: 200px;
}
.step-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; background: var(--white);
  color: var(--gray); transition: var(--transition); flex-shrink: 0;
  cursor: pointer;
}
.step-circle.active { border-color: var(--teal); background: var(--teal); color: var(--white); }
.step-circle.done   { border-color: var(--green); background: var(--green); color: var(--white); }
.step-label { font-size: 0.78rem; color: var(--gray); margin-top: 6px; text-align: center; font-weight: 600; }
.step-label.active { color: var(--teal); }
.step-label.done   { color: var(--green); }
.step-connector { flex: 1; height: 2px; background: var(--border); transition: var(--transition); max-width: 60px; }
.step-connector.done { background: var(--green); }
.step-wrapper { display: flex; flex-direction: column; align-items: center; }

/* ── Icon Utilities ─────────────────────────── */
.icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  font-size: 1.25rem;
}
.icon-wrap.teal  { background: var(--teal-light);  color: var(--teal); }
.icon-wrap.green { background: var(--green-light); color: var(--green); }
.icon-wrap.navy  { background: rgba(19,64,98,0.09); color: var(--navy); }
.icon-wrap.white { background: rgba(255,255,255,0.15); color: white; }
.icon-wrap.sm { width: 38px; height: 38px; border-radius: 9px; font-size: 0.95rem; }
.icon-wrap.lg { width: 68px; height: 68px; border-radius: 18px; font-size: 1.6rem; }
.icon-wrap.xl { width: 86px; height: 86px; border-radius: 22px; font-size: 2rem; }

/* Card background icon (large, centered in gradient headers) */
.card-bg-icon {
  font-size: 3.6rem; color: rgba(255,255,255,0.88);
  position: relative; z-index: 1;
}
.card-bg-icon.sm { font-size: 2.4rem; }

/* Inline text icons */
.inline-icon { margin-right: 6px; color: var(--teal); }
.inline-icon.green { color: var(--green); }

/* Stars (testimonials) */
.stars { display: flex; gap: 2px; margin-bottom: 12px; }
.stars i { color: #f5a623; font-size: 0.85rem; }

/* Step circles with FA check */
.step-circle.done i { font-size: 0.9rem; }

/* Footer social icons */
.footer-social a { font-size: 1.1rem; }

/* Feature check list */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; color: var(--dark);
}
.check-list li i { color: var(--green); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

/* Contact/info row icon */
.info-icon-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
}
.info-icon-row i { color: var(--teal); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 18px; }

/* ── Floating WhatsApp Button ───────────────── */
.wa-float {
  position: fixed !important;
  bottom: 20px !important;
  left: 24px !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
  animation: none;
  color: white;
}
.wa-float i { font-size: 1.5rem; flex-shrink: 0; }
.wa-float .wa-label { font-size: 0.88rem; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-block { padding: 44px 24px; }
  .section { padding: 64px 24px; }
  .steps-bar { flex-wrap: wrap; gap: 12px; }
  .step-connector { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Admin icon — always visible, links to admin panel */
.nav-admin-icon { display: inline-flex; }

/* Loading spinner */
@keyframes spin { to { transform: rotate(360deg); } }
