/* ════════════════════════════════════════
   FOOTER 02 - MOBILE FOOTER
════════════════════════════════════════ */

.footer-section {
  color: #051f38;
  padding: 40px 0 20px;
  text-align: center;
  width: 100%;
}

/* ════════════════════════════════════════
   ACCORDION SECTION
════════════════════════════════════════ */

.custom-accordion {
  border: none;
  padding: 0 20px 30px;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: transparent;
  border: none;
  color: #051f38;
  font-weight: 600;
  font-size: 14px;
  padding: 18px 0;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.accordion-button:hover {
  color: #051f38;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #051f38;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.plus-icon {
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 18px;
}

.plus-icon::before {
  content: '+';
}

.accordion-button:not(.collapsed) .plus-icon::before {
  content: '-';
}


.accordion-collapse {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.accordion-body {
  padding: 0 0 20px;
  background: transparent;
  border: none;
  color: #051f38;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

/* ════════════════════════════════════════
   APP DOWNLOAD SECTION
════════════════════════════════════════ */

.app-section {
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.app-title {
     font-family:var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  margin-top: 0;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  height: 40px;
  width: auto;
  max-width: 140px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.store-btn:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ════════════════════════════════════════
   SOCIAL SECTION
════════════════════════════════════════ */

.social-section {
  padding: 30px 20px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.social-title {
    font-family:var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  margin-top: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-icons i {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.social-icons i:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* ════════════════════════════════════════
   COPYRIGHT SECTION
════════════════════════════════════════ */

.copyright {
     font-family:var(--font-body);
  padding: 20px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN
════════════════════════════════════════ */

@media (max-width: 480px) {
  .footer-section {
    padding: 30px 0 15px;
  }

  .custom-accordion {
    padding: 0 16px 20px;
  }

  .accordion-button {
    font-size: 13px;
    padding: 16px 0;
  }

  .accordion-body {
    padding: 0 0 16px;
    font-size: 12px;

   list-style: none;
    
  }

  .app-section,
  .social-section {
    padding: 20px 16px;
  }

  .app-title,
  .social-title {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons i {
    font-size: 18px;
  }

  .store-btn {
    max-width: 130px;
    height: 36px;
  }

  .copyright {
    padding: 16px;
    font-size: 11px;
  }
}
