/*
Theme Name: datronyx-v17
Text Domain: datronyx-v17
Version: 1.0.0
Description: Responsive WordPress theme for Datronyx Solutions Ltd.
*/

:root{
  --navy:#061b4a;
  --blue:#0d4fd6;
  --cyan:#21c4ff;
  --bg:#f5f8fc;
  --text:#0c1730;
  --muted:#5e6b86;
  --line:rgba(6,27,74,.10);
  --shadow:0 24px 60px rgba(6,27,74,.12);
  --radius:24px;
}

*{box-sizing:border-box}
html, body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%, #f4f7fb 45%, #edf2f9 100%);
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(245,248,252,.93);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(6,27,74,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:0 0 auto;
  white-space:nowrap;
}
.brand-logo{
  width:50px;
  height:50px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-title{
  font-weight:800;
  font-size:1rem;
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--navy);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  min-width:0;
  flex:1 1 auto;
}
.primary-nav{
  min-width:0;
  flex:1 1 auto;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}
.primary-nav ul{
  list-style:none;
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  gap:18px;
  align-items:center;
  justify-content:flex-end;
  min-width:max-content;
  padding:0;
  margin:0;
}
.primary-nav li{
  position:relative;
  flex:0 0 auto;
}
.primary-nav a{
  font-weight:600;
  color:var(--navy);
  white-space:nowrap;
  padding:8px 0;
}
.primary-nav .sub-menu{
  list-style:none;
  margin:0;
  padding:10px;
  position:absolute;
  top:100%;
  left:0;
  display:none;
  flex-direction:column;
  min-width:300px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  z-index:60;
}
.primary-nav li:hover > .sub-menu{
  display:flex;
}
.primary-nav .sub-menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
}
.primary-nav .sub-menu a:hover{
  background:rgba(33,196,255,.10);
}
.search-toggle{
  flex:0 0 auto;
  white-space:nowrap;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(6,27,74,.12);
  background:#fff;
  font-weight:700;
  font-size:.92rem;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(4,10,33,.86) 0%, rgba(4,10,33,.74) 40%, rgba(4,10,33,.36) 100%),
    url('hero.jpg') center right / cover no-repeat;
}

.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 560px) 1fr;
  align-items:center;
  gap:28px;
  padding:72px 0;
}
.hero-copy{
  color:#fff;
  max-width:640px;
}



.kicker{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:700;
  font-size:.84rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero h1{
  margin:14px 0 14px;
  font-size:clamp(1.8rem, 3.5vw, 3.45rem);
  line-height:1.05;
  letter-spacing:-.05em;
  max-width:14ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-size:.95rem;
  font-weight:700;
  line-height:1;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary,
.btn-small{
  background:linear-gradient(135deg,var(--cyan),#69aaff);
  color:#04102c;
  box-shadow:0 12px 26px rgba(33,196,255,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}


/* Sections */
.section{
  padding:72px 0;
}
.section-surface{
  background:rgba(255,255,255,.70);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-heading{
  margin-bottom:18px;
}
.section-heading.center{
  text-align:center;
}
.section-heading h2{
  font-size:clamp(1.8rem, 2.5vw, 3rem);
  line-height:1.1;
  margin:0;
  letter-spacing:-.03em;
}
.section-subtitle{
  margin:10px 0 0;
  color:var(--muted);
  max-width:58ch;
}
.section-heading.center .section-subtitle{
  margin-left:auto;
  margin-right:auto;
}

/* Cards */
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}
.four-up{
  grid-template-columns:repeat(4, minmax(0,1fr));
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(6,27,74,.07);
  display:flex;
  flex-direction:column;
  height:100%;
}
.solution-card{
  padding:20px;
}
.solution-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(13,79,214,.10), rgba(33,196,255,.12));
  color:var(--blue);
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:18px;
}
.card .img{
  height:176px;
  overflow:hidden;
  background:#eef5ff;
}
.card .img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.package-card .img img{
  object-fit:contain;
  padding:16px;
  background:linear-gradient(180deg,#fff,#f3f8ff);
}
.card .body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.solution-card .body{
  padding:0;
  gap:10px;
}
.card .body h3,
.solution-card .body h3{
  margin:0;
  line-height:1.2;
  font-size:1.05rem;
}
.card .body p,
.solution-card .body p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  flex:1;
}
.service-lead,
.package-lead{
  margin-top:auto;
  display:flex;
  justify-content:flex-end;
}
.service-lead .btn,
.package-lead .btn{
  width:auto;
  padding:10px 14px;
  font-size:.9rem;
}

/* CTA strip */
.section-cta{
  padding-top:34px;
}
.cta-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 26px;
  border-radius:22px;
  background:linear-gradient(135deg, #071a49, #061338);
  color:#fff;
  box-shadow:var(--shadow);
}
.cta-copy-wrap{
  display:grid;
  gap:6px;
}
.cta-copy-wrap h3{
  margin:0;
  font-size:1.22rem;
}
.cta-copy-wrap p{
  margin:0;
  color:rgba(255,255,255,.84);
}

/* Why section */
.why-heading{margin-bottom:14px}
.why-top-text{
  display:grid;
  gap:14px;
  margin-bottom:22px;
}
.why-top-text p{
  margin:0;
  font-size:1.04rem;
  line-height:1.65;
}
.why-bottom-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:18px;
  align-items:stretch;
}
.why-image{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  aspect-ratio:.95 / 1;
}
.why-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.why-copy-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  grid-template-rows:repeat(2, minmax(0,1fr));
  gap:14px;
}
.feature{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 24px rgba(6,27,74,.05);
}
.feature strong{
  display:block;
  margin-bottom:8px;
  color:var(--navy);
}
.feature p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

