/* Contact page specific entry file
   This file is the CSS entry for this page.
   Shared layout, typography, navigation, banners, and components are in common.css.
   Add page-only overrides below when needed.
*/
@import url('./common.css');

/* Page-only overrides can be added here. */


/* ===== FINAL OVERRIDE: full-width compact CTA band across pages ===== */
.cta-full-section,
.services-cta-section,
.why-bottom-section{
  width:100vw !important;
  max-width:100vw !important;
  min-height:200px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  background:#2563EB !important;
  overflow:hidden !important;
  position:relative !important;
  border-radius:0 !important;
}

.cta-full-section::before,
.services-cta-section::before,
.why-bottom-section::before{
  content:"" !important;
  position:absolute !important;
  width:260px !important;
  height:260px !important;
  right:7vw !important;
  top:-92px !important;
  border-radius:50% !important;
  background:radial-gradient(circle, rgba(255,255,255,.32), rgba(255,255,255,.10) 44%, rgba(255,255,255,0) 72%) !important;
  pointer-events:none !important;
  z-index:1 !important;
  animation:jlCtaFloatOne 7s ease-in-out infinite !important;
}

.cta-full-section::after,
.services-cta-section::after,
.why-bottom-section::after{
  content:"" !important;
  position:absolute !important;
  width:210px !important;
  height:82px !important;
  left:9vw !important;
  bottom:-24px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,.05)) !important;
  pointer-events:none !important;
  z-index:1 !important;
  transform:rotate(-10deg) !important;
  animation:jlCtaFloatTwo 6.2s ease-in-out infinite !important;
}

.cta-full-section > .container,
.services-cta-section > .container,
.why-bottom-section > .container{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  z-index:2 !important;
}

.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band{
  width:100% !important;
  max-width:none !important;
  height:200px !important;
  min-height:200px !important;
  margin:0 !important;
  padding:0 clamp(36px, 10vw, 150px) !important;
  border-radius:0 !important;
  background:transparent !important;
  background-image:none !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:32px !important;
  overflow:hidden !important;
  color:#fff !important;
}

.cta-full-section .cta-band::before,
.cta-full-section .cta-band::after,
.services-cta-section .services-cta-band::before,
.services-cta-section .services-cta-band::after,
.why-bottom-section .why-bottom-band::before,
.why-bottom-section .why-bottom-band::after{
  display:none !important;
}

.cta-full-section .cta-band > div,
.services-cta-section .services-cta-band > div,
.why-bottom-section .why-bottom-band > div{
  position:relative !important;
  z-index:3 !important;
}

.cta-full-section .cta-band > div::after,
.services-cta-section .services-cta-band > div::after,
.why-bottom-section .why-bottom-band > div::after{
  content:"" !important;
  position:absolute !important;
  right:24px !important;
  top:18px !important;
  width:86px !important;
  height:86px !important;
  border-radius:24px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.03)) !important;
  transform:rotate(18deg) !important;
  pointer-events:none !important;
  animation:jlCtaFloatThree 8s ease-in-out infinite !important;
}

.cta-full-section .cta-band h2,
.services-cta-section .services-cta-band h2,
.why-bottom-section .why-bottom-band h2{
  margin:0 0 10px !important;
  max-width:980px !important;
  color:#fff !important;
  font-size:clamp(30px, 3vw, 48px) !important;
  line-height:1.08 !important;
  letter-spacing:-.04em !important;
}

.cta-full-section .cta-band p,
.services-cta-section .services-cta-band p,
.why-bottom-section .why-bottom-band p{
  margin:0 !important;
  max-width:980px !important;
  color:rgba(255,255,255,.92) !important;
  font-size:16px !important;
  line-height:1.7 !important;
}

.cta-full-section .cta-band .btn,
.cta-full-section .cta-band .btn-light,
.services-cta-section .services-cta-band .btn,
.services-cta-section .services-cta-band .btn-light,
.why-bottom-section .why-bottom-band .btn,
.why-bottom-section .why-bottom-band .btn-light{
  position:relative !important;
  z-index:3 !important;
  background:#fff !important;
  color:#2563EB !important;
  border-color:#fff !important;
  white-space:nowrap !important;
  box-shadow:0 12px 24px rgba(15,23,42,.14) !important;
}

