/*==============================================
  AURA MARKET RESEARCH - Footer Styles
==============================================*/

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

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

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(39,167,207,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

/* // Accordion Footer (Mobile) */
.footer-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.footer-column-header .footer-chevron {
  display: none;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease;
}

.footer-column-header.active .footer-chevron {
  transform: rotate(180deg);
}

.footer-links-wrap {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-column-header .footer-chevron {
    display: block;
  }

  .footer h4 {
    margin-bottom: 0;
    padding: 18px 0;
  }

  .footer h4::after {
    display: none;
  }

  .footer-links-wrap {
    max-height: 0;
  }

  .footer-links-wrap.open {
    max-height: 400px;
  }

  .footer-links {
    padding-bottom: 16px;
  }

  .footer-grid > :first-child .footer-links-wrap {
    max-height: none;
  }
  .footer-grid > :first-child .footer-column-header .footer-chevron {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .footer-top {
    padding: 40px 0 20px;
  }
  .footer-brand-desc {
    font-size: 0.85rem;
  }
  .footer-contact-item {
    font-size: 0.83rem;
  }
  .footer-bottom {
    padding: 18px 0;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 0 16px;
  }
  .footer h4 {
    font-size: 0.9rem;
    padding: 14px 0;
  }
  .footer-links a {
    font-size: 0.82rem;
  }
  .footer-contact-item {
    margin-bottom: 12px;
  }
  .footer-contact-item .fc-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .footer-bottom-links a {
    font-size: 0.72rem;
  }
}

@media (max-width: 375px) {
  .footer h4 {
    font-size: 0.85rem;
  }
  .footer-links a {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-links-wrap {
    transition: none;
  }
  .footer-column-header .footer-chevron {
    transition: none;
  }
}

/* =============================================
   DEVELOPER CREDIT - WebGrowPrime.in
   ============================================= */
.developer-credit {
  background: linear-gradient(180deg, #0A1E3F 0%, #071A3D 100%);
  border-top: none;
  padding: 10px 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated gradient border top */
.developer-credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,45,141,0.2), #FF2D8D, #FF007A, rgba(255,45,141,0.2), transparent);
  background-size: 200% 100%;
  animation: creditBorderFlow 3s ease-in-out infinite;
}

@keyframes creditBorderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Soft glow orb */
.credit-glow {
  position: absolute;
  top: -20px;
  right: 15%;
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,45,141,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: creditGlowPulse 4s ease-in-out infinite;
}

@keyframes creditGlowPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-4px); }
}

.credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.credit-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.credit-diamond {
  font-size: 0.35rem;
  color: rgba(255,45,141,0.3);
  animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

.credit-brand {
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(90deg, #FF2D8D 0%, #FF6B9D 30%, #FF007A 70%, #E6006E 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.8px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  animation: brandShimmer 3s ease-in-out infinite;
}

@keyframes brandShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.credit-brand:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255,45,141,0.3));
}

.credit-brand-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  animation: brandShine 4s ease-in-out infinite;
}

@keyframes brandShine {
  0%, 70%, 100% { left: -100%; }
  80% { left: 120%; }
  90% { left: 120%; }
}

.credit-sep {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.1);
  font-weight: 100;
}

.credit-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.6px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .developer-credit {
    padding: 10px 0;
    min-height: 55px;
  }
  .credit-inner {
    flex-direction: column;
    gap: 1px;
  }
  .credit-meta {
    font-size: 0.65rem;
  }
  .credit-brand {
    font-size: 0.82rem;
  }
  .credit-sep {
    display: none;
  }
  .credit-sub {
    font-size: 0.62rem;
  }
  .credit-diamond {
    display: none;
  }
}
}
}
