:root{
  --ecl-footer-navy:#0d1b4c;
  --ecl-footer-gold:#e8a13c;
  --ecl-footer-muted:rgba(255,255,255,0.65);
  --ecl-footer-line:rgba(255,255,255,0.15);
}
.ecl-footer{
  box-sizing:border-box;
  font-family:'DM Sans', 'Segoe UI', sans-serif;
  position:relative;
  background:var(--ecl-footer-navy);
  overflow:hidden;
  padding:64px 60px 56px;
}
.ecl-footer *{ box-sizing:border-box; min-width:0; }
.ecl-footer a{ text-decoration:none; color:inherit; }

/* ---------- Decorative graphics ---------- */
.footer-decor-left{
  position:absolute;
  left:0;
  bottom:0;
  height:78%;
  width:auto;
  max-width:180px;
  z-index:0;
  pointer-events:none;
}
.footer-decor-watermark{
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:420px;
  height:auto;
  opacity:0.05;
  z-index:0;
  pointer-events:none;
}

.footer-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:40px;
}

/* ---------- Left column ---------- */
.footer-logo-row{
  display:flex;
  align-items:flex-start;
  gap:32px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.footer-logo img{
  height:70px;
  width:auto;
  display:block;
}
.footer-copyright{
  color:#fff;
  font-size:16px;
  font-weight:700;
  margin:0 0 12px;
}
.footer-tagline{
  color:#fff;
}

.footer-socials{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#fff !important;
}
.footer-social-icon{
  width:34px; height:34px;
  border-radius:6px;
  background:rgba(255,255,255,0.08);
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  flex:0 0 auto;
}
.footer-social-icon:hover{ background:rgba(255,255,255,0.16); }

.footer-divider{
  height:1px;
  background:var(--ecl-footer-line);
  margin:0 0 22px;
}

.footer-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:28px;
  margin-bottom:22px;
}
.footer-nav a{
  color:#fff !important;
  font-size:15px;
  font-weight:600;
}
.footer-nav a:hover{ color:var(--ecl-footer-gold); }

.footer-contact-info{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.footer-contact-row{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff !important;
  font-size:14.5px;
  overflow-wrap:break-word;
  word-break:break-word;
}
.footer-contact-icon{
  width:18px; height:18px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff !important;
}

/* Modern receiver icon, CSS-drawn */
.icon-phone{
  display:inline-block;
  width:10px; height:4px;
  background:currentColor;
  border-radius:2px;
  position:relative;
  transform:rotate(-45deg);
}
.icon-phone::before,
.icon-phone::after{
  content:"";
  position:absolute;
  top:50%;
  width:5px; height:5px;
  background:currentColor;
  border-radius:50%;
  transform:translateY(-50%);
}
.icon-phone::before{ left:-2.5px; }
.icon-phone::after{ right:-2.5px; }

/* Envelope icon, CSS-drawn */
.icon-mail{
  display:inline-block;
  width:18px; height:13px;
  border:1.6px solid currentColor;
  border-radius:2px;
  position:relative;
}
.icon-mail::before{
  content:"";
  position:absolute;
  left:1px; right:1px; top:1px;
  height:0;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:7px solid currentColor;
}

/* Location pin icon, CSS-drawn */
.icon-pin{
  display:inline-block;
  width:13px; height:13px;
  border:1.8px solid currentColor;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
}

/* ---------- Right columns ---------- */
.footer-col h4{
  color:#fff;
  font-size:19px;
  font-weight:800;
  margin:0 0 20px;
}
.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.footer-col a{
  color:#fff !important;
  font-size:14.5px;
}
.footer-col a:hover{ color:var(--ecl-footer-gold); }

@media (max-width:700px){
  .ecl-footer{ padding:44px 24px 40px; }
  .footer-inner{ grid-template-columns:1fr; gap:32px; }
  .footer-logo-row{ flex-direction:column; gap:16px; }
  .footer-nav{ gap:16px 22px; }
  .footer-decor-left{ max-width:100px; }
  .footer-decor-watermark{ width:260px; }
}
