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

:root {
  /* Colors */
  --primary: #0b9e43;
  --primary-dark: #087a32;
  --primary-light: #e6f7eb;
  --secondary: #1a5cff;
  --secondary-dark: #1041c2;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Layout Constants (Mobile-First) */
  --header-height: 70px;
  --container-max-width: 1200px;
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
  
  /* Spacing */
  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(0.75rem, 3vw, 1rem);
  --space-md: clamp(1rem, 4vw, 1.5rem);
  --space-lg: clamp(1.5rem, 6vw, 2.5rem);
  --space-xl: clamp(2.5rem, 8vw, 4rem);
  --space-2xl: clamp(4rem, 10vw, 6rem);
  
  /* Typography - Fluid */
  --fs-xs: clamp(0.75rem, 2vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 2.5vw, 1rem);
  --fs-base: clamp(1rem, 3vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 4vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 5vw, 2rem);
  --fs-2xl: clamp(2rem, 8vw, 3rem);
}

@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  padding-top: var(--header-height);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

/* Utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-light { background-color: var(--bg-light); }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }
.w-100 { width: 100%; }
.mt-4 { margin-top: var(--space-md); }
.mt-5 { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-md); }
.max-w-800 { max-width: 800px; margin-inline: auto; }

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section__title {
  font-size: var(--fs-xl);
  color: var(--secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(11, 158, 67, 0.3);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn--outline:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--secondary);
}

.btn--white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION (Mobile-First)
   ========================================================================== */
.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001; /* Above mobile menu */
}

.logo__img {
  height: 32px;
  width: auto;
}

@media (min-width: 768px) {
  .logo__img { height: 40px; }
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  max-width: 55vw;
}

.logo__title {
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.2;
}

.logo__subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: normal;
}

@media (min-width: 480px) {
  .logo__text {
    max-width: none;
  }
  .logo__title {
    white-space: nowrap;
  }
  .logo__subtitle {
    font-size: var(--fs-xs);
    white-space: nowrap;
  }
}

/* Mobile Toggle Button */
.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  display: block;
}

/* Navigation Wrapper (Hidden on mobile by default) */
.header__nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 2rem) var(--space-md) var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 1000;
}

