:root{
  --bg:#071a2e;
  --bg2:#0b2b4a;
  --card:#0d2f53;
  --muted:#b8c7d6;
  --text:#f5f8fb;
  --accent:#f39b1d;
  --accent2:#1d8db8;
  --shadow: 0 12px 30px rgba(0,0,0,.28);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(243,155,29,.25), transparent 60%),
              radial-gradient(900px 600px at 110% 10%, rgba(29,141,184,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), #061322 75%);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; z-index:9999; border-radius:10px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,19,34,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__logo{height:46px; width:auto}

.nav{display:flex; align-items:center; gap:10px}
.nav__toggle{
  display:none;
  width:44px; height:44px; border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color:var(--text);
  border-radius:14px; cursor:pointer;
}
.nav__toggleBars{
  display:block; width:18px; height:2px; background:var(--text);
  margin:0 auto; position:relative; border-radius:2px;
}
.nav__toggleBars:before,.nav__toggleBars:after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text); border-radius:2px;
}
.nav__toggleBars:before{top:-6px}
.nav__toggleBars:after{top:6px}

.nav__list{
  list-style:none; display:flex; gap:18px; margin:0; padding:0;
}
.nav__list a{
  text-decoration:none; color:rgba(245,248,251,.92);
  font-weight:600; font-size:14px;
  padding:10px 10px; border-radius:12px;
}
.nav__list a:hover{background:rgba(255,255,255,.08)}

.header__cta{display:flex; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(90deg, var(--accent), #ffbf59);
  color:#1a2430;
  border-color: transparent;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn:active{transform: translateY(0px) scale(.99)}

.hero{
  position:relative;
  padding:64px 0 26px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.hero__bg{
  position:absolute; inset:-200px -200px auto -200px;
  height:420px;
  background: radial-gradient(600px 340px at 30% 40%, rgba(243,155,29,.28), transparent 70%),
              radial-gradient(520px 320px at 70% 60%, rgba(29,141,184,.22), transparent 70%);
  filter: blur(0px);
  pointer-events:none;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-size:13px;
  color:rgba(245,248,251,.92);
}
h1{font-size:44px; line-height:1.05; margin:14px 0 12px}
.lead{font-size:16px; color:rgba(245,248,251,.86); margin:0 0 22px; max-width:58ch}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px}
.hero__meta{display:flex; gap:12px; flex-wrap:wrap}
.metaCard{
  min-width: 150px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:12px 14px;
}
.metaCard strong{font-size:20px}
.metaCard span{display:block; color:rgba(245,248,251,.78); font-size:13px; margin-top:2px}

.hero__media{position:relative}
.mediaCard{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.mediaCard--floating{
  position:absolute;
  right:-12px;
  bottom:-18px;
  width: 62%;
  transform: rotate(1.2deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.trust{padding:14px 0 10px}
.trust__inner{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding:18px 18px;
}
.trust__title{margin:0 0 10px; font-weight:700; color:rgba(245,248,251,.92)}
.trust__chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-size:13px;
  color:rgba(245,248,251,.82);
}

.section{padding:64px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:22px}
.section__head h2{font-size:32px; margin:0 0 8px}
.muted{color:rgba(245,248,251,.74)}
.small{font-size:13px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding:18px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:rgba(245,248,251,.78)}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}
.list{margin:14px 0 0; padding-left:18px}
.list li{margin:10px 0; color:rgba(245,248,251,.78)}
.note{
  margin-top:16px;
  background: rgba(29,141,184,.12);
  border:1px solid rgba(29,141,184,.25);
  padding:12px 14px;
  border-radius: 16px;
  color:rgba(245,248,251,.86);
}

.accordion{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow:hidden;
}
.accordion__item{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background: transparent;
  color: var(--text);
  border:0;
  border-bottom:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  font-weight:700;
  text-align:left;
}
.accordion__item i{
  width:10px; height:10px;
  border-right:2px solid rgba(245,248,251,.8);
  border-bottom:2px solid rgba(245,248,251,.8);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.accordion__item[aria-expanded="true"] i{transform: rotate(-135deg)}
.accordion__panel{
  padding: 0 16px 14px;
  color:rgba(245,248,251,.78);
  display:none;
}
.accordion__panel p{margin:0}

.brochureCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(243,155,29,.18), rgba(29,141,184,.10));
  border:1px solid rgba(255,255,255,.12);
}
.brochureCard h3{margin:0 0 6px}
.brochureCard p{margin:0}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery__item{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
}
.gallery__item img{width:100%; height:260px; object-fit:cover; transition: transform .25s ease}
.gallery__item:hover img{transform: scale(1.03)}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:18px;
}
.lightbox__img{
  max-width:min(980px, 96vw);
  max-height:88vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background:#0b2b4a;
}
.lightbox__close{
  position:absolute;
  top:18px; right:18px;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
  font-size:24px;
}

.videoGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.video{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
}
.video iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
  display:block;
}

.fbWrap{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  width:100%;
  max-width:520px;
}
.fbWrap iframe{width:100%; height:500px}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  align-items:start;
}
.contactCards{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0}
.contactCard{
  flex:1;
  min-width: 220px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding:14px 14px;
}
.contactCard h3{margin:0 0 8px}
.contactCard a{color:rgba(245,248,251,.92)}
.address{margin-top:12px}
.map{
  margin-top:12px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.map iframe{width:100%; height:280px; border:0}

.formCard{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding:18px 16px;
  box-shadow: var(--shadow);
}
form{display:grid; gap:12px}
label{display:grid; gap:6px; font-weight:700; font-size:14px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(243,155,29,.55)}
textarea{resize:vertical}

.float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
}
.float__btn{
  width:56px; height:56px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(29,141,184,.95), rgba(11,43,74,.95));
  color: var(--text);
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display:grid; place-items:center;
}
.float__icon{font-size:22px}
.float__panel{
  position:absolute;
  right:0;
  bottom:68px;
  width: 260px;
  background: rgba(6,19,34,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding:12px;
  box-shadow: var(--shadow);
  display:none;
}
.float__title{margin:0 0 8px; font-weight:800}
.float__link{
  display:block;
  padding:10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  margin-bottom:10px;
  font-weight:700;
}
.float__link:hover{background: rgba(255,255,255,.10)}

.footer{
  padding:26px 0 44px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;
  gap:12px;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer a{color:rgba(245,248,251,.92)}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

.sr{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .mediaCard--floating{position:relative; right:auto; bottom:auto; width:100%; transform:none; margin-top:12px}
  h1{font-size:38px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .videoGrid{grid-template-columns:1fr}
  .fbWrap{max-width:100%}
  .header__cta{display:none}
  .nav__toggle{display:inline-flex}
  .nav__list{
    position:absolute;
    right:20px;
    top:70px;
    flex-direction:column;
    gap:8px;
    padding:10px;
    background: rgba(6,19,34,.96);
    border:1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    width:min(320px, calc(100vw - 40px));
    display:none;
  }
  .nav__list.show{display:flex}
}
@media (max-width: 560px){
  .cards{grid-template-columns:1fr}
  h1{font-size:34px}
  .gallery{grid-template-columns:1fr}
  .gallery__item img{height:220px}
}