/* Pages */
.page-hero{padding:36px 0 16px;}
.page-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:center;
}
.page-hero h1{
  margin:0 0 12px;
  font-size:clamp(2rem, 3.5vw, 3.6rem);
  line-height:1.05;
  letter-spacing:-.04em;
}
.page-subtitle{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.58;
  max-width:52ch;
}
.page-hero-panel{border-radius:28px;overflow:hidden;box-shadow:var(--shadow);min-height:170px;}
.page-hero-panel img{width:100%;height:100%;min-height:170px;object-fit:cover;}
.page-content{
  padding:18px 0 72px;
}
.content-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  box-shadow:0 12px 28px rgba(6,27,74,.07);
}

/* Responsive */
@media (max-width: 1100px){
  .hero-inner{
    grid-template-columns:1fr;
  }
  .hero-visual{
    min-height:260px;
  }
  .hero-image-shell,
  
  .hero-logo-overlap{
    width:min(220px, 42vw);
    right:12px;
  }
  .services-grid,
  .packages-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 760px){
  .hero{
    min-height:auto;
    padding:0;
  }
  .hero-inner{
    padding:54px 0;
  }
  .hero-copy h1{
    max-width:none;
    font-size:clamp(1.75rem, 8vw, 2.5rem);
  }
  .hero-actions{
    margin-top:18px;
  }
  .hero-visual{
    min-height:220px;
  }
  .hero-image-shell,
  
  .hero-logo-overlap{
    width:min(180px, 44vw);
    right:8px;
    padding:12px;
  }
  .services-grid,
  .packages-grid{
    grid-template-columns:1fr;
  }
  .card .img{
    height:160px;
  }
  .cta-strip{
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
  }
  .cta-strip .btn{
    width:auto;
  }
}

.hero{
  min-height:58vh;
}
.hero-inner{
  align-items:center;
}
.hero-visual{
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-logo-overlap{
  position:relative;
  right:auto;
  top:auto;
  transform:none;
  width:min(260px, 34vw);
  aspect-ratio:1 / 1;
  padding:10px;
  background:transparent;
  border:none;
  box-shadow:none;
}
.hero-logo-overlap img{
  width:100%;
  height:100%;
  object-fit:contain;
}

@media (max-width:1100px){
  .hero{
    min-height:auto;
  }
  .hero-visual{
    min-height:180px;
  }
}

@media (max-width:760px){
  .hero{
    min-height:auto;
  }
  .hero-visual{
    min-height:140px;
  }
  .hero-logo-overlap{
    width:min(180px, 46vw);
  }
}









@media (max-width:760px){
  
}


/* Height reduction refinements */
.hero{
  min-height:48vh !important;
}

.hero-inner{
  padding:44px 0 !important;
}

.hero-copy h1{
  font-size:clamp(1.6rem, 3vw, 3rem) !important;
  max-width:16ch !important;
}

.hero-tagline{
  font-size:1rem !important;
}

.hero-logo-overlap{
  width:min(200px, 28vw) !important;
}

.hero-image-shell,
.hero-image{
  min-height:240px !important;
}

.hero-banner img{
  min-height:220px !important;
}



.page-hero{
  padding:34px 0 14px !important;
}

.page-hero-panel{
  min-height:170px !important;
}

.page-hero-panel img{
  min-height:170px !important;
}

@media (max-width:760px){
  .hero{
    min-height:auto !important;
  }

  .hero-inner{
    padding:34px 0 !important;
  }

  .hero-copy h1{
    font-size:clamp(1.5rem, 7vw, 2.1rem) !important;
  }

  .hero-banner img,
  .hero-image-shell,
  .hero-image{
    min-height:160px !important;
  }

  .hero-logo-overlap{
    width:min(150px, 40vw) !important;
  }

  
}


/* Explicit DatroXpress page visual fixes */





@media (max-width:760px){
  
}


/* DatroXpress adjustments */
.dxp-hero-visual{
  position:relative;
  min-height:320px;
}
.dxp-hero-image-shell{
  width:100%;
  min-height:320px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(6,27,74,.16);
}
.dxp-hero-image{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
}
.dxp-hero-logo{
  position:absolute;
  right:-18px;
  top:50%;
  transform:translateY(-50%);
  width:min(260px, 34vw);
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 42px rgba(0,0,0,.24);
}
.dxp-hero-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.30));
}

