.footer-premium {
  background: #ffffff;
  color: #334155;
  padding-top: 80px;
  position: relative;
border-top: 1px solid #024e6e36
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

/* Logo - Floating */
.footer-logo-wrapper {
  position: absolute;
  top: -50px;
  right: 200px;
  background: #024e6e;
  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;
  filter: brightness(0) invert(1);
}

/* 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: #024e6e;
  transform: translateX(5px);
}

.footer-links-list a:hover::before {
  background: #024e6e;
  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: #024e6e;
  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: #024e6e;
  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: #024e6e;
  color: #fff;
  border-color: #024e6e;
  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: #024e6e;
}

.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;
  }
}
