:root {
  --navy: #0b1f33;
  --navy-2: #102b45;
  --gold: #c9a227;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #17202a;
  --muted: #667085;
  --border: #e4e8ed;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  font-weight: 400;
  margin-left: 5px;
}

/* NAV */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  height: 100%;
}

.desktop-nav > a,
.nav-item > a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav a:hover {
  color: var(--gold);
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  top: 73px;
  left: -20px;

  width: 215px;
  padding: 12px;

  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(11,31,51,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: .18s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
}

.dropdown a:hover {
  background: var(--light);
  color: var(--navy);
}

/* MEGA MENU */

.mega-menu {
  position: absolute;
  top: 73px;
  left: 50%;

  width: min(850px, 90vw);
  padding: 35px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(11,31,51,.14);

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);

  transition: .18s ease;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu h4 {
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.mega-menu a:hover {
  color: var(--gold);
}

/* RIGHT SIDE */

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LANGUAGE */

.language {
  position: relative;
}

.language button {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
}

.language-menu {
  position: absolute;
  right: 0;
  top: 48px;

  width: 180px;
  max-height: 420px;
  overflow-y: auto;

  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(11,31,51,.14);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: .15s ease;
}

.language.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--text);
  font-size: 13px;
}

.language-menu a:hover {
  background: var(--light);
}

/* BUTTONS */

.primary-btn,
.secondary-btn,
.quote-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
}

.primary-btn,
.quote-btn {
  background: var(--gold);
  color: var(--navy);
}

.primary-btn:hover,
.quote-btn:hover {
  background: #dfba3a;
}

.secondary-btn {
  color: white;
  border: 1px solid rgba(255,255,255,.65);
  margin-left: 10px;
}

.secondary-btn:hover {
  background: white;
  color: var(--navy);
}

/* MOBILE */

.mobile-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 25px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 700px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(11,31,51,.98) 0%,
      rgba(11,31,51,.90) 40%,
      rgba(11,31,51,.42) 75%,
      rgba(11,31,51,.15) 100%
    ),
    url("../images/hero.jpg")
    center / cover no-repeat;
}

.hero-content {
  padding: 120px 0;
}

.hero-text {
  max-width: 700px;
}