/* Dark blue fit boxes */
.dxp-fit{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:14px;
}
.dxp-fit li{
  background:linear-gradient(135deg, #061b4a, #0d4fd6);
  color:#ffffff;
  padding:18px 20px;
  border-radius:16px;
  box-shadow:0 12px 28px rgba(6,27,74,.18);
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
  line-height:1.5;
}

@media (max-width:1100px){
  .dxp-hero-inner{
    grid-template-columns:1fr;
  }
  .dxp-hero-visual{
    min-height:240px;
  }
  .dxp-hero-image-shell,
  .dxp-hero-image{
    min-height:240px;
  }
  .dxp-hero-logo{
    width:min(220px, 42vw);
    right:12px;
  }
}
@media (max-width:760px){
  .dxp-hero{
    min-height:auto;
  }
  .dxp-hero-inner{
    padding:52px 0;
  }
  .dxp-hero-visual{
    min-height:180px;
  }
  .dxp-hero-image-shell,
  .dxp-hero-image{
    min-height:180px;
  }
  .dxp-hero-logo{
    width:min(170px, 44vw);
    right:8px;
  }
  .dxp-fit li{
    padding:16px;
  }
}

/* Responsive */
@media (max-width: 1100px){
  .hero-inner,
  .footer-grid,
  .page-hero-grid{
    grid-template-columns:1fr;
  }
  .nav-wrap{
    width:100%;
    justify-content:flex-start;
  }
  .primary-nav{
    width:100%;
  }
  .primary-nav ul{
    justify-content:flex-start;
    min-width:max-content;
  }
  .primary-nav .sub-menu{
    display:none !important;
  }
  .four-up{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .why-bottom-layout{
    grid-template-columns:1fr;
  }
  .why-image{
    aspect-ratio:auto;
    height:230px;
  }
  .why-copy-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .card-grid{
    grid-template-columns:1fr;
  }
  .card .img{
    height:150px;
  }
  .cta-strip{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 760px){
  .section{
    padding:48px 0;
  }
  .hero{
    min-height: 76vh;
    padding:0;
  }
  .hero-inner{
    padding:54px 0;
  }
  .hero h1{
    max-width:none;
    font-size:clamp(1.75rem, 7vw, 2.4rem);
  }
  .hero-tagline{
    max-width:none;
    font-size:.98rem;
  }
  .brand-logo{
    width:42px;
    height:42px;
  }
  .brand-title{
    font-size:.92rem;
    white-space:normal;
  }
  .btn{
    padding:10px 14px;
    font-size:.9rem;
  }
  .four-up{
    grid-template-columns:1fr;
  }
  .hero-actions{
    gap:10px;
  }
  .page-hero{
    padding:40px 0 18px;
  }
  .page-hero-panel{
    min-height:160px;
  }
  .page-hero-panel img{
    min-height:160px;
  }
  .content-wrap{
    padding:18px;
  }
  .why-image{
    height:180px;
  }
  .card .img{
    height:140px;
  }
  .card .body,
  .solution-card{
    padding:14px;
  }
  .footer-links-row{
    gap:12px;
  }
  .footer-links-row a{
    font-size:.92rem;
  }
  .cta-strip{
    padding:18px;
  }
  .cta-copy-wrap h3{
    font-size:1.08rem;
  }
}








/* v4: simple top menu */
.nav-wrap{
  overflow:visible !important;
}
.primary-nav{
  overflow:visible !important;
}
.menu-root{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  padding:0;
  margin:0;
  min-width:max-content;
}
.menu-root > li{
  flex:0 0 auto;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  padding:8px 0;
  color:var(--navy);
  font-weight:600;
  white-space:nowrap;
  background:transparent;
  border:0;
  font:inherit;
  cursor:pointer;
  text-decoration:none;
}
.search-toggle{
  flex:0 0 auto;
  white-space:nowrap;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(6,27,74,.12);
  background:#fff;
  font-weight:700;
  font-size:.92rem;
}

/* v4 footer */
.site-footer{
  background:#061b4a !important;
  color:#fff !important;
}
.site-footer *{
  color:#fff;
}
.footer-grid{
  padding:28px 0 18px;
}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-brand-row img{
  width:28px;
  height:28px;
  object-fit:contain;
}
.footer-brand-row strong{
  font-size:.88rem;
  font-weight:700;
}
.footer-meta{
  margin-top:12px;
  font-size:.72rem;
  line-height:1.45;
}
.footer-links-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:0;
  padding:14px 0 12px;
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.footer-links-row a{
  font-size:.72rem;
  font-weight:600;
  padding:0 10px;
  white-space:nowrap;
  opacity:.95;
  color:#fff !important;
}
.footer-divider{
  display:inline-block;
  margin:0 6px;
  color:rgba(255,255,255,.38);
  font-size:.72rem;
  line-height:1;
}
.footer-copy{
  text-align:center;
  padding:14px 0 22px;
  font-size:.7rem;
  color:rgba(255,255,255,.92);
}

/* mobile */
@media (max-width:1100px){
  .nav-wrap{
    width:100%;
    justify-content:flex-start;
    overflow-x:auto !important;
    -webkit-overflow-scrolling:touch;
  }
  .primary-nav{
    width:100%;
    overflow-x:auto !important;
  }
  .menu-root{
    justify-content:flex-start;
  }
}








/* About Us page v7 */
.about-banner{
  position:relative;
  min-height:130px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(4,10,33,.78) 0%, rgba(4,10,33,.68) 40%, rgba(4,10,33,.34) 100%),
    url('hero.jpg') center right / cover no-repeat;
}
.about-banner-inner{
  color:#fff;
  padding:24px 0;
  max-width:760px;
}
.about-banner .kicker{
  display:inline-flex;
  margin-bottom:10px;
}
.about-banner h1{
  margin:0;
  font-size:clamp(1.85rem, 4vw, 3.1rem);
  line-height:1.06;
  letter-spacing:-.04em;
  max-width:16ch;
}
.about-lead{
  padding-top:28px;
}
.about-intro-copy h2{
  margin-top:0;
  margin-bottom:14px;
  color:var(--navy);
  font-size:clamp(1.55rem, 2.4vw, 2.45rem);
}
.about-intro-copy p{
  margin:0 0 14px;
  line-height:1.75;
}
.about-quote-section{
  padding-top:8px;
}
.about-quote-block{
  margin:0;
  padding:26px 28px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(13,79,214,.08), rgba(33,196,255,.10));
  border:1px solid rgba(13,79,214,.10);
  color:var(--navy);
  font-size:1.06rem;
  line-height:1.8;
  font-weight:600;
  font-style:italic;
  box-shadow:0 12px 28px rgba(6,27,74,.06);
}
.about-quote-author{
  margin-top:14px;
  color:var(--navy);
  font-weight:700;
  font-size:1rem;
}
.about-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.about-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  box-shadow:0 12px 28px rgba(6,27,74,.07);
}
.about-card h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:1.15rem;
}
.about-card p{
  margin:0 0 12px;
  line-height:1.6;
}
.about-card ul{
  margin:0;
  padding-left:18px;
  color:var(--text);
  line-height:1.65;
}
.offer-list{
  list-style:none;
  padding-left:0 !important;
}
.offer-list li{
  margin-bottom:12px;
}

