 :root {
      --navy: #101664;
      --navy-dark: #0C1149;
      --orange: #C68A2D;
      --orange-dark: #A66F20;
      --white: #FFFFFF;
      --light: #F5F7FA;
      --grey: #65758B;
      --text: #1E293B;
      --border: #E2E8F0;
      --shadow: 0 18px 45px rgba(16, 22, 100, 0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: "Open Sans", sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { width: min(1180px, 92%); margin: 0 auto; }
    .section { padding: 100px 0; }
    .section-light { background: var(--light); }

    .section-title {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 18px;
      font-weight: 800;
    }

    .section-kicker {
      font-family: "Montserrat", sans-serif;
      color: var(--orange);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-text { color: var(--grey); font-size: 17px; max-width: 720px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 28px;
      border-radius: 10px;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(198, 138, 45, 0.28); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
    .btn-outline { border: 1.5px solid var(--white); color: var(--white); background: transparent; }
    .btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

    /* HEADER */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 88px;
      z-index: 1000;
      background: var(--navy);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }


    .logo-box {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-image {
      width: 52px;
      height: 52px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo-text strong {
      display: block;
      font-family: "Montserrat", sans-serif;
      color: var(--white);
      font-size: 20px;
      letter-spacing: 0.5px;
      line-height: 1.1;
    }

    .logo-text > span {
      display: block;
      color: rgba(255, 255, 255, 0.72);
      font-size: 11px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      color: var(--white);
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .nav-menu a { opacity: 0.88; transition: color 0.25s ease, opacity 0.25s ease; }
    .nav-menu a:hover { opacity: 1; }
    .mobile-menu-label { display: none; color: var(--white); font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 13px; }

    /* HERO */
    .hero {
      min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  padding-top: 88px;
  overflow: hidden;
  background: #071A2E;
    }

    .hero-content { max-width: 820px; padding: 80px 0; }
    .hero-kicker { color: var(--orange); font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 18px; }
    .hero-title { font-family: "Montserrat", sans-serif; font-size: clamp(44px, 7vw, 78px); line-height: 1.02; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; }
    .hero-title span { color: var(--orange); }
    .hero-text { max-width: 700px; font-size: 19px; color: rgba(255, 255, 255, 0.86); margin-bottom: 34px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
    .hero-badges { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; }
    .badge { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.88); font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700; }

    /* SERVICES */
    .center-heading { text-align: left; max-width: 780px; margin: 0 auto 52px; }
    .center-heading .section-text { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .service-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 32px 26px; box-shadow: 0 10px 28px rgba(16, 22, 100, 0.07); transition: all 0.25s ease; min-height: 290px; }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(198, 138, 45, 0.35); }
    .service-icon { width: 58px; height: 58px; border-radius: 16px; background: rgba(198, 138, 45, 0.12); color: var(--orange); display: grid; place-items: center; font-size: 28px; margin-bottom: 24px; }
    .service-card h3 { font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 21px; margin-bottom: 12px; }
    .service-card p { color: var(--grey); font-size: 15px; margin-bottom: 20px; }
    .learn-link { color: var(--orange); font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 13px; text-transform: uppercase; }

    /* SPLIT */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .image-card { position: relative; border-radius: 26px; overflow: hidden; min-height: 470px; box-shadow: var(--shadow); }
    .image-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
    .floating-card { position: absolute; right: 24px; bottom: 24px; background: var(--white); border-radius: 18px; padding: 22px; max-width: 280px; box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
    .floating-card strong { display: block; font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
    .floating-card span { color: var(--grey); font-size: 14px; }
    .check-list { margin-top: 28px; display: grid; gap: 14px; list-style: none; }
    .check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 600; }
    .check-list li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: rgba(198, 138, 45, 0.14); color: var(--orange); display: inline-grid; place-items: center; flex-shrink: 0; font-weight: 800; }

    /* WHY */
    .why { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
    .why::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(198, 138, 45, 0.11); top: -180px; right: -180px; }
    .why .section-title { color: var(--white); }
    .why .section-text { color: rgba(255,255,255,0.74); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; position: relative; }
    .why-card { padding: 30px 24px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
    .why-card span { display: block; color: var(--orange); font-family: "Montserrat", sans-serif; font-size: 34px; font-weight: 800; margin-bottom: 12px; }
    .why-card h3 { font-family: "Montserrat", sans-serif; font-size: 19px; margin-bottom: 10px; }
    .why-card p { color: rgba(255,255,255,0.72); font-size: 14px; }

    /* TEAM */
    .team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .team-card { background: var(--white); border-radius: 22px; padding: 28px 20px; border: 1px solid var(--border); text-align: center; box-shadow: 0 10px 28px rgba(16, 22, 100, 0.06); }
    .avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--orange)); display: grid; place-items: center; margin: 0 auto 18px; color: var(--white); font-family: "Montserrat", sans-serif; font-size: 26px; font-weight: 800; }
    .team-card h3 { font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 17px; margin-bottom: 8px; }
    .team-card p { color: var(--grey); font-size: 13px; line-height: 1.45; }

    /* CONTACT */
    .contact-wrapper { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: start; }
    .form-card, .contact-card { background: var(--white); border-radius: 26px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); position: sticky; top: 120px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    label { font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
    input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 14px; font: inherit; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; background: var(--white); }
    input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(198, 138, 45, 0.12); }
    textarea { min-height: 130px; resize: vertical; }
    .form-note { color: var(--grey); font-size: 13px; margin-top: 16px; }
    .contact-list { display: grid; gap: 20px; margin-top: 24px; }
    .contact-item { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
    .contact-item:last-child { border-bottom: none; }
    .contact-item strong { display: block; font-family: "Montserrat", sans-serif; color: var(--navy); margin-bottom: 6px; }
    .contact-item span, .contact-item a { color: var(--grey); font-size: 15px; }

    /* CTA */
    .cta { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); padding: 70px 0; }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .cta h2 { font-family: "Montserrat", sans-serif; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin-bottom: 10px; }
    .cta p { color: rgba(255,255,255,0.84); font-size: 17px; }
    .btn-white { background: var(--white); color: var(--navy); }
    .btn-white:hover { transform: translateY(-2px); background: var(--light); }

    /* FOOTER */
    .footer { background: var(--navy-dark); color: var(--white); padding: 70px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr; gap: 44px; margin-bottom: 42px; }
    .footer h3, .footer h4 { font-family: "Montserrat", sans-serif; margin-bottom: 18px; }
    .footer p, .footer a, .footer li { color: rgba(255,255,255,0.68); font-size: 14px; }
    .footer ul { list-style: none; display: grid; gap: 10px; }
    .footer a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,0.58); font-size: 13px; }

