/* ============================================
   INDEX.CSS - Twelve & Beyond Landing Page
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --text-muted: #6b7a7a;
  --accent-green: #2d6a4f;
  --accent-coral: #FF6B35;
  --gold-light: #FBC02D;
}

/* ============================================
   NEWS TICKER
   ============================================ */
.news-ticker {
  background: var(--ink);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--gold);
  z-index: 5;
}

.news-ticker .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-ticker .label {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s ease-in-out infinite;
}

.news-ticker .ticker-track {
  overflow: hidden;
  flex: 1;
  height: 28px;
  position: relative;
}

.news-ticker .ticker-items {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.news-ticker .ticker-items span {
  padding-right: 60px;
  color: #dcefef;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-ticker .ticker-items span i {
  color: var(--gold);
}

.news-ticker .ticker-items span strong {
  color: #fff;
  font-weight: 600;
}

.news-ticker .ticker-items a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-ticker .ticker-items a:hover {
  color: var(--gold-light);
}

/* ============================================
   NAVIGATION - DESKTOP
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 249, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.nav .brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-fast);
  white-space: nowrap;
  padding-left: 4px;
  z-index: 1002;
  position: relative;
}

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

.nav .brand i {
  font-size: 26px;
  color: var(--gold);
}

.nav .brand em {
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 500;
}

/* ============================================
   HAMBURGER TOGGLE - DESKTOP (hidden)
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  flex-shrink: 0;
  z-index: 1002;
  line-height: 1;
  position: relative;
  pointer-events: auto;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   NAV LINKS - DESKTOP
   ============================================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links > li > a {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  background: rgba(77, 184, 184, 0.1);
  color: var(--teal-deep);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.nav-links .nav-cta:hover {
  background: #E7B55A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   DROPDOWN - DESKTOP
   ============================================ */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .dropdown-arrow {
  font-size: 10px;
  transition: transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.nav-item-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
  pointer-events: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: all var(--transition-fast);
  color: var(--ink);
}

.nav-dropdown-menu li a:hover {
  background: var(--paper);
  color: var(--teal-deep);
}

.nav-dropdown-menu li a i {
  width: 18px;
  color: var(--gold);
  text-align: center;
}

.nav-close-btn {
  display: none;
}

/* ============================================
   NAV OVERLAY - DESKTOP (hidden)
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 35, 39, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   MOBILE NAVIGATION - COMPLETE OVERRIDE
   ============================================ */
@media (max-width: 768px) {
  /* Show hamburger on mobile */
  .nav-toggle {
    display: block !important;
    pointer-events: auto !important;
  }

  /* Mobile nav links - slide in from right */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--paper-raised);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    display: flex !important;
    pointer-events: none;
  }

  /* CRITICAL FIX: When .open class is added, slide in */
  .nav-links.open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  .nav-links > li > a {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .nav-links > li > a:hover {
    background: var(--paper);
  }

  /* Close button inside mobile menu */
  .nav-close-btn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    z-index: 1002;
  }

  .nav-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none;
    border-left: 2px solid var(--line);
    margin-left: 16px;
    margin-top: 4px;
    padding: 4px 0;
    display: none;
    background: transparent;
    pointer-events: auto !important;
    width: 100%;
  }

  .nav-item-dropdown.open .nav-dropdown-menu,
  .nav-item-dropdown:hover .nav-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-item-dropdown .dropdown-arrow {
    margin-left: auto;
  }

  /* Mobile overlay */
  .nav-overlay {
    z-index: 1000;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Apply Now button on mobile */
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Hero adjustments */
  .hero-carousel {
    height: 420px;
    border-radius: 0 0 24px 24px;
  }

  .hero-carousel .slide .overlay {
    padding: 28px 32px;
  }

  .hero-carousel .slide .overlay h1 {
    font-size: 26px;
  }

  .hero-carousel .slide .overlay p {
    font-size: 15px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    margin: -30px auto 30px;
    padding: 20px;
  }

  .stat-item .number {
    font-size: 28px;
  }

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

  .news-card .img-placeholder {
    height: 160px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-ticker .wrap {
    flex-wrap: wrap;
  }

  .news-ticker .ticker-track {
    width: 100%;
    order: 2;
  }
}

/* ============================================
   SMALL PHONES
   ============================================ */
@media (max-width: 480px) {
  .hero-carousel .slide .overlay {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .hero-carousel .slide .overlay h1 {
    font-size: 22px;
  }

  .hero-carousel .slide .overlay p {
    font-size: 14px;
  }

  .alert-card {
    padding: 18px 20px;
  }

  .wa-cta {
    padding: 24px;
  }

  .wa-cta h3 {
    font-size: 22px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
  }

  .stat-item .number {
    font-size: 24px;
  }

  .stat-item .icon {
    font-size: 24px;
  }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  background: var(--ink);
  z-index: 1;
}

.hero-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-carousel .slide.active {
  opacity: 1;
}

.hero-carousel .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 35, 39, 0.65), rgba(18, 35, 39, 0.3));
  z-index: 1;
}

