* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f9fc;
  color: #061f4f;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TOPBAR */
.topbar {
  background: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #e1e7f0;
}

.topbar a {
  font-weight: 900;
  color: #061f4f;
}

/* HEADER */
.header {
  background: #061f4f;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.logo span {
  color: #f6a800;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
}

.call-btn {
  background: #f6a800;
  color: #061f4f;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

/* HERO */
.hero {
  position: relative;
  min-height: 540px;
  background:
    url("https://images.unsplash.com/photo-1512289984044-071903207f5e?auto=format&fit=crop&w=1900&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 31, 79, 0.84), rgba(6, 31, 79, 0.72)),
    radial-gradient(circle at center, rgba(246, 168, 0, 0.22), rgba(6, 31, 79, 0.92));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 850px;
}

.eyebrow {
  display: block;
  color: #f6a800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 17px;
  color: #edf4ff;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta a {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.primary {
  background: #f6a800;
  color: #061f4f;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: #dbeaff;
}

/* QUICK CTA */
.quick-cta {
  background: #ffffff;
  padding: 22px 0;
}

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

.quick-grid a {
  background: #061f4f;
  color: #fff;
  padding: 15px 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.quick-grid span {
  font-size: 18px;
}

/* SECTIONS */
.section,
.steps-section {
  padding: 44px 0;
  background: #fff;
}

.light {
  background: #eef2f7;
}

.title {
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #061f4f;
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 15px;
  color: #53627a;
}

/* SUPPORT CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(6, 31, 79, 0.08);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 14px;
  background: #fff4d8;
  color: #061f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #061f4f;
}

.card p {
  font-size: 14px;
  color: #53627a;
  margin-bottom: 18px;
}

.card a {
  display: inline-block;
  background: #061f4f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

/* STEPS */
.steps-section {
  background: #f7f9fc;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  box-shadow: 0 12px 30px rgba(6, 31, 79, 0.07);
}

.step-card span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f6a800;
  color: #061f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.step-card p {
  color: #53627a;
  font-size: 14px;
  margin-bottom: 18px;
}

.step-card a {
  display: inline-block;
  color: #061f4f;
  font-weight: 900;
}

/* DESTINATIONS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dest {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e1e7f0;
  box-shadow: 0 10px 28px rgba(6, 31, 79, 0.08);
}

.dest img {
  height: 170px;
  object-fit: cover;
}

.dest-body {
  padding: 18px;
}

.dest h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #061f4f;
}

.dest p {
  color: #53627a;
  font-size: 14px;
  margin-bottom: 16px;
}

.dest a {
  display: inline-block;
  background: #f6a800;
  color: #061f4f;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
}

/* BANNER CTA */
.banner-cta {
  background: #061f4f;
  color: #fff;
  padding: 50px 0;
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.banner-box h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.banner-box p {
  color: #dce8ff;
  font-size: 15px;
}

.banner-box a {
  background: #f6a800;
  color: #061f4f;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

/* FOOTER */
.footer {
  background: #ffffff;
  padding: 55px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #061f4f;
}

.footer p {
  color: #53627a;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: #17468f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-phone {
  color: #061f4f !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.footer-bottom {
  border-top: 1px solid #e3ebf6;
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: #63748f;
  margin: 0;
}

/* FLOATING CALL */
.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f6a800;
  color: #061f4f;
  padding: 13px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(6, 31, 79, 0.35);
  z-index: 100;
}

/* MOBILE */
@media (max-width: 900px) {
  .flex {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .nav {
    padding: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    min-height: 520px;
    padding: 70px 0;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta a {
    width: 100%;
    max-width: 280px;
  }

  .quick-grid,
  .cards,
  .steps-grid,
  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .steps-section {
    padding: 50px 0;
  }

  .title,
  .banner-box h2 {
    font-size: 25px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}


.logo{
  width: 172px;
}