.imexco-footer-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #1b5e20 0%, #2757a0 100%);
  display: flex;
  flex-direction: column;
}

.imexco-footer-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.imexco-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 142, 55, 0.8) 0%, rgba(2, 142, 55, 0.8) 100%);
  z-index: 0;
}

.imexco-footer-cta>* {
  position: relative;
  z-index: 1;
}

.imexco-footer-cta h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.imexco-footer-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.cta-info {
  color: #fff;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.cta-btn-phone {
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-btn-phone .phone-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(6, 143, 53, 0.11);
  border-radius: 50%;
}

.cta-btn-phone .phone-text {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
}

.cta-btn-email {
  border: 1px solid #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-btn-phone,
.cta-btn-email {
  white-space: nowrap;
}

.imexco-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 60px 40px 60px;

  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
}

.footer-column {
  color: #ffffff;
}

.footer-logo {
  max-width: 122px;
  height: auto;
  margin-bottom: 20px;
}

.brand-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

.brand-representative {
  border-left: 2px solid #ffffff;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 20px;
}

.brand-representative .rep-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.brand-representative .rep-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.brand-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.brand-contacts .icon {
  font-size: 13px;
  flex-shrink: 0;
}

.brand-contacts .txt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.column-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 10px 0;
}

.column-title-line {
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 50px;
  margin-bottom: 20px;
}

.footer-column.col-map iframe {
  height: 250px;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-list li {
  margin-bottom: 12px;
}

.links-list li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.links-list li a:hover {
  opacity: 0.7;
}

.footer-map-box {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px;
}

.footer-map-box img,
.footer-map-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.map-address-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.imexco-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imexco-footer-bottom span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .cta-info {
    text-wrap: nowrap;
  }

  .cta-actions {
    justify-content: start;
  }

  .imexco-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
  }

  .imexco-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 40px 30px;
  }

  .imexco-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 30px;
  }

  .footer-map-box {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .cta-info {
    text-wrap: nowrap;
  }

  .cta-actions {
    justify-content: start;
  }

  .imexco-footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
  }

  .imexco-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
  }

  .imexco-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 30px;
  }
}

@media (max-width: 550px) {
  .cta-info {
    text-wrap: wrap;
  }

  .imexco-footer-cta>.col {
    padding: 0;
  }

  .imexco-footer-main {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-phone {
    margin-bottom: 10px;
  }

  .cta-btn-phone,
  .cta-btn-email {
    text-align: center;
    justify-content: center;
  }

  .footer-map-box {
    height: 200px;
  }
}