:root {
  --primary: #28a745;
  --primary-dark: #218838;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #343a40;
  --accent: #17a2b8;
  --border-radius: 8px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-purple: #91278e;
  --header-purple-light: #c503c2;
  --surface-color: #ffffff;
}

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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ===== HEADER STYLES ===== */
.top-header {
  background: linear-gradient(
    135deg,
    var(--header-purple) 0%,
    var(--header-purple-light) 100%
  );
  color: white;
  padding: 4px 0;
  font-size: 14px;
}

.top-header .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 16px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: #c3e6cb;
  transform: translateY(-2px);
}

.quote {
  font-style: italic;
  color: #ffffff;
}

/* Main Header */
.main-header {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a472a;
  letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: #f0f9f0;
  color: #1a472a;
}

.nav-link.active {
  font-weight: 600;
  background: #e8f5e9;
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: relative;
}

.dropdown-toggle-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: none;
  border: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-toggle-custom:hover {
  background: #f0f9f0;
  color: #1a472a;
}

.dropdown-content-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid #e9ecef;
}

.dropdown-menu-custom:hover .dropdown-content-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.dropdown-item-custom:hover {
  background: #f8f9fa;
  color: #1a472a;
  padding-left: 25px;
}

.dropdown-item-custom i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

/* User Account */
.user-account {
  position: relative;
}

.account-toggle-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: none;
  border: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.account-toggle-custom:hover {
  background: #f0f9f0;
  color: #1a472a;
}

.account-dropdown-custom {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid #e9ecef;
}

.user-account:hover .account-dropdown-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-header-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 16px;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 8px;
}

.account-header-custom i {
  font-size: 32px;
  color: var(--primary);
}

.account-header-custom strong {
  display: block;
  font-size: 14px;
  color: #333;
}

.account-header-custom small {
  display: block;
  font-size: 12px;
  color: #666;
}

.account-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.account-item-custom:hover {
  background: #f8f9fa;
  color: #1a472a;
  padding-left: 25px;
}

.account-item-custom i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

.account-divider-custom {
  height: 1px;
  background: #e9ecef;
  margin: 8px 20px;
}

/* Radio Button */
.radio-btn-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #c503c2 0%, #c503c2 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.radio-btn-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1ba87e 100%);
  color: white;
}

/* Mobile Toggle */
.mobile-toggle-custom {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-toggle-custom:hover {
  color: var(--primary);
}

/* ===== MOBILE NAVIGATION ===== */
.overlay-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay-custom.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-custom {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav-custom.active {
  right: 0;
}

.mobile-nav-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}

.mobile-logo-custom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo-img-custom {
  height: 30px;
  width: auto;
}

.mobile-nav-header-custom span {
  font-weight: 600;
  color: #1a472a;
}

.mobile-nav-close-custom {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-content-custom {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-user-section-custom {
  padding: 0 20px 20px;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 20px;
}

.mobile-user-info-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.mobile-user-info-custom i {
  font-size: 40px;
  color: var(--primary);
}

.mobile-user-info-custom strong {
  display: block;
  font-size: 14px;
  color: #333;
}

.mobile-user-info-custom small {
  display: block;
  font-size: 12px;
  color: #666;
}

.mobile-user-actions-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-btn-custom.outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.mobile-btn-custom:hover {
  opacity: 0.9;
}

.mobile-nav-links-custom {
  padding: 0 20px;
}

.mobile-nav-link-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  transition: var(--transition);
}

.mobile-nav-link-custom:last-child {
  border-bottom: none;
}

.mobile-nav-link-custom:hover,
.mobile-nav-link-custom.active {
  color: #1a472a;
  padding-left: 5px;
}

.mobile-nav-link-custom.active {
  font-weight: 600;
}

.mobile-nav-link-custom.radio {
  color: var(--primary);
  font-weight: 600;
}

.mobile-nav-link-custom i {
  width: 20px;
  text-align: center;
}

/* Mobile Dropdown */
.mobile-dropdown-custom {
  margin: 10px 0;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  overflow: hidden;
}

.mobile-dropdown-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 15px;
  color: #333;
}

.mobile-dropdown-header-custom i:first-child {
  width: 20px;
  text-align: center;
  margin-right: 12px;
}

.mobile-dropdown-header-custom i:last-child {
  transition: transform 0.3s ease;
}

.mobile-dropdown-custom.active .mobile-dropdown-header-custom i:last-child {
  transform: rotate(180deg);
}

.mobile-dropdown-content-custom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-custom.active .mobile-dropdown-content-custom {
  max-height: 300px;
}

.mobile-dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #666;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  transition: var(--transition);
}

