/* ==========================================================================
   RELOADMEE.COM - MODERN MULTI-RECHARGE PLATFORM
   Design System & Main Stylesheet
   Theme: Red & White Modern Fintech Aesthetic
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Red Palette */
  --primary: #e50914;
  --primary-rgb: 229, 9, 20;
  --primary-hover: #c40812;
  --primary-dark: #8b0008;
  --primary-light: #ff4757;
  --primary-gradient: linear-gradient(135deg, #ff1e27 0%, #c40812 100%);
  --primary-gradient-subtle: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  --primary-glow: 0 10px 30px rgba(229, 9, 20, 0.28);
  --primary-glow-lg: 0 18px 45px rgba(229, 9, 20, 0.38);

  /* Neutrals (Crisp Whites & Balanced Grays) */
  --white: #ffffff;
  --bg-page: #ffffff;
  --bg-surface: #ffffff;
  --bg-subtle: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.96);
  --border-light: rgba(226, 232, 240, 0.85);
  --border-red: rgba(229, 9, 20, 0.15);
  --border-red-focus: rgba(229, 9, 20, 0.5);

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Accent & Status Colors */
  --accent-green: #10b981;
  --accent-blue: #3b82f6;
  --accent-amber: #f59e0b;

  /* Typography Settings */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 12px 16px -8px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-red-card: 0 15px 35px -5px rgba(229, 9, 20, 0.12);

  /* Transitions & Border Radii */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease-in-out;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Container */
  --container-width: 1240px;
  --header-height: 115px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  padding-top: var(--header-height);
}

/* Red ambient light background accents */
body::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100vw;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  top: 900px;
  left: 0;
  max-width: 100vw;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-body);
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Section Formatting --- */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-red-gradient {
  background: linear-gradient(135deg, #e50914 0%, #a8000a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(229, 9, 20, 0.08);
  color: var(--primary);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-tag-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title-white {
  color: var(--white);
}

.section-title-white span {
  color: #ffd6d8;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-desc-white {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Buttons & Action Triggers --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--primary-glow);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--border-red);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(229, 9, 20, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: #1e293b;
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
}

.btn-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.btn-img-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

/* ==========================================================================
   NAVIGATION BAR (nav_bar.php)
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 9, 20, 0.08);
}

.navbar-wrapper.scrolled {
  height: 82px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(229, 9, 20, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  text-decoration: none;
}

.nav-brand-logo {
  height: 95px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-wrapper.scrolled .nav-brand-logo {
  height: 68px;
}

.nav-brand-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-icon-badge {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--primary-glow);
}

.brand-text-red {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.nav-login-btn:hover {
  background: rgba(229, 9, 20, 0.06);
  border-color: var(--border-red);
  color: var(--primary);
}

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 0.92rem;
}

/* Mobile Nav Toggle Button */
.nav-toggle {
  display: none;
  background: rgba(229, 9, 20, 0.08);
  border: 1.5px solid var(--border-red);
  font-size: 1.35rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  line-height: 1;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--primary-glow);
}

/* Mobile Drawer (Full Width) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1100;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.mobile-brand-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.mobile-close-btn {
  background: #f1f5f9;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.mobile-close-btn:hover,
.mobile-close-btn:active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-nav-link {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-link-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-icon {
  color: var(--primary);
  width: 20px;
  font-size: 1.1rem;
  text-align: center;
}

.mobile-nav-chevron {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link.active {
  background: rgba(229, 9, 20, 0.08);
  border-color: rgba(229, 9, 20, 0.28);
  color: var(--primary);
  font-weight: 700;
}

.mobile-nav-link:hover .mobile-nav-chevron,
.mobile-nav-link.active .mobile-nav-chevron {
  color: var(--primary);
  transform: translateX(3px);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border-light);
  flex-shrink: 0;
}

.mobile-action-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Agent Login Modal Overlay */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.login-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  border-top: 5px solid var(--primary);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-overlay.active .login-modal-card {
  transform: scale(1);
}

.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.login-modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-form-group {
  margin-bottom: 16px;
}

.modal-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.modal-form-group input:focus {
  border-color: var(--primary);
}

/* ==========================================================================
   TOP PROMOTIONAL BANNER SLIDER (Full Width)
   ========================================================================== */
.top-banner-slider-section {
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: transparent;
}

.banner-slider-wrapper {
  position: relative;
  width: 100%;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  user-select: none;
  touch-action: pan-y;
  outline: none;
}

.banner-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  outline: none;
}