@keyframes jlCtaFloatOne{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-10px,12px,0) scale(1.05);}
}
@keyframes jlCtaFloatTwo{
  0%,100%{transform:rotate(-10deg) translate3d(0,0,0);}
  50%{transform:rotate(-6deg) translate3d(14px,-8px,0);}
}
@keyframes jlCtaFloatThree{
  0%,100%{transform:rotate(18deg) translate3d(0,0,0);}
  50%{transform:rotate(10deg) translate3d(6px,10px,0);}
}

@media(max-width:960px){
  .cta-full-section,
  .services-cta-section,
  .why-bottom-section,
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    height:auto !important;
    min-height:220px !important;
  }
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    grid-template-columns:1fr !important;
    padding:34px 24px !important;
  }
  .cta-full-section .cta-band > div::after,
  .services-cta-section .services-cta-band > div::after,
  .why-bottom-section .why-bottom-band > div::after{
    display:none !important;
  }
}

@media(max-width:640px){
  .cta-full-section,
  .services-cta-section,
  .why-bottom-section,
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    min-height:auto !important;
  }
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    padding:28px 18px !important;
  }
  .cta-full-section .cta-band h2,
  .services-cta-section .services-cta-band h2,
  .why-bottom-section .why-bottom-band h2{
    font-size:clamp(24px,8vw,34px) !important;
  }
}