.mobile-dropdown-item-custom:hover {
  background: #f8f9fa;
  color: #1a472a;
  padding-left: 20px;
}

.mobile-dropdown-item-custom i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

/* Mobile Footer */
.mobile-footer-custom {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
  text-align: center;
}

.mobile-social-custom {
  margin-bottom: 10px;
}

.mobile-social-custom a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #f0f9f0;
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-social-custom a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.mobile-copyright-custom {
  font-size: 12px;
  color: #666;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content .container-custom {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  padding: 10px 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  margin-top: 200px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: #2c3e50;
  font-size: 35px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-custom {
  padding: 10px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: #1a8703;
  border: 2px solid #1a8703;
}

.btn-outline-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Indicators */
.slider-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slider {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
  }

  .hero-content .container-custom {
    padding: 25px 30px;
    width: 85%;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 45vh;
    min-height: 300px;
    max-height: 400px;
  }

  .hero-content .container-custom {
    padding: 20px;
    width: 90%;
    backdrop-filter: blur(2px);
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-custom {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 10px 20px;
  }

  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 40vh;
    min-height: 250px;
    max-height: 350px;
  }

  .hero-content .container-custom {
    padding: 15px;
    width: 95%;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .btn-custom {
    padding: 8px 16px;
    font-size: 14px;
  }

  .slider-prev,
  .slider-next {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 10px 20px 40px;
  background: white;
}

.section-title {
  text-align: center;
  margin: 0px auto 50px;
  max-width: 800px;
  /* padding: 0 20px; */
}

.section-title h2 {
  font-size: 32px;
  color: #1a472a;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--light);
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--secondary);
  margin-bottom: 20px;
}

.feature-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.feature-link i {
  margin-top: 5px;
}

.feature-link:hover {
  gap: 12px;
}

/* ===== NOTIFICATION BANNER ===== */
.notification-banner {
  position: fixed;
  right: -350px;
  bottom: 20px;
  background-color: #ffffff;
  border: 2px solid #4caf50;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  width: 350px;
  border-radius: 10px;
  transition:
    right 0.8s ease-in-out,
    opacity 0.8s ease-in-out;
  opacity: 0;
  z-index: 9999;
  font-family: "Arial", sans-serif;
}

.notification-banner.active {
  right: 20px;
  opacity: 1;
}

.notification-banner .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.notification-banner .close-btn:hover {
  color: #333;
}

.notification-banner-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.chief-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--header-purple);
  object-fit: cover;
}

.chief-message strong {
  font-size: 16px;
  color: var(--header-purple);
  display: block;
  margin-bottom: 5px;
}

.chief-name {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  font-weight: bold;
}

.chief-quote {
  font-size: 14px;
  color: #555;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 40px 20px;
  /* background: var(--light); */
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--dark);
}

.about-text h3 {
  font-size: 20px;
  color: #1d8b36;
  margin-bottom: 10px;
}

.about-list {
  list-style: none;
  margin: 15px 0;
}

.about-list li {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-list i {
  color: var(--primary);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a472a 0%, #2e8b57 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 auto 50px;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(26, 71, 42, 0.2);
}

.statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.05"><path fill="%23ffffff" d="M100,0C44.8,0,0,44.8,0,100s44.8,100,100,100s100-44.8,100-100S155.2,0,100,0z M100,180c-44.1,0-80-35.9-80-80s35.9-80,80-80 s80,35.9,80,80S144.1,180,100,180z"/></svg>');
  background-size: 120px;
  animation: float 30s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-120px) rotate(360deg);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-square {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.stat-square:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(195, 230, 203, 0.3);
}

.stat-square-icon {
  font-size: 32px;
  color: #c3e6cb;
  margin-bottom: 15px;
  transition: var(--transition);
}

.stat-square:hover .stat-square-icon {
  transform: scale(1.1);
  color: white;
}

.stat-square-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: "Arial", sans-serif;
  color: white;
  transition: var(--transition);
}

.stat-square:hover .stat-square-number {
  transform: scale(1.05);
}

.stat-square-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
  max-width: 120px;
  margin: 0 auto;
}