.banner-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-slider-wrapper:hover .banner-slide-img {
  transform: scale(1.012);
}

/* Prev/Next Navigation Arrows */
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(229, 9, 20, 0.15);
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.88;
}

.banner-nav-btn:hover,
.banner-nav-btn:focus-visible {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--primary-glow-lg);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.banner-prev {
  left: 18px;
}

.banner-next {
  right: 18px;
}

/* Bottom Pagination Indicators */
.banner-dots-container {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  z-index: 15;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.banner-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.95);
}

.banner-dot.active {
  width: 28px;
  background: var(--primary-gradient);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.9);
}

/* Subtle Progress Bar */
.banner-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 16;
  overflow: hidden;
}

.banner-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 35px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.08);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.4);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.hero-title .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(229, 9, 20, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.trust-item-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.trust-item-text span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Quick Recharge Calculator & Live Preview Widget --- */
.hero-widget-wrapper {
  position: relative;
  z-index: 2;
}

.recharge-widget {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(229, 9, 20, 0.16);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl), var(--shadow-red-card);
  position: relative;
}

.widget-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--primary-glow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget-header {
  margin-bottom: 22px;
}

.widget-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.widget-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--bg-subtle);
  padding: 5px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.widget-tab {
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.widget-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.calc-form-group {
  margin-bottom: 18px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.calc-input,
.calc-select {
  width: 100%;
  padding: 13px 14px 13px 44px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(229, 9, 20, 0.12);
}

.amount-quick-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.amount-tag {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.amount-tag:hover {
  background: rgba(229, 9, 20, 0.08);
  border-color: var(--border-red);
  color: var(--primary);
}

.calc-summary-box {
  background: var(--primary-gradient-subtle);
  border: 1.5px dashed var(--border-red);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-summary-item {
  display: flex;
  flex-direction: column;
}

.calc-summary-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.calc-summary-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.calc-summary-value.earn {
  color: var(--accent-green);
}

.calc-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ==========================================================================
   PARTNERS / OPERATORS TICKER
   ========================================================================== */
.ticker-section {
  padding: 45px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scroll-right-to-left 42s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.operator-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.operator-chip img {
  height: 90px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.2s ease;
}

.operator-chip:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-md), var(--shadow-red-card);
  color: var(--primary);
  transform: translateY(-3px);
}

.operator-chip:hover img {
  transform: scale(1.06);
}

.operator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-dialog { background: #e50914; }
.dot-mobitel { background: #0070ba; }
.dot-airtel { background: #ff0000; }
.dot-hutch { background: #ff7700; }
.dot-ceb { background: #f59e0b; }
.dot-water { background: #06b6d4; }
.dot-slt { background: #10b981; }
.dot-tv { background: #8b5cf6; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(229, 9, 20, 0.07);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--primary-glow);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.38rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-pill {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-body);
}

/* ==========================================================================
   APP SHOWCASE & DOWNLOAD SECTION (Special Attention)
   ========================================================================== */
.app-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.app-info {
  position: relative;
  z-index: 2;
}

.app-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 40px;
}

.app-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.app-hl-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.app-hl-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.app-hl-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Download Buttons & QR Code Card */
.download-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  max-width: 450px;
  width: 100%;
}

.download-store-btn {
  flex: 1 1 calc(50% - 7px);
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  box-sizing: border-box;
}

.download-store-btn:hover {
  background: #1e293b;
  border-color: var(--primary);
  color: var(--white);
  transform: none;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.store-btn-icon {
  font-size: 1.9rem;
}

.store-btn-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.store-btn-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.direct-apk-btn {
  background: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.15);
}

.qr-download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px dashed var(--border-red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 450px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-sizing: border-box;
}

.qr-download-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: none;
}

.qr-code-box {
  width: 105px;
  height: 105px;
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.qr-code-box img,
.qr-code-box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-info-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.qr-info-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Smartphone Mockup Showcase Container --- */
.app-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.mockup-glow-ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Smartphone Device Frame */
.phone-mockup {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 640px;
  background: #0d1117;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 35px 70px -15px rgba(15, 23, 42, 0.4),
              0 0 0 3px #2d3748,
              0 0 0 7px #1a202c,
              0 20px 45px rgba(229, 9, 20, 0.2);
  transform: rotate(-3deg) translateY(-8px);
  transition: var(--transition);
}

.phone-mockup:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.02);
  box-shadow: 0 45px 90px -15px rgba(15, 23, 42, 0.45),
              0 0 0 3px var(--primary),
              0 0 0 8px #1a202c,
              0 25px 60px rgba(229, 9, 20, 0.35);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: #000000;
  border-radius: var(--radius-full);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.camera-lens {
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
  border: 1px solid #1e293b;
}

.speaker-mesh {
  width: 24px;
  height: 3px;
  background: #1e293b;
  border-radius: 2px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Glass Screen Sheen Overlay */
.phone-screen-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 15;
  border-radius: inherit;
}

/* App Screen Carousel Slider */
.mockup-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.mockup-slider.is-dragging {
  cursor: grabbing;
}

.mockup-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.mockup-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* In-Phone Navigation Overlay Arrows */
.mockup-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 18;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-mockup:hover .mockup-nav-btn {
  opacity: 0.85;
}

.mockup-nav-btn:hover {
  opacity: 1 !important;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.mockup-nav-prev {
  left: 10px;
}

.mockup-nav-next {
  right: 10px;
}

/* Bottom Footer Overlay with Live Screen Badge & Dots */
.mockup-screen-footer {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 18;
  pointer-events: none;
}

.mockup-screen-badge {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  max-width: 92%;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.badge-pulse-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.mockup-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.mockup-badge-counter {
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  padding: 1px 5px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Pagination Dots inside Phone */
.mockup-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  pointer-events: auto;
}

.mockup-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mockup-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.mockup-dot.active {
  width: 16px;
  border-radius: 3px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
}

/* Android/iOS Home Indicator Line */
.phone-home-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  z-index: 19;
  pointer-events: none;
}

/* Secondary Floating Card next to Phone */
.mockup-floating-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-red);
  box-shadow: var(--shadow-lg), var(--shadow-red-card);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.badge-pos {
  bottom: 60px;
  right: -30px;
}

.badge-speed {
  top: 60px;
  left: -25px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--primary-glow);
}

.floating-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.floating-sub {
  font-size: 0.76rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.feature-icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-box:hover .feature-icon-circle {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--primary-glow);
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

/* ==========================================================================
   HOW IT WORKS (3 Simple Steps)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 38px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.step-number-badge {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--primary-glow);
}

.step-icon-wrap {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   AGENT COMMISSION PLANS
   ========================================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--shadow-red-card);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--primary-glow);
}

.plan-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.plan-tier-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-commission-rate {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.plan-commission-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-body);
}

.plan-check-icon {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.plan-action-btn {
  width: 100%;
}

/* ==========================================================================
   STATISTICS COUNTER SECTION
   ========================================================================== */
.stats-section {
  padding: 70px 0;
  background: var(--primary-gradient);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-red);
  box-shadow: var(--shadow-md), var(--shadow-red-card);
}

.faq-question {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-dark);
  user-select: none;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 26px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

/* ==========================================================================
   CALL TO ACTION BANNER (CTA)
   ========================================================================== */
.cta-box {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--primary-glow-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0b0f19;
  color: #94a3b8;
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-item a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* ==========================================================================
   TOAST NOTIFICATION / MODAL
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .app-highlights-list {
    text-align: left;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .download-buttons-group {
    justify-content: center;
  }

  .qr-download-card {
    margin: 0 auto;
  }

  .steps-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-8px);
  }

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

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

@media (max-width: 992px) {
  :root {
    --header-height: 76px;
  }

  .navbar-wrapper {
    height: var(--header-height);
  }

  .navbar-wrapper.scrolled {
    height: 68px;
  }

  .navbar-wrapper .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    max-width: 75%;
  }

  .nav-brand-logo {
    height: 48px;
    max-height: 48px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
  }

  .navbar-wrapper.scrolled .nav-brand-logo {
    height: 42px;
    max-height: 42px;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-actions .nav-login-btn,
  .nav-actions .nav-cta-btn {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(229, 9, 20, 0.08);
    border: 1.5px solid var(--border-red);
    color: var(--primary);
    flex-shrink: 0;
    cursor: pointer;
  }

  .top-banner-slider-section {
    padding: 0;
  }

  .banner-slider-wrapper {
    border-radius: 0;
  }

  .banner-slide-img {
    width: 100%;
    height: auto;
  }

  .banner-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .banner-prev {
    left: 8px;
  }

  .banner-next {
    right: 8px;
  }

  .banner-dots-container {
    bottom: 10px;
    padding: 4px 10px;
    gap: 6px;
  }

  .banner-dot {
    width: 7px;
    height: 7px;
  }

  .banner-dot.active {
    width: 22px;
  }

  .section {
    padding: 65px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-box {
    padding: 45px 24px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .navbar-wrapper.scrolled {
    height: 64px;
  }

  .navbar-wrapper .container {
    padding: 0 12px;
  }

  .nav-brand-logo {
    height: 40px;
    max-height: 40px;
    max-width: 140px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.2rem;
  }

  .top-banner-slider-section {
    padding: 0;
  }

  .banner-slider-wrapper {
    border-radius: 0;
  }

  .banner-slide-img {
    width: 100%;
    height: auto;
  }

  .banner-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    opacity: 0.75;
  }

  .hero-title {
    font-size: 2rem;
  }

  .app-highlights-list {
    grid-template-columns: 1fr;
  }

  .recharge-widget {
    padding: 24px 18px;
  }

  .phone-mockup {
    width: 290px;
    height: 590px;
  }

  .badge-pos {
    right: -10px;
    bottom: 30px;
  }

  .badge-speed {
    left: -10px;
    top: 30px;
  }

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

/* ==========================================================================
   AGENT REGISTRATION PORTAL STYLES
   ========================================================================== */
.register-page-body {
  background-color: #f8fafc;
  min-height: 100vh;
}

.register-main-wrapper {
  padding-bottom: 80px;
}

.register-hero {
  padding: 45px 0 35px;
  background: radial-gradient(circle at 50% -20%, rgba(229, 9, 20, 0.09) 0%, rgba(248, 250, 252, 0) 70%);
  text-align: center;
}

.register-hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.register-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 16px 0 14px;
}

.register-hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.register-benefit-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.benefit-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-xs);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.benefit-strip-item .benefit-icon {
  color: var(--primary);
  font-size: 0.95rem;
}

/* Main Form Card */
.register-card-container {
  max-width: 960px;
  margin: 0 auto;
}

.register-main-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 14px;
}

.card-header-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.header-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
  background: var(--primary-gradient-subtle);
  border: 1.5px solid var(--border-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 2px;
}

.card-header-title h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.card-header-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.required-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.required-note .star {
  color: var(--primary);
  font-weight: 700;
}

/* Sections */
.form-section-block {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(241, 245, 249, 0.9);
}

.form-section-block:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
  padding-bottom: 0;
}

.section-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.section-number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px;
  max-height: 28px;
  flex: 0 0 28px;
  aspect-ratio: 1 / 1;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-title .si-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.section-intro-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Form Inputs Grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}

.form-group-field .input-with-icon {
  margin-top: auto;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-label .si-label {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-label .req {
  color: var(--primary);
  margin-left: 2px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-with-icon .field-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  z-index: 10 !important;
  pointer-events: none !important;
  transition: var(--transition-fast);
}

.form-control-input {
  width: 100%;
  height: 48px;
  padding: 10px 14px 10px 42px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}

.form-control-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(229, 9, 20, 0.12);
}

.form-control-input:focus + .field-icon,
.input-with-icon:focus-within .field-icon {
  color: var(--primary);
}

.form-select-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}

.field-hint {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-error-msg {
  font-size: 0.8rem;
  color: #dc2626;
  min-height: 16px;
  font-weight: 500;
}

.form-group-field.has-error .form-control-input,
.upload-box-card.has-error {
  border-color: #dc2626 !important;
  background-color: rgba(220, 38, 38, 0.02);
}

/* ==========================================================================
   SELECT2 CUSTOM MODERN FINTECH STYLING
   ========================================================================== */
.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 48px !important;
  padding: 8px 14px 8px 42px !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  background-color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  transition: var(--transition) !important;
  position: relative !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3.5px rgba(229, 9, 20, 0.12) !important;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-dark) !important;
  font-size: 0.95rem !important;
  font-family: var(--font-body) !important;
  line-height: normal !important;
  padding-left: 0 !important;
  padding-right: 25px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #94a3b8 !important;
  font-size: 0.92rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
  right: 12px !important;
  top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #64748b transparent transparent transparent !important;
  border-width: 6px 5px 0 5px !important;
  transition: transform 0.2s ease !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--primary) transparent !important;
  border-width: 0 5px 6px 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #94a3b8 !important;
  font-size: 1.1rem !important;
  margin-right: 24px !important;
  transition: color 0.15s ease !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  color: var(--primary) !important;
}

.select2-dropdown {
  border: 1.5px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15) !important;
  background-color: #ffffff !important;
  z-index: 1060 !important;
  overflow: hidden !important;
}

