*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f6f9fd;
  color:#071d35;
  line-height:1.6;
}

a{
  text-decoration:none;
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

:root{
  --navy:#071d35;
  --blue:#0057d9;
  --sky:#eaf5ff;
  --orange:#ff6b35;
  --text:#475569;
}

/* HEADER */
.header{
  background:rgba(7,29,53,.94);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:1000;
}
.header.active{
  box-shadow:0 12px 35px rgba(0,0,0,.22);
}
.nav{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#fff;
  font-size:30px;
  font-weight:400;
  letter-spacing:-1px;
}

.logo span{
  font-weight:800;
}

.nav nav{
  display:flex;
  gap:34px;
}

.nav nav a{
  color:#dbeafe;
  font-size:15px;
  font-weight:800;
}

.nav-call{
  background:#fff;
  color:var(--navy);
  padding:12px 18px;
  border-radius:50px;
  font-weight:900;
  font-size:14px;
}

/* HERO */
.hero{
  background:
    radial-gradient(circle at right top,rgba(0,87,217,.35),transparent 35%),
    linear-gradient(135deg,#061a32 0%,#092b55 55%,#003b80 100%);
  color:#fff;
  padding:85px 0 70px;
  overflow:hidden;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-160px;
  width:460px;
  height:460px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

.tag{
  display:inline-block;
  padding:8px 16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  border-radius:50px;
  font-weight:900;
  margin-bottom:18px;
  font-size:13px;
  text-transform:uppercase;
}

.hero h1{
  font-size:36px;
  line-height:1.02;
  max-width:720px;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.hero p{
  color:#dbeafe;
  font-size:21px;
  max-width:620px;
  font-weight:650;
  margin-bottom:32px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-main,
.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:14px;
  font-weight:950;
  transition:.3s;
}

.btn-main{
  background:linear-gradient(135deg,#ff6b35,#ff2d55);
  color:#fff;
  box-shadow:0 18px 40px rgba(255,107,53,.35);
}

.btn-light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}

.hero-panel{
  position:relative;
}

.hero-panel img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:36px;
  box-shadow:0 35px 90px rgba(0,0,0,.35);
}

.call-card{
  position:absolute;
  left:-35px;
  bottom:35px;
  background:#fff;
  color:var(--navy);
  padding:24px;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
  z-index:3;
  max-width:260px;
}

.call-card i{
  width:50px;
  height:50px;
  background:#eaf5ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  font-size:22px;
  margin-bottom:12px;
}

.call-card h3{
  font-size:22px;
}

.call-card p{
  color:#003b80;
  font-size:15px;
  margin:5px 0 0;
}

/* QUICK STRIP */
.quick-strip{
  margin-top:-35px;
  position:relative;
  z-index:4;
}

.quick-strip a{
    color:#000;
}

.strip-grid{
  background:#fff;
  border-radius:22px;
  box-shadow:0 20px 55px rgba(15,23,42,.12);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  overflow:hidden;
}

.strip-grid div{
  padding:26px;
  display:flex;
  gap:14px;
  align-items:center;
  border-right:1px solid #e5edf6;
  font-weight:900;
}

.strip-grid i{
  color:var(--blue);
  font-size:24px;
}

/* SECTION COMMON */
.support-section,
.adventure{
  padding:50px 0;
  background:#f6f9fd;
}

.title-box{
  text-align:center;
  margin-bottom:45px;
}

.title-box span{
  color:var(--blue);
  font-size:13px;
  text-transform:uppercase;
  font-weight:950;
  letter-spacing:.9px;
}

.title-box h2{
  font-size:36px;
  line-height:1.15;
  color:var(--navy);
}

.title-box p{
  color:var(--text);
  font-weight:650;
  margin-top:8px;
}

/* SUPPORT DIFFERENT LAYOUT */
.service-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
}

.service-big{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(15,23,42,.09);
}

.service-big img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.service-big div{
  padding:32px;
}

.service-big h3,
.mini-service h3{
  font-size:30px;
  color:var(--navy);
  margin-bottom:8px;
}

.service-big p,
.mini-service p{
  color:var(--text);
  font-weight:650;
  margin-bottom:22px;
}

.service-big a,
.mini-service a,
.adventure-card a,
.small-btn,
.cta a{
  display:inline-flex;
  background:linear-gradient(135deg,#0033a1,#0057d9);
  color:#fff;
  padding:13px 22px;
  border-radius:12px;
  font-weight:950;
}

.service-small{
  display:grid;
  gap:28px;
}

.mini-service{
  background:#fff;
  border-radius:28px;
  padding:36px;
  box-shadow:0 22px 60px rgba(15,23,42,.09);
}

.mini-service.dark{
  background:linear-gradient(135deg,#071d35,#003b80);
  color:#fff;
}

.mini-service.dark h3,
.mini-service.dark p{
  color:#fff;
}

/* ABOUT */
.about{
  padding:50px 0;
  background:#fff;
}

.about-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}

.tag.blue{
  background:#eaf5ff;
  color:#0057d9;
  border:1px solid #dbeafe;
}

.about-left h2{
  font-size:36px;
  line-height:1.1;
  margin-bottom:18px;
}

.about-left p{
  color:#334155;
  font-weight:600;
  margin-bottom:13px;
}

.small-btn{
  margin-bottom:24px;
  font-size:14px;
}

.brand-box{
  background:
    linear-gradient(145deg,#ffffff,#eaf5ff);
  border:1px solid #dbeafe;
  border-radius:36px;
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  box-shadow:0 30px 80px rgba(15,23,42,.10);
  transform:rotate(2deg);
}

.jet-logo{
  color:#1456b8;
  font-size:86px;
  letter-spacing:-5px;
}

.jet-logo sup{
  font-size:22px;
}

.support-chip{
  margin-top:22px;
  background:#fff;
  padding:14px 18px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(15,23,42,.08);
  font-weight:900;
}

/* ADVENTURE DIFFERENT */
.adventure-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.adventure-card,
.adventure-card.wide{
  display:block;
  border-radius:24px;
  overflow:hidden;
}

.adventure-card img,
.adventure-card.wide img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.adventure-card div{
  padding:24px;
}

/* TABLET */
@media(max-width:992px){
  .adventure-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:768px){
  .adventure-grid{
    grid-template-columns:1fr;
  }

  .adventure-card img,
  .adventure-card.wide img{
    height:220px;
  }
}

.adventure-card div{
  padding:28px;
}

.adventure-card h3{
  font-size:24px;
  color:var(--navy);
  margin-bottom:8px;
}

.adventure-card p{
  color:var(--text);
  font-weight:650;
  margin-bottom:20px;
  font-size: 16px;
}

.dark-card{
  background:#071d35;
}

.dark-card h3,
.dark-card p{
  color:#fff;
}

/* CTA */
.cta{
  padding:80px 0;
  background:#071d35;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:#fff;
}

.cta span{
  color:#93c5fd;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.cta h2{
  font-size:42px;
  line-height:1.1;
  margin:8px 0;
}

.cta p{
  color:#dbeafe;
  max-width:480px;
  font-weight:600;
  font-size: 16px;
}

.cta a{
  background:linear-gradient(135deg,#ff6b35,#ff2d55);
  white-space:nowrap;
}

/* FOOTER */
.footer{
  background:#fff;
  padding:60px 0 25px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.footer h4{
  color:var(--navy);
  margin-bottom:15px;
}

.footer a{
  display:block;
  color:#0033a1;
  font-weight:800;
  font-size:14px;
  margin-bottom:8px;
}

.footer p{
  color:var(--text);
  font-weight:650;
}

.footer strong{
  display:block;
  color:#0033a1;
  margin-top:12px;
  font-size:20px;
}

.footer-bottom{
  border-top:1px solid #e5edf6;
  margin-top:40px;
  padding-top:20px;
  color:#64748b;
  font-size:13px;
  margin-left: 30px;
}

/* FLOAT */
.float-call{
  position:fixed;
  right:20px;
  bottom:20px;
  background:linear-gradient(135deg,#0033a1,#0057d9);
  color:#fff;
  padding:15px 22px;
  border-radius:50px;
  font-weight:950;
  box-shadow:0 18px 45px rgba(0,51,161,.35);
  z-index:999;
}

/* RESPONSIVE */
@media(max-width:950px){
  .nav nav{
    display:none;
  }

  .hero-grid,
  .service-layout,
  .about-wrap,
  .adventure-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:42px;
  }

  .hero-panel img{
    height:300px;
  }

  .call-card{
    left:20px;
  }

  .strip-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    text-align:center;
  }

  .brand-box{
    transform:none;
  }

  .adventure-card.wide img{
    height:250px;
  }
}

@media(max-width:560px){
  .nav-call{
    display:none;
  }

  .hero{
    padding:60px 0;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:17px;
  }

  .btn-main,
  .btn-light{
    width:100%;
  }

  .title-box h2,
  .about-left h2,
  .cta h2{
    font-size:32px;
  }

  .jet-logo{
    font-size:58px;
  }

  .float-call{
    right:14px;
    bottom:14px;
    padding:13px 16px;
  }
}