.aa3d-global-footer,
.aa3d-global-footer *{
  box-sizing:border-box;
}

.aa3d-global-footer{
  --bg:#202020;
  --bg-dark:#181818;
  --white:#ffffff;
  --text:rgba(255,255,255,.62);
  --line:rgba(255,255,255,.12);
  --gold:#c89223;
  font-family:'Manrope',Arial,sans-serif;
  background:var(--bg);
  color:var(--white);
}

.aa3d-footer-container{
  width:min(1500px,92%);
  margin:0 auto;
}

/* MAIN FOOTER AREA */
.aa3d-footer-main{
  padding:108px 0 72px;
}

.aa3d-footer-grid{
  display:grid;
  grid-template-columns:minmax(320px,1.5fr) repeat(3,minmax(150px,.65fr));
  gap:70px;
  align-items:start;
}

/* CTA */
.aa3d-footer-cta h2{
  max-width:420px;
  margin:0 0 36px;
  font-size:clamp(34px,3.1vw,52px);
  line-height:1.05;
  letter-spacing:-1.8px;
  font-weight:600;
}

.aa3d-footer-link{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:0 0 10px;
  color:var(--white);
  border-bottom:1px solid rgba(255,255,255,.7);
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  transition:color .25s ease,border-color .25s ease,gap .25s ease;
}

.aa3d-footer-link svg{
  width:19px;
  height:19px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
}

.aa3d-footer-link:hover{
  color:var(--gold);
  border-color:var(--gold);
  gap:22px;
}

/* LINK COLUMNS */
.aa3d-footer-column h3{
  margin:0 0 28px;
  color:var(--white);
  font-size:15px;
  font-weight:700;
}

.aa3d-footer-column ul{
  list-style:none;
  margin:0;
  padding:0;
}

.aa3d-footer-column li{
  margin:0 0 14px;
}

.aa3d-footer-column a{
  color:var(--text);
  text-decoration:none;
  font-size:15px;
  line-height:1.5;
  transition:color .22s ease;
}

.aa3d-footer-column a:hover{
  color:var(--gold);
}

/* CONTACT + LEGAL + SOCIAL */
.aa3d-footer-contact{
  display:grid;
  grid-template-columns:1.4fr 1fr auto;
  gap:44px;
  align-items:start;
  margin-top:118px;
  padding-top:0;
}

.aa3d-footer-info h4{
  margin:0 0 9px;
  color:rgba(255,255,255,.82);
  font-size:14px;
  font-weight:600;
}

.aa3d-footer-info p,
.aa3d-footer-info a{
  margin:0;
  color:var(--text);
  font-size:14px;
  line-height:1.65;
  text-decoration:none;
}

.aa3d-footer-info a:hover{
  color:var(--gold);
}

.aa3d-footer-legal{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.aa3d-footer-social{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
}

.aa3d-social-link{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  transition:color .22s ease,border-color .22s ease,transform .22s ease;
}

.aa3d-social-link svg{
  width:17px;
  height:17px;
  fill:currentColor;
}

.aa3d-social-link:hover{
  color:var(--gold);
  border-color:var(--gold);
  transform:translateY(-2px);
}

/* BOTTOM BAR */
.aa3d-footer-bottom{
  background:var(--bg-dark);
  border-top:1px solid var(--line);
}

.aa3d-footer-bottom-inner{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.aa3d-footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.5);
  font-size:13px;
}

.aa3d-back-top{
  color:rgba(255,255,255,.64);
  text-decoration:none;
  font-size:13px;
  transition:color .22s ease;
}

.aa3d-back-top:hover{
  color:var(--gold);
}

/* TABLET */
@media(max-width:1100px){
  .aa3d-footer-grid{
    grid-template-columns:1.25fr repeat(3,1fr);
    gap:42px;
  }

  .aa3d-footer-contact{
    grid-template-columns:1fr 1fr auto;
    gap:30px 50px;
    margin-top:86px;
    align-items:start;
  }

  .aa3d-footer-social{
    justify-content:flex-start;
  }
}

/* MOBILE */
@media(max-width:760px){
  .aa3d-footer-container{
    width:90%;
  }

  .aa3d-footer-main{
    padding:76px 0 54px;
  }

  .aa3d-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:48px 30px;
  }

  .aa3d-footer-cta{
    grid-column:1/-1;
  }

  .aa3d-footer-cta h2{
    max-width:330px;
    margin-bottom:28px;
    font-size:36px;
  }

  .aa3d-footer-contact{
    grid-template-columns:1fr;
    gap:25px;
    margin-top:70px;
  }

  .aa3d-footer-bottom-inner{
    min-height:auto;
    padding:22px 0;
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}

