.footer-premium {
  background: #ffffff;
  color: #334155;
  padding-top: 80px;
  position: relative;
border-top: 1px solid #0667b136
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

/* Logo - Floating */
.footer-logo-wrapper {
     position: absolute;
    top: -85px;
    right: 200px;
    background: #f1f5f9;
    padding: 15px 25px;
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(2, 78, 110, 0.2); */
    z-index: 20;
}

.footer-main-logo {
  height: 120px;
  width: auto;
}

/* Left Menu Area */
.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.footer-menu-title {
  color: #022e41;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #64748b;
  text-decoration: none !important;
  font-size: 13.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.footer-links-list a::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-links-list a:hover {
  color: #0667b1;
  transform: translateX(5px);
}

.footer-links-list a:hover::before {
  background: #0667b1;
  width: 10px;
  border-radius: 2px;
}

/* Right Contact Card */
.footer-brand-side {
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  color: #0667b1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

.footer-contact-item:hover {
  border-color: #0667b1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-social-minimal {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.social-min-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.social-min-btn:hover {
  background: #0667b1;
  color: #fff;
  border-color: #0667b1;
  transform: translateY(-3px);
}

/* Belt Area */
.footer-links-belt {
  border-top: 1px solid #f1f5f9;
  padding: 30px 0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
}

.gov-links-carousel {
  display: flex;
  gap: 30px;
  align-items: center;
}

.gov-link-item {
  height: 35px;
  width: auto;
  display: block;
}

.gov-link-item img {
  height: 35px;
  width: auto;
  transition: 0.3s;
}

.gov-link-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.app-links-area {
  display: flex;
  gap: 12px;
}

.app-btn img {
  height: 35px;
  width: auto;
  transition: 0.3s;
}

.app-btn:hover img {
  transform: translateY(-3px);
  filter: brightness(0.9);
}

/* Copyright Area */
.footer-copyright-area {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #f1f5f9;
}

.copyright-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.copyright-text strong {
  color: #0667b1;
}

.developer-info img {
  height: 16px;
  transition: 0.3s;
}

.developer-info:hover img {
  opacity: 1;
}

@media (max-width: 1200px) {
  .footer-top-row {
    grid-template-columns: 1fr;
    gap:0px;
  }
  .footer-logo-wrapper {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 30px;
  }
  .footer-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gov-links-carousel {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links-belt {
    display: none !important;
  }
  .copyright-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-menu-grid {
    display: none !important;
  }
  .footer-logo-wrapper {
    display: block !important;
    margin: 0 auto -30px auto !important;
    width: fit-content;
    top: 0;
    right: 0;
    position: relative;
  }
}

/* Footer App Promotion Banner */
.footer-app-promo {
    background: #fff; /* Light gray-blue matching image */
    padding: 30px 0;

}
.promo-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}
.promo-text {
    text-align: left;
}
.promo-text h3 {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 32px;
    font-weight: 900;
    font-style: italic !important;
    color: #0667b1; /* Dark corporate blue */
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}
.promo-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    color: #64748b; /* Corporate blue accent */
    margin: 0;
}
.promo-buttons {
    display: flex;
    gap: 15px;
}
.promo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(6, 104, 178, 0.06);
    border-radius: 16px;
    padding: 12px 24px;
    text-decoration: none !important;
    color: #1e3a8a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 104, 178, 0.08);
    border-color: rgba(6, 104, 178, 0.15);
}
.promo-btn .app-icon {
    flex-shrink: 0;
    transition: color 0.3s;
    color: #0667b1
}
.btn-appstore:hover .app-icon {
    color: #1e293b; /* Apple black on hover */
}
.btn-googleplay:hover .app-icon {
    color: #059669; /* Google Play green on hover */
}
.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.btn-sub {
    font-family: 'Quicksand', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: capitalize;
    line-height: 1;
}
.btn-main {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .promo-text {
        text-align: center;
    }
    .promo-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .promo-btn {
        justify-content: center;
        width: 100%;
    }
}