.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 0.8s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide:nth-child(1){
  background:
    url("air.jpg")
    center center / cover no-repeat;
}

.hero-slide:nth-child(2){
  background:
    url("sea.jpg")
    center center / cover no-repeat;
}

.hero-slide:nth-child(3){
  background:
    url("road.jpg")
    center center / cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,26,46,0.92) 0%,
      rgba(7,26,46,0.78) 35%,
      rgba(7,26,46,0.55) 60%,
      rgba(7,26,46,0.40) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,26,46,0.92) 0%,
      rgba(7,26,46,0.78) 35%,
      rgba(7,26,46,0.55) 60%,
      rgba(7,26,46,0.40) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

    @media (max-width: 1024px) {
      .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .split, .contact-wrapper { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 820px) {
.contact-card { position: static; }
      .nav-menu, .header .btn { display: none; }
      .mobile-menu-label { display: block; }
      .header, .navbar { height: 76px; }
      .logo-image { width: 60px; height: 60px; }
      .hero { padding-top: 76px; }
      .section { padding: 76px 0; }
      .hero-title { letter-spacing: -0.6px; }
      .hero-text { font-size: 17px; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
.hero-images{
  flex-direction: column;
}

.hero-left,
.hero-right{
  width:100%;
}

.hero-right{
  display:none;
}
    }

    @media (max-width: 620px) {
      .services-grid, .why-grid, .team-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
      .logo-text strong { font-size: 17px; }
      .logo-text span { font-size: 9px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .floating-card { position: static; max-width: none; border-radius: 0; }
      .image-card, .image-card img { min-height: 330px; }
      .form-card, .contact-card { padding: 26px 22px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

.required {
  color: red;
  font-weight: 700;
}

.brand-c {
  color: #C68A2D !important;
 display: inline;
font-weight: 1000;
}

.contact-row{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.contact-column{
  flex:1;
}

.nav-menu a{
  position: relative;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  background:var(--orange);

  transition:width 0.3s ease;
}

.nav-menu a:hover::after{
  width:100%;
}

.nav-menu a.active{
  color: var(--orange);
  opacity: 1;
}

.nav-menu a.active::after{
  width: 100%;
}

.package-block{
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  margin-top:14px;
  background:#ffffff;
}

.package-block h4{
  font-family:"Montserrat", sans-serif;
  color:var(--navy);
  margin-bottom:16px;
  font-size:16px;
}

.package-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.add-package-btn{
  margin-top:16px;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid var(--orange);
  background:transparent;
  color:var(--orange);
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  cursor:pointer;
}

.add-package-btn:hover{
  background:rgba(198,138,45,0.10);
}

.remove-package-btn{
  margin-top:14px;
  border:none;
  background:transparent;
  color:#b91c1c;
  font-weight:700;
  cursor:pointer;
}

@media (max-width:620px){
  .package-grid{
    grid-template-columns:1fr;
  }
}

.footer-founded{
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-trust{
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.privacy-check{
  grid-column: 1 / -1;
  margin-top: 10px;
}

.privacy-check label{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #65758B;
  font-weight: 400;
}

.privacy-check input{
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.privacy-check span{
  display: block;
}

.privacy-check a{
  color: #C68A2D;
  font-weight: 700;
  text-decoration: none;
}

.privacy-check a:hover{
  text-decoration: underline;
}

.service-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-icon svg{
  width:34px;
  height:34px;
  stroke-width:2.2;
}

.hero-link{
  display:flex;
  align-items:center;
  color:#C68A2D;
  font-weight:700;
  text-decoration:none;
}

.hero-link:hover{
  text-decoration:underline;
}

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
  z-index:999;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  display:block;
  padding:10px 18px;
  color:#183b70;
  text-decoration:none;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#f8fafc;
  color:#183b70;
}

.network-note-center{
  text-align:center;
  color:white;
  font-size:16px;
  font-weight:500;
  opacity:0.9;
  margin-bottom:20px;
}


 :root {
      --navy: #101664;
      --navy-dark: #0C1149;
      --orange: #C68A2D;
      --orange-dark: #A66F20;
      --white: #FFFFFF;
      --light: #F5F7FA;
      --grey: #65758B;
      --text: #1E293B;
      --border: #E2E8F0;
      --shadow: 0 18px 45px rgba(16, 22, 100, 0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: "Open Sans", sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { width: min(1180px, 92%); margin: 0 auto; }
    .section { padding: 100px 0; }
    .section-light { background: var(--light); }

    .section-title {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 18px;
      font-weight: 800;
    }

    .section-kicker {
      font-family: "Montserrat", sans-serif;
      color: var(--orange);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-text { color: var(--grey); font-size: 17px; max-width: 720px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 28px;
      border-radius: 10px;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
    }

    .btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(198, 138, 45, 0.28); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
    .btn-outline { border: 1.5px solid var(--white); color: var(--white); background: transparent; }
    .btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

    /* HEADER */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 88px;
      z-index: 1000;
      background: var(--navy);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }


    .logo-box {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-image {
      width: 52px;
      height: 52px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo-text strong {
      display: block;
      font-family: "Montserrat", sans-serif;
      color: var(--white);
      font-size: 20px;
      letter-spacing: 0.5px;
      line-height: 1.1;
    }

    .logo-text > span {
      display: block;
      color: rgba(255, 255, 255, 0.72);
      font-size: 11px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      color: var(--white);
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .nav-menu a { opacity: 0.88; transition: color 0.25s ease, opacity 0.25s ease; }
    .nav-menu a:hover { opacity: 1; }
    .mobile-menu-label { display: none; color: var(--white); font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 13px; }

    /* HERO */
    .hero {
      min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  padding-top: 88px;
  overflow: hidden;
  background: #071A2E;
    }

    .hero-content { max-width: 820px; padding: 80px 0; }
    .hero-kicker { color: var(--orange); font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 18px; }
    .hero-title { font-family: "Montserrat", sans-serif; font-size: clamp(44px, 7vw, 78px); line-height: 1.02; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; }
    .hero-title span { color: var(--orange); }
    .hero-text { max-width: 700px; font-size: 19px; color: rgba(255, 255, 255, 0.86); margin-bottom: 34px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
    .hero-badges { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; }
    .badge { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.88); font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700; }

    /* SERVICES */
    .center-heading { text-align: center; max-width: 780px; margin: 0 auto 52px; }
    .center-heading .section-text { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .service-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 32px 26px; box-shadow: 0 10px 28px rgba(16, 22, 100, 0.07); transition: all 0.25s ease; min-height: 290px; }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(198, 138, 45, 0.35); }
    .service-icon { width: 58px; height: 58px; border-radius: 16px; background: rgba(198, 138, 45, 0.12); color: var(--orange); display: grid; place-items: center; font-size: 28px; margin-bottom: 24px; }
    .service-card h3 { font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 21px; margin-bottom: 12px; }
    .service-card p { color: var(--grey); font-size: 15px; margin-bottom: 20px; }
    .learn-link { color: var(--orange); font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 13px; text-transform: uppercase; }

    /* SPLIT */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .image-card { position: relative; border-radius: 26px; overflow: hidden; min-height: 470px; box-shadow: var(--shadow); }
    .image-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
    .floating-card { position: absolute; right: 24px; bottom: 24px; background: var(--white); border-radius: 18px; padding: 22px; max-width: 280px; box-shadow: 0 18px 40px rgba(0,0,0,0.16); }
    .floating-card strong { display: block; font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 18px; margin-bottom: 6px; }
    .floating-card span { color: var(--grey); font-size: 14px; }
    .check-list { margin-top: 28px; display: grid; gap: 14px; list-style: none; }
    .check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 600; }
    .check-list li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: rgba(198, 138, 45, 0.14); color: var(--orange); display: inline-grid; place-items: center; flex-shrink: 0; font-weight: 800; }

    /* WHY */
    .why { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
    .why::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(198, 138, 45, 0.11); top: -180px; right: -180px; }
    .why .section-title { color: var(--white); }
    .why .section-text { color: rgba(255,255,255,0.74); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; position: relative; }
    .why-card { padding: 30px 24px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
    .why-card span { display: block; color: var(--orange); font-family: "Montserrat", sans-serif; font-size: 34px; font-weight: 800; margin-bottom: 12px; }
    .why-card h3 { font-family: "Montserrat", sans-serif; font-size: 19px; margin-bottom: 10px; }
    .why-card p { color: rgba(255,255,255,0.72); font-size: 14px; }

    /* TEAM */
    .team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .team-card { background: var(--white); border-radius: 22px; padding: 28px 20px; border: 1px solid var(--border); text-align: center; box-shadow: 0 10px 28px rgba(16, 22, 100, 0.06); }
    .avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--orange)); display: grid; place-items: center; margin: 0 auto 18px; color: var(--white); font-family: "Montserrat", sans-serif; font-size: 26px; font-weight: 800; }
    .team-card h3 { font-family: "Montserrat", sans-serif; color: var(--navy); font-size: 17px; margin-bottom: 8px; }
    .team-card p { color: var(--grey); font-size: 13px; line-height: 1.45; }

    /* CONTACT */
    .contact-wrapper { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: start; }
    .form-card, .contact-card { background: var(--white); border-radius: 26px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); position: sticky; top: 120px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    label { font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
    input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 14px; font: inherit; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; background: var(--white); }
    input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(198, 138, 45, 0.12); }
    textarea { min-height: 130px; resize: vertical; }
    .form-note { color: var(--grey); font-size: 13px; margin-top: 16px; }
    .contact-list { display: grid; gap: 20px; margin-top: 24px; }
    .contact-item { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
    .contact-item:last-child { border-bottom: none; }
    .contact-item strong { display: block; font-family: "Montserrat", sans-serif; color: var(--navy); margin-bottom: 6px; }
    .contact-item span, .contact-item a { color: var(--grey); font-size: 15px; }

    /* CTA */
    .cta { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); padding: 70px 0; }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .cta h2 { font-family: "Montserrat", sans-serif; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin-bottom: 10px; }
    .cta p { color: rgba(255,255,255,0.84); font-size: 17px; }
    .btn-white { background: var(--white); color: var(--navy); }
    .btn-white:hover { transform: translateY(-2px); background: var(--light); }

    /* FOOTER */
    .footer { background: var(--navy-dark); color: var(--white); padding: 70px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr; gap: 44px; margin-bottom: 42px; }
    .footer h3, .footer h4 { font-family: "Montserrat", sans-serif; margin-bottom: 18px; }
    .footer p, .footer a, .footer li { color: rgba(255,255,255,0.68); font-size: 14px; }
    .footer ul { list-style: none; display: grid; gap: 10px; }
    .footer a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,0.58); font-size: 13px; }

.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 0.8s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide:nth-child(1){
  background:
    url("air.jpg")
    center center / cover no-repeat;
}

.hero-slide:nth-child(2){
  background:
    url("sea.jpg")
    center center / cover no-repeat;
}

.hero-slide:nth-child(3){
  background:
    url("road.jpg")
    center center / cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,26,46,0.92) 0%,
      rgba(7,26,46,0.78) 35%,
      rgba(7,26,46,0.55) 60%,
      rgba(7,26,46,0.40) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,26,46,0.92) 0%,
      rgba(7,26,46,0.78) 35%,
      rgba(7,26,46,0.55) 60%,
      rgba(7,26,46,0.40) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}

    @media (max-width: 1024px) {
      .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .split, .contact-wrapper { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 820px) {
.contact-card { position: static; }
      .nav-menu, .header .btn { display: none; }
      .mobile-menu-label { display: block; }
      .header, .navbar { height: 76px; }
      .logo-image { width: 60px; height: 60px; }
      .hero { padding-top: 76px; }
      .section { padding: 76px 0; }
      .hero-title { letter-spacing: -0.6px; }
      .hero-text { font-size: 17px; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
.hero-images{
  flex-direction: column;
}

.hero-left,
.hero-right{
  width:100%;
}

.hero-right{
  display:none;
}
    }

    @media (max-width: 620px) {
      .services-grid, .why-grid, .team-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
      .logo-text strong { font-size: 17px; }
      .logo-text span { font-size: 9px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .floating-card { position: static; max-width: none; border-radius: 0; }
      .image-card, .image-card img { min-height: 330px; }
      .form-card, .contact-card { padding: 26px 22px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

.required {
  color: red;
  font-weight: 700;
}

.brand-c {
  color: #C68A2D !important;
 display: inline;
font-weight: 1000;
}

.contact-row{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.contact-column{
  flex:1;
}

.nav-menu a{
  position: relative;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  background:var(--orange);

  transition:width 0.3s ease;
}

.nav-menu a:hover::after{
  width:100%;
}

.nav-menu a.active{
  color: var(--orange);
  opacity: 1;
}

.nav-menu a.active::after{
  width: 100%;
}

.package-block{
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  margin-top:14px;
  background:#ffffff;
}

.package-block h4{
  font-family:"Montserrat", sans-serif;
  color:var(--navy);
  margin-bottom:16px;
  font-size:16px;
}

.package-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.add-package-btn{
  margin-top:16px;
  padding:12px 18px;
  border-radius:10px;
  border:1px solid var(--orange);
  background:transparent;
  color:var(--orange);
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  cursor:pointer;
}

.add-package-btn:hover{
  background:rgba(198,138,45,0.10);
}

.remove-package-btn{
  margin-top:14px;
  border:none;
  background:transparent;
  color:#b91c1c;
  font-weight:700;
  cursor:pointer;
}

@media (max-width:620px){
  .package-grid{
    grid-template-columns:1fr;
  }
}

.footer-founded{
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-trust{
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.privacy-check{
  grid-column: 1 / -1;
  margin-top: 10px;
}

.privacy-check label{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #65758B;
  font-weight: 400;
}

.privacy-check input{
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.privacy-check span{
  display: block;
}

.privacy-check a{
  color: #C68A2D;
  font-weight: 700;
  text-decoration: none;
}

.privacy-check a:hover{
  text-decoration: underline;
}

.service-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-icon svg{
  width:34px;
  height:34px;
  stroke-width:2.2;
}

.hero-link{
  display:flex;
  align-items:center;
  color:#C68A2D;
  font-weight:700;
  text-decoration:none;
}

.hero-link:hover{
  text-decoration:underline;
}

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
  z-index:999;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  display:block;
  padding:10px 18px;
  color:#183b70;
  text-decoration:none;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#f8fafc;
  color:#183b70;
}

.network-note-center{
  text-align:center;
  color:white;
  font-size:16px;
  font-weight:500;
  opacity:0.9;
  margin-bottom:20px;
}

.footer-bottom-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin-top:20px;
}



.footer-networks{
  margin-top:20px;
}

.footer-networks span{
  display:block;
  color:white;
  font-weight:700;
  margin-bottom:8px;
}

.footer-networks img{
  width:100px;
  height:auto;
}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:2000;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:white;
  border-radius:3px;
}

@media (max-width:992px){

  .menu-toggle{
    display:flex;
  }

  .nav-menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:88px;
    left:0;
    width:100%;
    background:#101664;
    padding:24px;
    gap:18px;
    z-index:1500;
  }

  .nav-menu.active{
    display:flex;
  }
}

.c5c-brand{
  color:#183b70;
  font-weight:700;
}

.c5c-orange{
  color:#E6891B;
}

.email-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-top: 5px;
}


.email-grid a {
    text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 1000;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #183b70;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* SERVICE PAGES */

.service-page-hero {
  min-height: 78vh;
  padding-top: 88px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.service-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,26,46,0.92) 0%,
    rgba(7,26,46,0.78) 40%,
    rgba(7,26,46,0.40) 100%
  );
}

.service-page-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.service-page-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5.5vw, 65px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.service-page-content h1 span {
  color: var(--orange);
}

.service-page-content p {
  max-width: 660px;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}

@media (max-width: 620px) {
  .service-page-hero {
    min-height: 70vh;
  }

  .service-page-content h1 {
    font-size: 42px;
  }

  .service-page-content p {
    font-size: 17px;
  }
}