@media(max-width:480px){
  .aa3d-footer-grid{
    grid-template-columns:1fr;
  }

  .aa3d-footer-cta{
    grid-column:auto;
  }

  .aa3d-footer-column h3{
    margin-bottom:18px;
  }
}

.aa3d-footer-column a{
  display:inline-block;
}


.aa3d-footer-info a{
  display:block;
}

.aa3d-footer-info a + a{
  margin-top:7px;
}



/* LOWER FOOTER — REFERENCE-STYLE ALIGNMENT */
.aa3d-footer-main{
  padding-bottom:0;
}

.aa3d-footer-contact{
  display:grid;
  grid-template-columns:minmax(280px,1.35fr) minmax(210px,.9fr) auto;
  gap:70px;
  align-items:center;
  margin-top:105px;
  padding:0 0 46px;
}

.aa3d-footer-contact > *{
  align-self:center;
  margin:0;
}

.aa3d-footer-info h4{
  margin-bottom:10px;
}

.aa3d-footer-info a{
  display:block;
}

.aa3d-footer-info a + a{
  margin-top:7px;
}

.aa3d-footer-legal{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:9px;
  padding:0;
}

.aa3d-footer-social{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:10px;
  padding:0;
}

.aa3d-footer-bottom{
  border-top:1px solid var(--line);
}

@media(max-width:1100px){
  .aa3d-footer-contact{
    grid-template-columns:1.15fr .9fr auto;
    gap:38px;
    margin-top:82px;
    padding-bottom:40px;
  }
}