@media (max-width:1100px){
  .about-card-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:760px){
  .about-banner{
    min-height:110px;
  }
  .about-banner-inner{
    padding:20px 0;
  }
  .about-lead{
    padding-top:22px;
  }
  .about-quote-block{
    padding:20px 20px;
    font-size:1rem;
  }
}


/* v9 About banner cleanup */
.about-banner .kicker{
  display:none !important;
}
.about-banner-inner{
  border:none !important;
  box-shadow:none !important;
}


/* v10 offer links */
.offer-link{
  color:var(--navy);
  text-decoration:none;
}
.offer-link:hover{
  text-decoration:underline;
}


/* v11 contact page */
.contact-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.contact-form{
  display:grid;
  gap:16px;
  margin-top:22px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
  color:var(--navy);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(6,27,74,.12);
  border-radius:14px;
  padding:12px 14px;
  font:inherit;
  background:#fff;
}
.contact-form textarea{
  resize:vertical;
}
.contact-success{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(33,196,255,.10);
  border:1px solid rgba(13,79,214,.12);
  color:var(--navy);
  font-weight:600;
}
.contact-side-panel{
  background:linear-gradient(135deg,#071a49,#061338);
  color:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-side-panel h3{
  margin-top:0;
  color:#fff;
}
.contact-side-panel ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
}
.contact-side-panel li{
  margin-bottom:10px;
}

@media (max-width:1100px){
  .contact-layout,
  .form-grid{
    grid-template-columns:1fr;
  }
}


/* v12 page banners */
.page-banner{
  position:relative;
  min-height:52vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:#04102c;
}
.page-banner-media{
  position:absolute;
  inset:0;
}
.page-banner-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(4,10,33,.86) 0%, rgba(4,10,33,.74) 40%, rgba(4,10,33,.36) 100%);
}
.page-banner-inner{
  position:relative;
  z-index:1;
  padding:64px 0;
}
.page-banner-copy{
  color:#fff;
  max-width:760px;
}
.page-banner-copy .kicker{
  margin-bottom:12px;
}
.page-banner-copy h1{
  margin:0;
  font-size:clamp(1.9rem, 4vw, 3.5rem);
  line-height:1.04;
  letter-spacing:-.05em;
  max-width:14ch;
}
.page-banner-copy .page-subtitle{
  color:rgba(255,255,255,.92);
  max-width:46ch;
}