.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band {
    width: 100% !important;
    max-width: 1180px !important;
    height: 200px !important;
    min-height: 200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 32px !important;
    overflow: hidden !important;
    color: #fff !important;
}
/* final CTA band override */
.cta-full-section,
.services-cta-section,
.why-bottom-section{
    width:100% !important;
    min-height:200px !important;
    padding:0 !important;
    margin:0 !important;
    background:#2563eb !important;
    background-image:radial-gradient(circle at 86% 24%,rgba(255,255,255,.18) 0 58px,transparent 60px),linear-gradient(90deg,#2563eb 0%,#2563eb 100%) !important;
    position:relative !important;
    overflow:hidden !important;
}
.cta-full-section::before,
.services-cta-section::before,
.why-bottom-section::before{
    content:"" !important;
    position:absolute !important;
    left:8.5% !important;
    bottom:-48px !important;
    width:210px !important;
    height:86px !important;
    border-radius:26px !important;
    background:rgba(255,255,255,.14) !important;
    transform:rotate(-10deg) !important;
    pointer-events:none !important;
}
.cta-full-section::after,
.services-cta-section::after,
.why-bottom-section::after{
    content:"" !important;
    position:absolute !important;
    right:27.5% !important;
    top:70px !important;
    width:82px !important;
    height:82px !important;
    border-radius:18px !important;
    border:1px solid rgba(255,255,255,.28) !important;
    background:rgba(255,255,255,.08) !important;
    transform:rotate(18deg) !important;
    pointer-events:none !important;
}
.cta-full-section .container,
.services-cta-section .container,
.why-bottom-section .container{
    height:200px !important;
}
.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band{
    width:100% !important;
    max-width:1180px !important;
    height:200px !important;
    min-height:200px !important;
    margin:0 auto !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    background-image:none !important;
    box-shadow:none !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:32px !important;
    overflow:hidden !important;
    color:#fff !important;
    position:relative !important;
    z-index:1 !important;
}
.cta-full-section .cta-band h2,
.services-cta-section .services-cta-band h2,
.why-bottom-section .why-bottom-band h2{
    color:#fff !important;
    font-size:clamp(26px,2.2vw,36px) !important;
    line-height:1.18 !important;
    margin:0 0 12px !important;
    text-shadow:0 2px 12px rgba(0,0,0,.15) !important;
}
.cta-full-section .cta-band p,
.services-cta-section .services-cta-band p,
.why-bottom-section .why-bottom-band p{
    color:rgba(255,255,255,.92) !important;
    max-width:850px !important;
    margin:0 !important;
    line-height:1.8 !important;
}
.cta-full-section .cta-band .btn,
.cta-full-section .cta-band .btn-light,
.services-cta-section .services-cta-band .btn,
.services-cta-section .services-cta-band .btn-light,
.why-bottom-section .why-bottom-band .btn,
.why-bottom-section .why-bottom-band .btn-light{
    background:#fff !important;
    color:#0755ff !important;
    border-color:#fff !important;
    box-shadow:0 12px 24px rgba(15,23,42,.14) !important;
    white-space:nowrap !important;
}
@media(max-width:960px){
  .cta-full-section,.services-cta-section,.why-bottom-section{min-height:220px !important;}
  .cta-full-section .container,.services-cta-section .container,.why-bottom-section .container{height:auto !important;}
  .cta-full-section .cta-band,.services-cta-section .services-cta-band,.why-bottom-section .why-bottom-band{height:auto !important;min-height:220px !important;grid-template-columns:1fr !important;padding:34px 24px !important;}
}
@media(max-width:640px){
  .cta-full-section .cta-band,.services-cta-section .services-cta-band,.why-bottom-section .why-bottom-band{min-height:220px !important;padding:28px 18px !important;}
}

.logo-mark{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}
.logo-mark:after{display:none !important;}
.logo-mark img{
  width:44px !important;
  height:44px !important;
  display:block !important;
  object-fit:contain !important;
}
.logo-mark svg{display:none !important;}
@media(max-width:640px){.logo-mark img{width:38px !important;height:38px !important;}}

.logo-mark img{
  width:70% !important;
  height:70% !important;
  object-fit:contain !important;
  margin:auto !important;
}

/* logo frame restore, image 70% */
.brand .logo-mark{
  width:44px !important;
  height:44px !important;
  border-radius:15px !important;
  background:linear-gradient(135deg,var(--navy),var(--blue)) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:white !important;
  box-shadow:0 16px 36px rgba(11,31,58,.22) !important;
  overflow:hidden !important;
  position:relative !important;
}
.home-page .header.header-overlay .logo-mark{
  background:rgba(255,255,255,.12) !important;
  box-shadow:0 18px 36px rgba(0,0,0,.18) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}
.sub-page .header.header-overlay .logo-mark{
  background:linear-gradient(135deg,var(--navy),var(--blue)) !important;
  box-shadow:0 16px 36px rgba(11,31,58,.22) !important;
}
.brand .logo-mark:after{display:none !important;}
.brand .logo-mark img,
.home-page .header.header-overlay .logo-mark img,
.sub-page .header.header-overlay .logo-mark img,
.footer .logo-mark img{
  width:30.8px !important;
  height:30.8px !important;
  max-width:70% !important;
  max-height:70% !important;
  object-fit:contain !important;
  margin:auto !important;
  position:relative !important;
  z-index:2 !important;
}
@media(max-width:640px){
  .brand .logo-mark{width:38px !important;height:38px !important;}
  .brand .logo-mark img,
  .home-page .header.header-overlay .logo-mark img,
  .sub-page .header.header-overlay .logo-mark img,
  .footer .logo-mark img{width:26.6px !important;height:26.6px !important;}
}
/* Logo white background override */
.brand .logo-mark,
.home-page .header.header-overlay .logo-mark,
.sub-page .header.header-overlay .logo-mark,
.footer .logo-mark{
  background:#fff !important;
  background-color:#fff !important;
  border:1px solid rgba(11,31,58,.10) !important;
  box-shadow:0 10px 24px rgba(11,31,58,.14) !important;
}
.brand .logo-mark:after,
.home-page .header.header-overlay .logo-mark:after,
.sub-page .header.header-overlay .logo-mark:after,
.footer .logo-mark:after{display:none !important;}
/* Brand one-line name override */
.brand > span:not(.logo-mark){
  white-space:nowrap !important;
  line-height:1.15 !important;
  letter-spacing:0 !important;
}
.brand > span:not(.logo-mark) small{
  display:inline !important;
  font-size:inherit !important;
  letter-spacing:0 !important;
}
@media(max-width:640px){
  .brand > span:not(.logo-mark){font-size:13px !important;}
}