@media(max-width:760px){
  .aa3d-footer-main{
    padding-bottom:0;
  }

  .aa3d-footer-contact{
    grid-template-columns:1fr;
    gap:28px;
    margin-top:65px;
    padding-bottom:36px;
    align-items:start;
  }

  .aa3d-footer-contact > *{
    align-self:start;
  }

  .aa3d-footer-social{
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}


/* REDUCE THE GAP BETWEEN THE LOWER FOOTER CONTENT AND DIVIDER LINE */
.aa3d-footer-contact{
  padding-bottom:18px !important;
}

@media(max-width:1100px){
  .aa3d-footer-contact{
    padding-bottom:16px !important;
  }
}

@media(max-width:760px){
  .aa3d-footer-contact{
    padding-bottom:14px !important;
  }
}


/* TIGHTER SPACING BETWEEN EMAILS AND LEGAL LINKS */
.aa3d-footer-info a + a{
  margin-top:2px !important;
}

.aa3d-footer-legal{
  gap:3px !important;
}


/* MINIMAL SPACING BETWEEN EMAILS AND LEGAL LINKS */
.aa3d-footer-info a + a{
  margin-top:0 !important;
}

.aa3d-footer-info a{
  line-height:1.28 !important;
}

.aa3d-footer-legal{
  gap:0 !important;
}

.aa3d-footer-legal a{
  line-height:1.28 !important;
}


/* ALIGN THE TOP FOOTER COLUMNS */
.aa3d-footer-top{
  display:grid !important;
  grid-template-columns:minmax(300px,1.45fr) minmax(170px,.72fr) minmax(190px,.82fr) minmax(150px,.68fr) !important;
  gap:72px !important;
  align-items:start !important;
}

.aa3d-footer-top > *{
  align-self:start !important;
  margin-top:0 !important;
}

.aa3d-footer-cta,
.aa3d-footer-column{
  padding-top:0 !important;
}

.aa3d-footer-column h3{
  margin-top:0 !important;
  margin-bottom:20px !important;
  line-height:1.2 !important;
}

.aa3d-footer-column ul{
  margin:0 !important;
  padding:0 !important;
}

.aa3d-footer-column li{
  margin:0 0 14px !important;
}

.aa3d-footer-column li:last-child{
  margin-bottom:0 !important;
}

.aa3d-footer-cta h2{
  margin-top:0 !important;
}

@media(max-width:1050px){
  .aa3d-footer-top{
    grid-template-columns:1.25fr .75fr .85fr .7fr !important;
    gap:42px !important;
  }
}

@media(max-width:820px){
  .aa3d-footer-top{
    grid-template-columns:1fr 1fr !important;
    gap:48px 36px !important;
  }
}

@media(max-width:560px){
  .aa3d-footer-top{
    grid-template-columns:1fr !important;
    gap:40px !important;
  }
}


/* PERFECT TOP-FOOTER GRID ALIGNMENT */
.aa3d-footer-top{
  display:grid !important;
  grid-template-columns:340px 155px 190px 150px !important;
  column-gap:72px !important;
  align-items:start !important;
}

.aa3d-footer-cta,
.aa3d-footer-column{
  width:100%;
  margin:0 !important;
  padding:0 !important;
  align-self:start !important;
}

.aa3d-footer-column h3{
  margin:0 0 20px !important;
  padding:0 !important;
  line-height:1.2 !important;
}

.aa3d-footer-column ul{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

.aa3d-footer-column li{
  margin:0 0 14px !important;
  padding:0 !important;
  line-height:1.35 !important;
}

.aa3d-footer-column a{
  white-space:nowrap !important;
}

.aa3d-footer-column li:last-child{
  margin-bottom:0 !important;
}

/* Keep Media & Entertainment on one line */
.aa3d-footer-column a[href*="media-entertainment"]{
  white-space:nowrap !important;
}

/* Keep every column aligned to the same top and bottom rhythm */
.aa3d-footer-top > :nth-child(2),
.aa3d-footer-top > :nth-child(3),
.aa3d-footer-top > :nth-child(4){
  min-height:205px;
}

@media(max-width:1150px){
  .aa3d-footer-top{
    grid-template-columns:300px 145px 190px 140px !important;
    column-gap:42px !important;
  }
}

@media(max-width:920px){
  .aa3d-footer-top{
    grid-template-columns:1fr 1fr !important;
    gap:48px 36px !important;
  }

  .aa3d-footer-column a{
    white-space:normal !important;
  }

  .aa3d-footer-column a[href*="media-entertainment"]{
    white-space:normal !important;
  }
}

@media(max-width:560px){
  .aa3d-footer-top{
    grid-template-columns:1fr !important;
    gap:38px !important;
  }

  .aa3d-footer-top > :nth-child(2),
  .aa3d-footer-top > :nth-child(3),
  .aa3d-footer-top > :nth-child(4){
    min-height:0;
  }
}


/* FINAL FULL-WIDTH FOOTER ALIGNMENT FIX */
.aa3d-global-footer{
  width:100vw !important;
  max-width:none !important;
  margin:0 calc(50% - 50vw) !important;
  padding:0 !important;
  display:block !important;
  position:relative !important;
  left:auto !important;
  right:auto !important;
}

.aa3d-footer-main,
.aa3d-footer-bottom{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
}

.aa3d-footer-container{
  width:min(1500px,92%) !important;
  max-width:1500px !important;
  margin:0 auto !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

.aa3d-footer-grid,
.aa3d-footer-top{
  width:100% !important;
  margin:0 !important;
}

#aa3d-footer{
  margin-top:0 !important;
}

/* Prevent Elementor from adding visible space around the footer widget */
.elementor-widget-html:has(.aa3d-global-footer),
.elementor-widget-container:has(.aa3d-global-footer){
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}

@media(max-width:760px){
  .aa3d-footer-container{
    width:90% !important;
  }
}


/* v1.5 footer refinements */
.aa3d-footer-cta h2{
  max-width:310px;
  font-size:clamp(32px,3.2vw,48px);
  line-height:1.02;
}


/* v2.1.4 footer full-width alignment */
.aa3d-global-footer{width:100%!important;max-width:none!important;margin:0!important}
.aa3d-footer-container{width:min(1500px,calc(100% - 80px))!important}
.aa3d-footer-grid{grid-template-columns:minmax(310px,1.45fr) repeat(3,minmax(145px,.65fr))!important;gap:clamp(38px,5vw,76px)!important}
.aa3d-footer-contact{grid-template-columns:1.35fr 1fr auto!important;gap:44px!important;align-items:start!important}
@media(max-width:760px){.aa3d-footer-container{width:calc(100% - 40px)!important}.aa3d-footer-grid{grid-template-columns:1fr 1fr!important;gap:42px 26px!important}.aa3d-footer-cta{grid-column:1/-1}.aa3d-footer-contact{grid-template-columns:1fr!important;gap:24px!important}}


/* v2.1.8 — full-viewport footer on every page */
.aa3d-global-footer{
  position:relative;
  left:50%;
  width:100vw !important;
  max-width:none !important;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
  overflow:hidden;
}

.aa3d-global-footer .aa3d-footer-container{
  width:min(1500px,calc(100% - 80px));
  max-width:none;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:760px){
  .aa3d-global-footer .aa3d-footer-container{
    width:calc(100% - 40px);
  }
}


/* v2.1.9 — force the shared footer outside Elementor columns */
body.aa3d-footer-detached .aa3d-global-footer,
body > .aa3d-global-footer{
  display:block !important;
  position:relative !important;
  left:auto !important;
  right:auto !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  margin:0 !important;
  transform:none !important;
  clear:both !important;
}

body.aa3d-footer-detached .aa3d-footer-main,
body.aa3d-footer-detached .aa3d-footer-bottom{
  width:100% !important;
  max-width:none !important;
}

body.aa3d-footer-detached .aa3d-footer-container{
  width:min(1500px,calc(100% - 80px)) !important;
  max-width:1500px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

@media(max-width:760px){
  body.aa3d-footer-detached .aa3d-footer-container{
    width:calc(100% - 40px) !important;
  }
}