.select2-search--dropdown {
  padding: 10px !important;
  background: #f8fafc !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px 12px !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  outline: none !important;
  transition: var(--transition-fast) !important;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2.5px rgba(229, 9, 20, 0.12) !important;
}

.select2-results__option {
  padding: 10px 14px !important;
  font-size: 0.92rem !important;
  font-family: var(--font-body) !important;
  color: var(--text-dark) !important;
  transition: background-color 0.15s ease, color 0.15s ease !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(229, 9, 20, 0.08) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.form-group-field.has-error .select2-selection--single {
  border-color: #dc2626 !important;
  background-color: rgba(220, 38, 38, 0.02) !important;
}


.form-group-field.has-error .field-icon {
  color: #dc2626;
}

/* Document & Photo Upload Cards */
.upload-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.upload-box-card {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.upload-box-card:hover {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.upload-box-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.upload-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}

.upload-badge i {
  color: var(--primary);
}

.upload-title-si {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.upload-dropzone {
  flex: 1;
  min-height: 140px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
  border-color: var(--primary);
  background: rgba(229, 9, 20, 0.02);
}

.dropzone-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px;
  gap: 6px;
}

.upload-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  flex: 0 0 40px;
  aspect-ratio: 1 / 1;
  background: rgba(229, 9, 20, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
}

.dropzone-text {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.dropzone-sub {
  font-size: 0.72rem;
  color: var(--text-light);
}

.dropzone-preview {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.preview-thumbnail {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.preview-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.75rem;
}

.preview-filename {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-remove-file {
  background: #ef4444;
  color: #ffffff;
  border: none;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-remove-file:hover {
  background: #dc2626;
}

/* Submit Footer */
.form-submit-footer {
  margin-top: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.terms-checkbox-wrap {
  margin-bottom: 20px;
}

.custom-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.custom-check-label input {
  display: none;
}

.checkbox-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: var(--transition-fast);
  margin-top: 2px;
}

.custom-check-label input:checked + .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.terms-text {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.5;
}

.btn-submit-registration {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--primary-glow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-registration:hover {
  transform: translateY(-2px);
  box-shadow: var(--primary-glow-lg);
}

.form-security-badge {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-security-badge i {
  color: #10b981;
}

/* Alert Error Banner */
.alert-error-banner {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #b91c1c;
  font-size: 0.92rem;
  font-weight: 500;
}

.alert-error-banner .alert-icon {
  font-size: 1.2rem;
  color: #ef4444;
}

/* Success Card */
.register-success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.12);
  padding: 48px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.success-icon-wrapper {
  width: 76px;
  height: 76px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  animation: pulseSuccess 2s infinite ease-in-out;
}

@keyframes pulseSuccess {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

.tracking-badge-box {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.tracking-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.tracking-code {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--primary);
  letter-spacing: 1px;
}

.success-instruction-list {
  text-align: left;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.instruction-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.instruction-item i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 2px;
}

.instruction-item .fa-whatsapp {
  color: #25d366;
}

.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-whatsapp-direct {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-whatsapp-direct:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-home {
  background: #f1f5f9;
  color: var(--text-dark);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.btn-outline-home:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}

/* Responsive adjustments for Registration Page */
@media (max-width: 991px) {
  .register-main-card {
    padding: 28px 24px;
  }

  .upload-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .upload-dropzone {
    min-height: 120px;
  }
}

@media (max-width: 767px) {
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-header-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-header-title {
    align-items: flex-start;
    gap: 12px;
  }

  .header-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    max-width: 42px;
    max-height: 42px;
    flex: 0 0 42px;
    font-size: 1.15rem;
  }

  .card-header-title h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .card-header-sub {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .section-title-wrap {
    align-items: flex-start;
    gap: 10px;
  }

  .section-number {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    max-height: 26px;
    flex: 0 0 26px;
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .section-title {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .section-title .si-title {
    display: inline;
    font-size: 0.85rem;
  }

  .register-success-card {
    padding: 32px 20px;
  }

  .success-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-whatsapp-direct,
  .btn-outline-home {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT BUTTON (Bottom Right)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn:active {
  transform: scale(0.96);
}

/* Pulse Wave Animation */
.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: waPulse 2.2s infinite ease-out;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Tooltip Badge on Hover */
.floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   FLOATING CALL BUTTON (Mobile Only)
   ========================================================================== */
.floating-call-btn {
  display: none; /* Hidden on Desktop */
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.42), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-call-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-call-btn:active {
  transform: scale(0.96);
}

/* Pulse Wave Animation for Call Button */
.floating-call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: callPulse 2.2s infinite ease-out;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Subtle Phone Shake Animation */
.floating-call-btn i {
  animation: phoneRing 3s infinite ease-in-out;
}

@keyframes phoneRing {
  0%, 70%, 100% {
    transform: rotate(0deg);
  }
  74% {
    transform: rotate(-14deg);
  }
  78% {
    transform: rotate(14deg);
  }
  82% {
    transform: rotate(-10deg);
  }
  86% {
    transform: rotate(10deg);
  }
  90% {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
}

/* ==========================================================================
   ISLANDWIDE DISTRICT COVERAGE & INTERACTIVE SRI LANKA MAP
   ========================================================================== */
.coverage-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fdf2f2 50%, #ffffff 100%);
  padding: 28px 0 50px;
}

.coverage-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.coverage-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}

/* Map Visual Container (Clean Borderless Theme) */
.map-visual-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  position: relative;
}

.map-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.map-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.25);
  color: #dc2626;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.map-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary, #e50914);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.8);
  animation: pulseDot 2s infinite ease-in-out;
}

.map-svg-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: radial-gradient(circle at 48% 45%, #e6f3fc 0%, #d6ebf8 55%, #c5e0f3 100%);
  border-radius: 24px;
  border: 1px solid rgba(186, 217, 245, 0.9);
  box-shadow: 0 12px 32px rgba(14, 116, 144, 0.08), inset 0 0 50px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.sl-vector-map {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 530px;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.16)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.sl-district-path {
  fill: #edf3e8;
  stroke: #94a3b8;
  stroke-width: 0.9;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sl-district-path.is-active {
  fill: #edf3e8; /* Realistic Google Maps Natural Land/Terrain Color */
  stroke: #94a3b8;
  stroke-width: 0.95;
}

.sl-district-path:hover,
.sl-district-path.is-selected {
  fill: #fee2e2 !important; /* Soft warm highlight on selection */
  stroke: #ea4335 !important; /* Crisp Google Maps red boundary */
  stroke-width: 2.2px !important;
  filter: drop-shadow(0 2px 10px rgba(234, 67, 53, 0.4));
}

.sl-district-path.is-dimmed {
  opacity: 0.25;
  filter: grayscale(85%);
}

/* Location Pin Styling */
.sl-pin-group {
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sl-pin-group.inactive-pin {
  display: none;
}

.sl-pin-marker {
  transform-origin: 0px 0px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sl-pin-group:hover .sl-pin-marker,
.sl-pin-group.is-selected .sl-pin-marker {
  transform: scale(1.28) translateY(-4px);
}

.sl-pin-group.is-selected .sl-pin-body {
  stroke: #ffffff;
  stroke-width: 1.4;
  filter: drop-shadow(0 0 10px rgba(234, 67, 53, 0.95)) drop-shadow(0 5px 8px rgba(0,0,0,0.55));
}

.sl-pin-group.is-selected .sl-pin-base-dot {
  stroke: var(--primary);
  stroke-width: 2.4;
}

.sl-pin-ripple {
  fill: rgba(234, 67, 53, 0.35);
  transform-origin: center;
  pointer-events: none;
  animation: mapPinRipple 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.sl-pin-base-dot {
  pointer-events: none;
  transition: all 0.25s ease;
}

.sl-pin-body {
  cursor: pointer;
  transition: all 0.25s ease;
}

.sl-pin-inner-dot {
  pointer-events: none;
}

@keyframes mapPinRipple {
  0% {
    r: 4;
    opacity: 0.95;
  }
  100% {
    r: 22;
    opacity: 0;
  }
}

/* Map Bottom Legend */
.map-legend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.legend-item-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot-active {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #dc2626;
  box-shadow: 0 0 6px rgba(220, 38, 38, 0.5);
}

.legend-dot-inactive {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
}

/* Floating Interactive Tooltip */
.map-floating-tooltip {
  position: absolute;
  pointer-events: none;
  background: #0f172a;
  border: 1px solid rgba(229, 9, 20, 0.5);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(229, 9, 20, 0.2);
  color: #ffffff;
  font-size: 0.88rem;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
  white-space: nowrap;
}

.map-floating-tooltip.show {
  opacity: 1;
}

/* Coverage Info Sidebar Panel */
.coverage-info-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.coverage-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cov-kpi-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg, 16px);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cov-kpi-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-md);
}

.cov-kpi-num {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary, #e50914);
  line-height: 1.1;
}

.cov-kpi-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Province Filter Buttons */
.province-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cov-prov-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 6px 13px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cov-prov-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(229, 9, 20, 0.04);
}

.cov-prov-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

/* Active District Spotlight Card */
.spotlight-district-card {
  background: #ffffff;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl, 20px);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.08);
  position: relative;
  overflow: hidden;
}

.spotlight-card-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spotlight-district-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.spotlight-district-si {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.spotlight-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 22px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-body);
}

.spotlight-feature-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.spotlight-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md, 10px);
}

@media (max-width: 992px) {
  .coverage-main-grid {
    grid-template-columns: 1fr;
  }
}