/* contact page */
.contact-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.contact-details{
  display:grid;
  gap:10px;
  margin:18px 0 8px;
}
.contact-details p{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  line-height:1.6;
}
.contact-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(13,79,214,.10);
  color:var(--navy);
  font-weight:700;
  flex:0 0 auto;
}
.contact-details a{
  color:var(--navy);
  text-decoration:none;
}
.contact-details a:hover{
  text-decoration:underline;
}
.contact-form{
  display:grid;
  gap:16px;
  margin-top:22px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
  color:var(--navy);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(6,27,74,.12);
  border-radius:14px;
  padding:12px 14px;
  font:inherit;
  background:#fff;
}
.contact-form textarea{
  resize:vertical;
}
.contact-success{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(33,196,255,.10);
  border:1px solid rgba(13,79,214,.12);
  color:var(--navy);
  font-weight:600;
}
.contact-side-panel{
  background:linear-gradient(135deg,#071a49,#061338);
  color:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-side-panel h3{
  margin-top:0;
  color:#fff;
}
.contact-side-panel ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
}
.contact-side-panel li{
  margin-bottom:10px;
}

@media (max-width:1100px){
  .page-banner{
    min-height:42vh;
  }
  .contact-layout,
  .form-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:760px){
  .page-banner{
    min-height:320px;
  }
  .page-banner-inner{
    padding:40px 0;
  }
  .page-banner-copy h1{
    max-width:none;
  }
}


/* v13 footer contact details */
.footer-contact{
  margin-top:10px;
  font-size:.72rem;
  line-height:1.5;
  color:rgba(255,255,255,.9);
}
.footer-contact a{
  color:#fff;
  text-decoration:none;
}
.footer-contact a:hover{
  text-decoration:underline;
}
.footer-contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:6px;
}
.footer-contact-row span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.footer-contact-icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:.8rem;
  flex:0 0 auto;
}


/* banner cleanup */
.page-banner{
  position:relative;
  min-height:52vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:#04102c;
}
.page-banner-media{
  position:absolute;
  inset:0;
}
.page-banner-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(4,10,33,.86) 0%, rgba(4,10,33,.74) 40%, rgba(4,10,33,.36) 100%);
}
.page-banner-inner{
  position:relative;
  z-index:1;
  padding:64px 0;
}
.page-banner-copy{
  color:#fff;
  max-width:760px;
}
.page-banner-copy h1{
  margin:0;
  font-size:clamp(1.9rem, 4vw, 3.5rem);
  line-height:1.04;
  letter-spacing:-.05em;
  max-width:14ch;
}
.page-banner-copy .page-subtitle{
  color:rgba(255,255,255,.92);
  max-width:46ch;
}

@media (max-width:1100px){
  .page-banner{
    min-height:42vh;
  }
}
@media (max-width:760px){
  .page-banner{
    min-height:320px;
  }
  .page-banner-inner{
    padding:40px 0;
  }
}


/* v14 legal content */
.legal-content h2{
  margin-top:28px;
  color:var(--navy);
}
.legal-content h3{
  margin-top:22px;
  color:var(--navy);
}
.legal-content p,
.legal-content li{
  line-height:1.7;
}
.legal-content ul{
  padding-left:20px;
}