.hero-carousel .slide .overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  padding: 48px 56px;
  border-radius: var(--radius-xl);
  max-width: 680px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
  animation: slideInLeft 0.8s var(--transition-slow);
}

.hero-carousel .slide .overlay .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.hero-carousel .slide .overlay h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-carousel .slide .overlay h1 em {
  color: var(--gold);
  font-style: italic;
  position: relative;
}

.hero-carousel .slide .overlay h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: var(--radius-full);
}

.hero-carousel .slide .overlay p {
  color: #dcefef;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .slide .overlay .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.hero-carousel .slide .overlay .btn:hover {
  background: #E7B55A;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-carousel .slide .overlay .btn i {
  transition: transform var(--transition-fast);
}

.hero-carousel .slide .overlay .btn:hover i {
  transform: translateX(4px);
}

/* Slide backgrounds */
.slide-occupational {
  background: 
    linear-gradient(135deg, rgba(10, 61, 98, 0.85), rgba(26, 107, 138, 0.8)),
    url('../assets/images/hero-occupational.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.slide-nsfas {
  background: 
    linear-gradient(135deg, rgba(249, 168, 37, 0.85), rgba(251, 192, 45, 0.8)),
    url('../assets/images/hero-nsfas.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.slide-universities {
  background: 
    linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(46, 125, 140, 0.8)),
    url('../assets/images/hero-universities.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.slide-bursaries {
  background: 
    linear-gradient(135deg, rgba(45, 106, 79, 0.85), rgba(64, 145, 108, 0.8)),
    url('../assets/images/hero-bursaries.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Fallback colors */
.slide-occupational { background-color: #0a3d62; }
.slide-nsfas { background-color: #f9a825; }
.slide-universities { background-color: #1a3a5c; }
.slide-bursaries { background-color: #2d6a4f; }

/* Slide-specific badge colors */
.slide-occupational .overlay .badge { background: #FF6B35; color: #fff; }
.slide-nsfas .overlay .badge { background: #fff; color: #0a3d62; }
.slide-universities .overlay .badge { background: #fff; color: #1a3a5c; }
.slide-bursaries .overlay .badge { background: #fff; color: #2d6a4f; }

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  position: relative;
}

.carousel-dots button::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.carousel-dots button.active {
  border-color: var(--gold);
}

.carousel-dots button.active::after {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-dots button:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.carousel-dots button:hover::after {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: -40px auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  width: min(1000px, 92vw);
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item .icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   ALERTS / NOTICE BOARD
   ============================================ */
.alerts-section {
  padding: 20px 0 60px;
}

.alerts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.alert-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.alert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
  transition: width var(--transition-fast);
}

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

.alert-card:hover::before {
  width: 6px;
}

.alert-card.urgent::before { background: #c62828; }
.alert-card.warning::before { background: #e6a817; }
.alert-card.info::before { background: var(--teal-deep); }
.alert-card.success::before { background: var(--accent-green); }

.alert-card .icon {
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--paper);
}

.alert-card .icon.urgent { color: #c62828; background: rgba(198, 40, 40, 0.1); }
.alert-card .icon.info { color: var(--teal-deep); background: rgba(26, 107, 138, 0.1); }
.alert-card .icon.success { color: var(--accent-green); background: rgba(45, 106, 79, 0.1); }
.alert-card .icon.warning { color: #e6a817; background: rgba(230, 168, 23, 0.1); }

.alert-card .content {
  flex: 1;
}

.alert-card .content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.alert-card .content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.alert-card .content a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alert-card .content a:hover {
  color: var(--ink);
}

.alert-card .content .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.tag-deadline { background: rgba(198, 40, 40, 0.12); color: #c62828; }
.tag-update { background: rgba(26, 107, 138, 0.12); color: #1a6b8a; }
.tag-announcement { background: rgba(217, 164, 65, 0.15); color: #8a6a1a; }
.tag-new { background: rgba(45, 106, 79, 0.12); color: var(--accent-green); }

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 40px 0 60px;
}

.news-section .section-head {
  margin-bottom: 32px;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.news-section .eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.news-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.news-section .section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.news-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow var(--transition-fast);
}

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

.news-card:hover::after {
  box-shadow: 0 0 0 2px var(--teal);
}

/* News card images */
.news-card .img-placeholder {
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.news-card .img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}

.news-card.tvet .img-placeholder {
  background-image: url('../assets/images/news-tvet.jpg');
  background-size: cover;
  background-position: center;
}

.news-card.nsfas .img-placeholder {
  background-image: url('../assets/images/news-nsfas.jpg');
  background-size: cover;
  background-position: center;
}

.news-card.universities .img-placeholder {
  background-image: url('../assets/images/news-universities.jpg');
  background-size: cover;
  background-position: center;
}

.news-card.bursaries .img-placeholder {
  background-image: url('../assets/images/news-bursaries.jpg');
  background-size: cover;
  background-position: center;
}

/* Fallback colors */
.news-card.tvet .img-placeholder { background-color: #2d6a4f; }
.news-card.nsfas .img-placeholder { background-color: #f9a825; }
.news-card.universities .img-placeholder { background-color: #1a3a5c; }
.news-card.bursaries .img-placeholder { background-color: #8a6a1a; }

.news-card .img-placeholder i {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.news-card .body {
  padding: 22px 24px 24px;
}

.news-card .body .category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  background: rgba(217, 164, 65, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.news-card .body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}

.news-card .body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.news-card .body .meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.news-card .body .meta i {
  margin-right: 6px;
  color: var(--gold);
}

.news-card .body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--teal-deep);
  margin-top: 14px;
  transition: all var(--transition-fast);
}

.news-card .body .read-more:hover {
  color: var(--ink);
  gap: 12px;
}

/* ============================================
   WHATSAPP CTA
   ============================================ */
.wa-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.wa-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.wa-cta h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-cta h3 i {
  font-size: 32px;
}

.wa-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
}

.wa-cta .btn {
  background: #fff;
  color: #128C7E;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.wa-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.wa-cta .btn i {
  font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
#mainFooter {
  background: var(--ink);
  color: #CFE0DF;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

#mainFooter h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#mainFooter h5 i {
  color: var(--gold);
}

#mainFooter p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

#mainFooter .slogan {
  font-style: italic;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#mainFooter ul li {
  margin-bottom: 10px;
}

#mainFooter ul li a {
  font-size: 14px;
  color: #CFE0DF;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

#mainFooter ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

#mainFooter ul li a i {
  font-size: 12px;
  color: var(--gold);
}

.foot-bottom {
  border-top: 1px solid rgba(207, 224, 223, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(207, 224, 223, 0.7);
}

.foot-bottom i {
  margin-right: 6px;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
}

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

.toast i {
  color: var(--gold);
  font-size: 18px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .alerts-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-carousel .slide .overlay {
    padding: 36px 40px;
    max-width: 90%;
  }

  .wa-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .wa-cta h3 {
    justify-content: center;
  }

  .wa-cta p {
    max-width: 100%;
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}