/* ===== MRA Grant Website - Main Stylesheet ===== */
/* Color Palette: Deep Red (#9B1B30), Black (#1A1A1A), Grey (#6B7280), Light Grey (#F3F4F6) */

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

:root {
  --red: #9B1B30;
  --red-dark: #7A1424;
  --red-light: #F9E4E8;
  --black: #1A1A1A;
  --grey-900: #111827;
  --grey-700: #374151;
  --grey-600: #4B5563;
  --grey-500: #6B7280;
  --grey-400: #9CA3AF;
  --grey-300: #D1D5DB;
  --grey-200: #E5E7EB;
  --grey-100: #F3F4F6;
  --grey-50: #F9FAFB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--grey-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }

img { max-width: 100%; height: auto; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Header & Navigation --- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}

.header-top {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  text-align: center;
}

.header-top a { color: var(--white); font-weight: 500; }
.header-top a:hover { color: var(--red-light); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey-700);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--red); background: var(--grey-50); }
.nav-links a.active { color: var(--red); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem 0;
  z-index: 1001;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-radius: 0;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
  padding: 0.5rem;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #2D1F2F 50%, var(--red-dark) 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero[style*="background-image"]::after,
.page-hero[style*="background-image"]::after,
.page-hero-split[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(45,31,47,0.75) 50%, rgba(122,20,36,0.65) 100%);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155,27,48,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
  display: inline-block;
  background: rgba(155,27,48,0.2);
  border: 1px solid rgba(155,27,48,0.4);
  color: #FCA5A5;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: var(--red);
  display: inline;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual svg { max-width: 450px; width: 100%; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--grey-300);
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Section Styles --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--grey-50); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header .overline {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--grey-500); font-size: 1.05rem; }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.card p { color: var(--grey-500); font-size: 0.95rem; margin-bottom: 0; }

/* --- Stat Cards --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-top: 0.25rem;
}

/* --- Feature Grid --- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.feature-row.reverse { flex-direction: row-reverse; }
.feature-row .feature-content { flex: 1; }
.feature-row .feature-visual { flex: 1; }
.feature-row .feature-visual svg { width: 100%; max-width: 500px; }

/* --- Tables --- */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead { background: var(--black); color: var(--white); }
thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}

tbody td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.95rem;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--grey-50); }

/* --- Accordion / FAQ --- */
.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover { background: var(--grey-50); }

.accordion-header::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--red);
  font-weight: 700;
  transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
  content: '−';
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

.accordion-item.active .accordion-body { max-height: 1000px; }

/* --- Steps --- */
.steps { max-width: 700px; margin: 0 auto; }

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -2rem;
  width: 2px;
  background: var(--grey-200);
}

.step:last-child::before { display: none; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-content p { color: var(--grey-500); font-size: 0.95rem; margin-bottom: 0; }

/* --- Eligibility Checklist --- */
.checklist {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 1rem;
}

.checklist li:last-child { border-bottom: none; }

.check-icon {
  width: 28px;
  height: 28px;
  background: #DEF7EC;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Country Cards --- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
  color: inherit;
}

.country-card-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.country-card-body {
  padding: 1.25rem;
  text-align: center;
}

.country-card-body h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.country-card-body p { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-size: 2rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

/* --- Footer --- */
.site-footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 0.75rem; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }

/* --- Country Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2D1F2F 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .overline {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* --- Programme Box --- */
.programme-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 2rem 0;
}

.programme-box h2 { color: var(--white); }
.programme-box p { color: rgba(255,255,255,0.9); }

/* --- Info Box --- */
.info-box {
  background: var(--grey-50);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box p { margin-bottom: 0; font-size: 0.95rem; }

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.75rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

/* --- Inline SVG Icons --- */
.icon-sm {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-md {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-lg {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 1rem;
}

.card-icon svg, .icon-sm svg, .icon-md svg, .icon-lg svg {
  width: 100%;
  height: 100%;
}

/* --- Content Grid (for about page etc.) --- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.content-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* --- Budget Announcement Cards --- */
.budget-announcement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.announcement-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.announcement-card.highlight {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.announcement-card.highlight h3,
.announcement-card.highlight p { color: var(--white); }

.announcement-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.announcement-card .small-text { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 0; }
.announcement-card.highlight .small-text { color: rgba(255,255,255,0.8); }

/* --- Scope Grid --- */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.scope-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.scope-card .scope-icon { font-size: 2rem; margin-bottom: 1rem; }
.scope-card h3 { margin-bottom: 0.75rem; }

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* --- Benefit Cards --- */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-card .benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--grey-500); font-size: 0.95rem; margin-bottom: 0; }

/* --- Exclusion Cards --- */
.exclusion-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.exclusion-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--red); }
.exclusion-card p { font-size: 0.95rem; color: var(--grey-500); margin-bottom: 0; }

/* --- Eligibility Checklist (alt) --- */
.eligibility-checklist {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.check-item:last-child { border-bottom: none; }

/* --- CTA Section --- */
.cta-section { text-align: center; margin-top: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Section Highlight --- */
.section-highlight { background: var(--grey-50); padding: 5rem 0; }

/* --- Country Flag Icon (replaces emoji) --- */
.flag-icon {
  width: 20px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 2px;
  border: 1px solid var(--grey-200);
}

/* --- Page Hero with Image --- */
.page-hero-split {
  background: linear-gradient(135deg, var(--black) 0%, #2D1F2F 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero-split .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-split .hero-content { flex: 1; }
.page-hero-split .hero-visual { flex: 1; display: flex; justify-content: center; }
.page-hero-split .hero-visual svg { max-width: 400px; width: 100%; }
.page-hero-split h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-split p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

@media (max-width: 968px) {
  .page-hero-split .container { flex-direction: column; text-align: center; }
}

/* --- Floating WhatsApp alt class --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.75rem;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

.floating-whatsapp svg { width: 28px; height: 28px; }

/* --- Data Table (alt class) --- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead { background: var(--black); color: var(--white); }
.data-table th { padding: 1rem 1.25rem; text-align: left; font-size: 0.9rem; font-weight: 600; }
.data-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--grey-200); font-size: 0.95rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover { background: var(--grey-50); }

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2.25rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 1rem; }
  .hero h1 { font-size: 1.85rem; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