.header__nav-wrapper.is-open {
  transform: translateX(0);
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.nav__link:not(.btn) {
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--text-dark);
  display: block;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.nav__link:not(.btn).active {
  font-weight: 700;
}

.nav__link:not(.btn):hover {
  color: var(--primary);
}

.nav__dropdown-icon {
  font-size: 0.8em;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav__dropdown.is-active .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none;
  padding-left: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hide initially on mobile via JS toggle, default flex for layout */
.nav__dropdown-menu { display: none; }
.nav__dropdown.is-active .nav__dropdown-menu { display: flex; }

.nav__dropdown-menu .nav__link {
  font-size: var(--fs-sm);
  border: none;
  padding: 0;
  font-weight: 500;
}

.header__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.lang-switcher {
  display: flex;
  border: 1.5px solid var(--secondary);
  border-radius: 6px;
  overflow: hidden;
  align-self: center;
}

.lang-switcher__item {
  padding: 4px 12px;
  font-weight: 700;
  font-size: var(--fs-xs);
  color: var(--secondary);
}

@media (min-width: 1024px) {
  .lang-switcher__item {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
  
  .lang-switcher {
    border-width: 1px;
  }
}

.lang-switcher__item.active {
  background-color: var(--secondary);
  color: var(--white);
}

/* Utility Classes for Responsive Visibility */
.w-100 {
  width: 100%;
}

.mobile-only {
  display: block;
}
.desktop-only {
  display: none !important;
}

/* Tablet & Desktop Header */
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
  
  .mobile-only {
    display: none !important;
  }
  
  .desktop-only {
    display: inline-flex !important;
  }
  
  .header__container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Bigger logo on desktop */
  .logo__img {
    height: 48px;
  }
  
  .logo__title {
    font-size: 1.1rem;
  }
  
  .logo__subtitle {
    font-size: 0.7rem;
  }
  
  .logo {
    flex-shrink: 0;
    margin-right: 1rem;
  }
  
  .header__nav-wrapper {
    position: static;
    height: auto;
    width: auto;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: visible;
  }
  
  .nav {
    margin: 0 auto;
  }
  
  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
  }
  
  .nav__link {
    font-size: 0.85rem;
    color: #000000;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
  }
  
  .nav__link.active {
    color: #000000;
    font-weight: 500;
  }
  
  .nav__link:hover {
    color: #000000;
  }
  
  .nav__dropdown {
    position: relative;
  }
  
  /* Reset mobile dropdown toggle logic */
  .nav__dropdown-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
  }
  
  .nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .header__actions {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .header__actions .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Extra wide screens - more breathing room */
@media (min-width: 1280px) {
  .nav__list {
    gap: 1.8rem;
  }
}

/* ==========================================================================
   PAGE MANAGEMENT
   ========================================================================== */
.page {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HOME HERO
   ========================================================================== */
.hero {
  background-size: cover;
  background-position: center;
  min-height: clamp(400px, 80vh, 700px);
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--space-xl);
}

.hero__content {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: var(--space-md);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero__content { padding: var(--space-lg); }
}

.hero__title {
  color: var(--white);
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero__subtitle {
  color: rgba(255,255,255,0.95);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.hero__text {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-base);
  max-width: 600px;
  margin-inline: auto;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: calc(var(--space-md) * -1); /* Pull up slightly if needed, or leave normal */
}

@media (min-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { margin-top: var(--space-md); position: relative; z-index: 10; }
}

.feature-card {
  background-color: var(--secondary);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature-card__title {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.feature-card__desc {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   SERVICES GRID (HOME)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
}

.service-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  color: var(--secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.service-card__body .btn {
  margin-top: auto;
}

.service-card__body .btn.nav__link {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  font-size: var(--fs-sm);
  padding: 0.75rem 1.5rem;
}

.service-card__body .btn.nav__link:hover {
  background-color: var(--secondary);
  color: var(--white);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.5fr; }
}

.about-grid__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.content-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.custom-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.custom-list i {
  margin-top: 5px;
}

/* ==========================================================================
   SERVICES PAGE DETAILED
   ========================================================================== */
.services-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

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

.services-nav__item {
  background-color: var(--white);
  padding: var(--space-md) var(--space-xs);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.services-nav__item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.services-nav__item i {
  font-size: 1.8rem;
  color: var(--primary);
}

.services-nav__item span {
  font-weight: 700;
  font-size: var(--fs-xs);
  color: var(--text-dark);
}

.scroll-target {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.service-detail-title {
  color: var(--primary);
  font-size: var(--fs-xl);
  text-align: center;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 1rem;
  margin-bottom: var(--space-lg);
}

.detail-box {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.detail-box > img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .detail-box > img {
    max-width: 800px;
    max-height: 450px;
  }
}

.detail-box__title {
  color: var(--secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.faq-list h5,
.detail-box h5.text-primary {
  font-size: var(--fs-lg);
  font-weight: 600; /* Match h4-like weight */
  margin-bottom: 0.5rem;
}

/* Insects Grid */
.insects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: var(--space-sm);
  margin-block: var(--space-md);
}

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

.insect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  padding: var(--space-sm);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.insect-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.insect-card__header {
  background-color: var(--secondary);
  color: var(--white);
  width: 100%;
  text-align: center;
  padding: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: var(--space-xs);
}

.insect-card__img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-block: 0.5rem;
}

@media (min-width: 768px) {
  .insect-card__img { width: 80px; height: 80px; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-hero {
  padding-block: var(--space-2xl);
  background-size: cover;
  background-position: center;
}

.pricing-banner {
  background-color: var(--secondary);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  margin-top: var(--space-md);
  position: relative;
}

.offer-badge {
  display: inline-block;
  background-color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.pricing-banner__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.info-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section {
  padding-block: var(--space-2xl);
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Better for mobile */
}

@media (min-width: 1024px) {
  .contact-section { background-attachment: fixed; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-info, .contact-form-container {
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-info { background: rgba(26, 92, 255, 0.75); backdrop-filter: blur(6px); }
.contact-form-container { background: rgba(11, 158, 67, 0.75); backdrop-filter: blur(6px); }

.contact-info__title, .contact-form__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.contact-info__desc { margin-bottom: var(--space-lg); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-item__icon {
  font-size: 1.25rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item__content h4 {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.2rem;
}

.contact-item__content a { font-weight: 600; font-size: var(--fs-md); }

/* Form Elements */
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: var(--fs-sm); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-logo {
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}
.footer-logo span { color: var(--white); }

.footer-desc { color: var(--white); }

.footer-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--white) !important; }
.footer-links a:hover { color: var(--primary-light) !important; padding-left: 5px; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact i { color: var(--primary-light); }
.footer-contact a { color: var(--white) !important; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--secondary-dark);
  font-size: var(--fs-xs);
  color: var(--white);
}