/* ===== RADIO SECTION ===== */
.radio-visual {
  max-width: 1250px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.radio-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.radio-left {
  text-align: center;
  padding: 20px 0;
}

.radio-icon {
  position: relative;
  margin-bottom: 25px;
}

.radio-icon i {
  font-size: 60px;
  color: var(--header-purple);
}

.frequency {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.radio-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-stats div {
  padding: 15px;
  background: rgba(145, 39, 142, 0.05);
  border-radius: 8px;
}

.radio-stats strong {
  display: block;
  font-size: 24px;
  color: var(--header-purple);
  margin-bottom: 5px;
}

.radio-stats span {
  color: #666;
  font-size: 14px;
}

.radio-right h3 {
  font-size: 22px;
  color: var(--header-purple);
  margin-bottom: 15px;
}

.radio-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.radio-right p i {
  color: var(--primary);
  margin-top: 3px;
}

.radio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.radio-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(145, 39, 142, 0.05);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
}

.radio-features i {
  color: var(--primary);
}

.radio-buttons {
  display: flex;
  gap: 15px;
}

.btn-radio-custom {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-radio-custom {
  background: var(--primary);
  color: white;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.2);
}

.btn-radio-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-radio-custom.outline {
  background: white;
  color: var(--header-purple);
  border: 2px solid var(--header-purple);
}

.btn-radio-custom.outline:hover {
  background: var(--header-purple);
  color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--header-purple);
  color: white;
  padding: 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.audio-player {
  background: rgba(145, 39, 142, 0.05);
  border-radius: 12px;
  padding: 0px;
  margin-bottom: 0px;
  border: 1px solid rgba(145, 39, 142, 0.1);
}

/* Styles pour le lecteur audio */
.audio-visualizer {
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

#visualizerCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.audio-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.audio-control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.audio-control-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.audio-control-btn.playing {
  background: #dc3545;
}

.audio-control-btn.playing:hover {
  background: #c82333;
}

.audio-progress {
  width: 100%;
  height: 6px;
  background: rgba(145, 39, 142, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--header-purple));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

/* Animation de pulsation pendant la lecture */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.playing i {
  animation: pulse 1.5s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .nav-desktop {
    gap: 5px;
  }

  .nav-link,
  .dropdown-toggle-custom,
  .account-toggle-custom {
    padding: 10px 12px;
    font-size: 14px;
  }

  .radio-btn-custom {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle-custom {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .statistics {
    margin: 0 20px 40px;
    border-radius: 10px;
  }

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

  .stat-square {
    min-height: 180px;
    padding: 20px 15px;
  }

  .stat-square-number {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .radio-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px;
  }

  .radio-left {
    padding: 0;
  }

  .radio-stats {
    flex-direction: row;
    justify-content: center;
  }

  .radio-stats div {
    flex: 1;
  }

  .radio-buttons {
    justify-content: center;
  }

  .audio-player {
    padding: 15px;
  }

  .audio-visualizer {
    height: 60px;
  }

  .audio-control-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .top-header .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .quote {
    display: none;
  }

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

  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-custom {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-indicators {
    bottom: 20px;
  }

  .section-title {
    margin: 40px auto 25px;
  }

  .statistics {
    padding: 30px 15px;
    margin: 0 15px 30px;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-square {
    min-height: 160px;
    padding: 18px 12px;
  }

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

  .stat-square-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .stat-square-label {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .notification-banner {
    width: 300px;
    right: -300px;
  }

  .notification-banner.active {
    right: 15px;
  }

  .radio-stats {
    flex-direction: column;
  }

  .audio-visualizer {
    height: 50px;
  }

  .audio-control-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .audio-time {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .feature-card {
    padding: 20px;
  }

  .mobile-nav-custom {
    width: 280px;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo-img {
    height: 35px;
  }

  .logo-text {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .stat-square {
    min-height: 150px;
    aspect-ratio: unset;
    max-width: 250px;
    margin: 0 auto;
  }

  .section-title p {
    font-size: 15px;
  }

  .notification-banner {
    width: 280px;
    right: -280px;
    padding: 12px;
  }

  .notification-banner.active {
    right: 10px;
  }

  .chief-image {
    width: 50px;
    height: 50px;
  }

  .chief-message strong {
    font-size: 14px;
  }

  .chief-quote {
    font-size: 13px;
  }

  .radio-visual {
    padding: 0 15px;
  }

  .radio-content {
    padding: 20px;
  }

  .radio-stats {
    flex-direction: column;
  }

  .radio-features {
    justify-content: center;
  }

  .radio-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-radio-custom {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}