.hero .eyebrow {
  color: var(--gold);
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.hero h1 {
  color: white;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero h1 span {
  color: #dce5ed;
  font-weight: 400;
}

.hero-description {
  max-width: 610px;
  color: #e1e8ee;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 38px;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 115px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading h2,
.about h2,
.quote-section h2,
.contact-section h2 {
  color: var(--navy);
  font-size: clamp(36px, 5vw, 55px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}

.section-heading p:last-child {
  color: var(--muted);
}

/* SERVICES */

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

.service-card {
  padding: 38px 34px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: .2s ease;
}

.service-card:hover {
  border-color: #c9d2dc;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(11,31,51,.07);
}

.icon {
  font-size: 27px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   PROCESS
========================= */

.dark {
  background: var(--navy);
  color: white;
}

.light {
  color: white;
}

.light h2 {
  color: white;
}

.light p {
  color: #cbd5df;
}

.dark .eyebrow {
  color: var(--gold);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-item {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 25px;
}

.process-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.process-item h3 {
  margin: 15px 0 8px;
  font-size: 18px;
}

.process-item p {
  color: #aebdca;
  font-size: 14px;
}

/* =========================
   ABOUT
========================= */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about .eyebrow {
  color: var(--gold);
}

.about p {
  color: var(--muted);
  margin-bottom: 25px;
}

/* =========================
   QUOTE
========================= */

.quote-section {
  background: var(--light);
  padding: 115px 0;
}

.quote-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.quote-box .eyebrow {
  color: var(--gold);
}

.quote-box > div > p:not(.eyebrow) {
  color: var(--muted);
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d4dbe2;
  border-radius: 3px;
  background: white;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

form button {
  border: 0;
  cursor: pointer;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  padding: 115px 0;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 55px;
}

.contact-grid div {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
}

.contact-grid strong {
  color: var(--navy);
}

.contact-grid p {
  color: var(--muted);
  margin-top: 8px;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #071522;
  color: white;
  padding: 55px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer .logo {
  color: white;
}

.footer p {
  color: #8fa0af;
  margin-top: 8px;
  font-size: 13px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1050px) {

  .desktop-nav {
    display: none;
  }

  .mobile-button {
    display: block;
  }

  .quote-btn {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    background: white;
    border-bottom: 1px solid var(--border);

    max-height: 0;
    overflow: hidden;

    transition: max-height .25s ease;
  }

  .mobile-menu.open {
    max-height: 500px;
  }

  .mobile-menu > a {
    padding: 16px 5%;
    border-bottom: 1px solid #edf0f3;
    font-weight: 700;
    color: var(--navy);
  }

  .mobile-menu .mobile-quote {
    margin: 15px 5%;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 3px;
  }
}

@media (max-width: 800px) {

  .nav {
    height: 68px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 90px 0;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .services-grid,
  .process,
  .contact-grid,
  .about,
  .quote-box {
    grid-template-columns: 1fr;
  }

  .about,
  .quote-box {
    gap: 45px;
  }

  form {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-column: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .secondary-btn {
    margin-left: 0;
    margin-top: 12px;
  }
}
/* =========================
   V1.3 ADDITIONS
========================= */

/* TRUST BAR */

.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 28px 25px;
  border-right: 1px solid var(--border);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--border);
}

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 1px;
}

.trust-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}


/* SERVICE LINKS */

.service-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.service-card a:hover {
  color: var(--gold);
}


/* WHY SECTION */

.why-section {
  padding: 115px 0;
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  height: 600px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-content .eyebrow {
  color: var(--gold);
}

.why-content h2 {
  color: var(--navy);
  font-size: clamp(36px, 5vw, 55px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 25px;
}

.why-content > p {
  color: var(--muted);
  margin-bottom: 18px;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
  border-top: 1px solid var(--border);
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 10px 17px 0;
  border-bottom: 1px solid var(--border);
}

.benefits strong {
  color: var(--gold);
  font-size: 12px;
}

.benefits span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}


/* DESTINATIONS */

.destinations {
  background: white;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.destination-card {
  min-height: 170px;
  padding: 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: .2s ease;
}

.destination-card:hover {
  background: var(--navy);
  color: white;
}

.destination-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 45px;
}

.destination-card strong {
  display: block;
  font-size: 17px;
}

.destination-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.destination-card:hover small {
  color: #b9c7d3;
}


/* INDUSTRIES */

.industry-section {
  background: var(--light);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.industry-grid > div {
  min-height: 220px;
  padding: 30px;
  background: white;
}

.industry-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.industry-grid h3 {
  color: var(--navy);
  margin: 30px 0 10px;
  font-size: 20px;
}

.industry-grid p {
  color: var(--muted);
  font-size: 13px;
}


/* ABOUT */

.about-section {
  padding: 115px 0;
  background: var(--navy);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-section .eyebrow {
  color: var(--gold);
}

.about-section h2 {
  color: white;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -2.5px;
}

.about-section p {
  color: #c4d0da;
  margin-bottom: 25px;
}


/* TESTIMONIALS */

.testimonial-section {
  background: white;
}

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

.testimonial-grid article {
  padding: 35px;
  border: 1px solid var(--border);
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.testimonial-grid article p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-grid strong {
  color: var(--navy);
  font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

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

  .trust-grid > div {
    border-bottom: 1px solid var(--border);
  }

  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-image {
    height: 450px;
  }

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

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

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


@media (max-width: 600px) {

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

  .trust-grid > div {
    border-left: 1px solid var(--border);
  }

  .destination-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

  .why-image {
    height: 350px;
  }

}
/* =========================
   V1.4 INNER PAGES
========================= */

.page-hero {
  padding: 150px 0 120px;
  background: var(--navy);
  color: white;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.page-hero p:last-child {
  max-width: 650px;
  color: #c5d0da;
  font-size: 18px;
}


/* SERVICE LIST */

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.large-service-card {
  min-height: 330px;
  padding: 40px;
  background: white;
  transition: .2s ease;
}

.large-service-card:hover {
  background: var(--navy);
  color: white;
}

.large-service-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.large-service-card h3 {
  margin-top: 70px;
  color: var(--navy);
  font-size: 28px;
}

.large-service-card:hover h3 {
  color: white;
}

.large-service-card p {
  max-width: 430px;
  color: var(--muted);
  margin: 12px 0 25px;
}

.large-service-card:hover p {
  color: #b9c7d3;
}

.large-service-card strong {
  color: var(--navy);
  font-size: 12px;
}

.large-service-card:hover strong {
  color: var(--gold);
}


/* SERVICE DETAIL */

.service-detail {
  padding: 110px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.service-detail-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.service-detail-content .eyebrow {
  color: var(--gold);
}

.service-detail-content h2 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.service-detail-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.service-features {
  margin: 30px 0;
  border-top: 1px solid var(--border);
}

.service-features div {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 800px) {

  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-detail-image {
    height: 400px;
  }

  .page-hero {
    padding: 110px 0 90px;
  }

}
/* =========================================================
   V1.6
========================================================= */


/* LANGUAGE MENU */

.language {
  position: relative;
}

.language button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;

  min-width: 170px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  padding: 8px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-8px);

  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;

  z-index: 9999;
}

.language-menu.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.language-menu a {
  display: block;

  padding: 10px 18px;

  color: #102438;

  text-decoration: none;

  font-size: 14px;

  transition: background .2s ease;
}

.language-menu a:hover {
  background: #f3f5f7;
}



/* MOBILE MENU */

.mobile-menu {
  display: none;
}

.mobile-button {
  display: none;

  border: 0;

  background: transparent;

  font-size: 24px;

  cursor: pointer;

  color: #0b2235;
}



/* ACTIVE NAV */

.desktop-nav a.active {
  color: #c99b24;
}



/* HEADER SCROLL */

.header {
  transition:
    box-shadow .25s ease,
    background .25s ease;
}

.header.scrolled {
  box-shadow:
    0 4px 20px rgba(0,0,0,0.08);
}



/* REVEAL ANIMATION */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}



/* BACK TO TOP */

#backToTop {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 46px;

  height: 46px;

  border: 0;

  border-radius: 50%;

  background: #c99b24;

  color: #ffffff;

  font-size: 20px;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;

  z-index: 9998;
}

#backToTop.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {


  .desktop-nav {
    display: none;
  }


  .mobile-button {
    display: block;
  }


  .mobile-menu {

    display: flex;

    flex-direction: column;

    gap: 0;

    background: #ffffff;

    border-top: 1px solid #e5e7eb;

    max-height: 0;

    overflow: hidden;

    transition:
      max-height .35s ease;

  }


  .mobile-menu.show {

    max-height: 600px;

  }


  .mobile-menu > a {

    padding: 16px 24px;

    border-bottom: 1px solid #edf0f2;

    color: #102438;

    text-decoration: none;

    font-weight: 600;

  }


  .mobile-menu .mobile-quote {

    margin: 16px 24px;

    padding: 14px 20px;

    text-align: center;

    background: #c99b24;

    color: #ffffff;

    border: 0;

  }


  .nav-right {

    gap: 12px;

  }


  .language-menu {

    right: -50px;

  }


  .hero {

    min-height: auto;

    padding-top: 100px;

    padding-bottom: 80px;

  }


  .hero h1 {

    font-size: clamp(
      42px,
      9vw,
      72px
    );

  }


  .hero-buttons {

    flex-direction: column;

    align-items: flex-start;

  }


  .services-grid,
  .destination-grid,
  .industry-grid,
  .testimonial-grid {

    grid-template-columns: 1fr;

  }


  .why-grid,
  .about-grid {

    grid-template-columns: 1fr;

  }


  .process {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .contact-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {


  .container {

    width: min(
      100% - 36px,
      1200px
    );

  }


  .logo {

    font-size: 18px;

  }


  .quote-btn {

    display: none;

  }


  .language button {

    font-size: 13px;

  }


  .hero h1 {

    font-size: 42px;

    line-height: 1.05;

  }


  .hero-description {

    font-size: 16px;

    line-height: 1.7;

  }


  .process {

    grid-template-columns: 1fr;

  }


  .contact-grid {

    grid-template-columns: 1fr;

  }


  #backToTop {

    right: 18px;

    bottom: 18px;

  }

}