/* layout.css: containers, header, hero, grids, sections */

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo{
  width: 86px;
  height: auto;
}

.nav-wrap{
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  background: #0b1220;
}
.hero__bg{
  position: absolute;
  inset: 0;

  background-image: url("/assets/images/hero/hero.jpg");
  background-repeat: no-repeat;
  background-position: 75% center;
  background-size: cover;

  transform: scale(1.01);
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.70) 45%, rgba(255,255,255,0.10) 100%),
    radial-gradient(1000px 500px at 20% 40%, rgba(255,255,255,0.55), rgba(255,255,255,0));
}

.hero__content{
  position: relative;
  padding: clamp(34px, 6vw, 70px) 0 26px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero__lead{
  max-width: 620px;
}

.hero__sub{
  font-size: 15px;
  max-width: 560px;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}


/* Feature strip */
.feature-strip{
  position: relative;
  margin-top: -18px;
  padding-bottom: 34px;
}
.feature-strip__inner{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}

.features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.section{
  padding: 52px 0;
}

.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(244,246,248,1) 100%);
}

.split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.media{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229,231,235,0.9);
  background: #fff;
}

.section__kicker{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  color: rgba(17,24,39,0.55);
  margin-bottom: 10px;
}

/* Operations cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.center{
  text-align: center;
}

/* Map strip */
.map-strip{
  padding: 0 0 70px;
}
.map{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.map__bg{
  height: 280px;
  background: url("/assets/images/map/map.jpg") center/cover no-repeat;
  filter: saturate(1.05);
}
.map__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 55%, rgba(255,255,255,0) 100%);
}
.map__content{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.map__content-inner{
  width: min(700px, 92%);
  padding: 22px;
}

/* Footer */
.footer{
  margin-top: auto;
  background: #0b1220;
  color: rgba(255,255,255,0.88);
}
.footer__top{
  padding: 44px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 22px;
}
.footer a{ color: rgba(255,255,255,0.88); }
.footer a:hover{ color: #fff; }

.footer__bottom{
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 960px){
  .hero__grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}
/* Page hero */
/* About hero: vibrant logo-colored overlay BEHIND text */
.page-hero{
  position: relative;
  overflow: hidden;
  isolation: isolate; /* ensures ::before stays behind content cleanly */
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;          /* behind */
  pointer-events: none;

  /* More vibrant brand gradients */
  background:
    radial-gradient(900px 520px at 12% 12%,
      rgba(246,170,20,0.35),
      rgba(246,170,20,0) 62%),
    radial-gradient(1100px 620px at 85% 18%,
      rgba(47,137,179,0.28),
      rgba(47,137,179,0) 68%),
    radial-gradient(900px 520px at 70% 90%,
      rgba(26,114,157,0.20),
      rgba(26,114,157,0) 60%),
    /* lighter base so text stays crisp */
    linear-gradient(180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(244,246,248,1) 100%);
}

/* Keep hero content above overlay */
.page-hero > .container{
  position: relative;
  z-index: 1;
}


.page-hero__sub{
  max-width: 720px;
  font-size: 15px;
}
/* Reusable split sections (like your screenshot) */
.content-section{
  padding: 54px 0;
}

.content-section + .content-section{
  padding-top: 0; /* keeps spacing clean between stacked sections */
}

.split-block{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.split-block__text{
  max-width: 720px;
}

.split-block__media{
  display: flex;
  justify-content: flex-end;
}

/* Alternating layout */
.split-block--reverse .split-block__text{
  order: 2;
}
.split-block--reverse .split-block__media{
  order: 1;
  justify-content: flex-start;
}

/* Image frame (rounded + subtle border/shadow) */
.media-frame{
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  width: min(620px, 100%);
}

.media-frame img{
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: section divider line */
.section-divider{
  margin: 0;
  border: none;
  border-top: 1px solid rgba(229,231,235,0.9);
}

/* Responsive */
@media (max-width: 960px){
  .split-block{
    grid-template-columns: 1fr;
  }

  /* On mobile, always stack text above image */
  .split-block__text{ order: 1 !important; }
  .split-block__media{ order: 2 !important; justify-content: stretch; }
  .media-frame{ width: 100%; }
}
.header,
.header__inner,
.nav-wrap{
  overflow: visible;
}
.hero__bg,
.hero__overlay{
  pointer-events: none;
}

.media__video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: var(--shadow-soft);
}

.media__video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: var(--shadow-soft);
  background: #000; /* avoids white flash before load */
}

.media--bleed{
  width: min(750px, calc(100vw - 32px));
  margin: 8px auto 0;
}
