/* =====================
   GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

:root {
  --turquoise: #00CFC8;
  --turquoise-dark: #006D77;
  --turquoise-deep: #003B46;
  --turquoise-light: #BFFFFA;
  --aqua-soft: #E6FFFC;
  --aqua-panel: #F5FFFE;
  --ink: #042F3A;
  --muted: #3D626B;
  --line: #7DE4DD;
  --white: #FFFFFF;
}

[data-aos] {
  will-change: transform, opacity;
}

body {
  background: linear-gradient(180deg, var(--white), var(--aqua-panel));
  color: var(--ink);
  line-height: 1.6;
}

section {
  padding: 100px 0;
}

section:nth-of-type(even) {
      background: linear-gradient(135deg, rgba(0, 207, 200, 0.12), rgba(255, 255, 255, 0.86)), #d0dbda;
}

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

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  background: rgba(245, 255, 254, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 207, 200, 0.35);
  box-shadow: 0 8px 24px rgba(0, 109, 119, 0.08);
}

.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--turquoise-dark);
}

.logo img {
  display: block;
  height: clamp(34px, 4vw, 44px);
  max-width: min(42vw, 220px);
  width: auto;
  object-fit: contain;
  transform: scale(2.80);
  transform-origin: left center;
}

/* CENTER MENU */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-menu a,
.nav-link {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-menu a::after,
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--turquoise);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-link:hover {
  color: var(--turquoise);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown>.nav-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  order: 2;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.nav-dropdown:hover>.nav-link::before,
.nav-dropdown:focus-within>.nav-link::before,
.nav-dropdown.open>.nav-link::before {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 230px;
  padding: 10px;
  background: rgba(245, 255, 254, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 207, 200, 0.35);
  border-radius: 8px;
  box-shadow: 0 22px 40px rgba(0, 59, 70, 0.18);
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--aqua-soft);
  color: var(--turquoise-dark);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: var(--turquoise-dark);
  margin-bottom: 4px;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: calc(100vw * 941 / 1672);
  padding-top: 84px;
  background:
    linear-gradient(rgba(0, 59, 70, 0.18), rgba(0, 207, 200, 0.12)),
    url("assets/banner_desktop.png") center top / contain no-repeat,
    var(--aqua-panel);
}

/* =====================
   SERVICES
===================== */
.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--turquoise-deep);
}

.services-header h2::after,
.about-text h2::after,
.why-text h2::after,
.contact-container h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise), var(--turquoise-dark));
}

.services-header h2::after,
.contact-container h2::after {
  margin-left: auto;
  margin-right: auto;
}

.services-header p {
  color: var(--muted);
  margin-top: 10px;
}

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

.service-card {
  background: linear-gradient(180deg, var(--white), var(--aqua-panel));
  border: 1px solid rgba(0, 207, 200, 0.35);
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 126, 139, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  text-align: left;
  color: inherit;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) perspective(900px) rotateX(4deg);
  background: linear-gradient(180deg, var(--white), #edfffd);
  box-shadow:
    0 22px 42px rgba(0, 207, 200, 0.18),
    0 8px 18px rgba(0, 59, 70, 0.13);
  border-color: var(--turquoise);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--aqua-soft);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 59, 70, 0.02), rgba(0, 59, 70, 0.18));
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 18px 20px 22px;
}

.service-card-body h3 {
  color: var(--turquoise-deep);
  margin-bottom: 8px;
  font-size: 20px;
}

.service-card-body p {
  color: var(--muted);
}

.service-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 207, 200, 0.12);
  color: var(--turquoise-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card h3 {
  color: var(--turquoise-deep);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

/* =====================
   SERVICE DETAIL PAGES
===================== */
.service-page {
  padding-top: 72px;
}

.service-page section {
  padding: 80px 0;
}

.service-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    var(--turquoise-deep);
  color: var(--white);
}

.service-hero-ocean {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_ocean.jpeg") center / cover no-repeat;
}

.service-hero-air {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_air.jpeg") center / cover no-repeat;
}

.service-hero-road {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_road.jpeg") center / cover no-repeat;
}

.service-hero-warehouse {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_warehouse.jpeg") center / cover no-repeat;
}

.service-hero-cold {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_cold.jpeg") center / cover no-repeat;
}

.service-hero-customs {
  background:
    linear-gradient(90deg, rgba(0, 59, 70, 0.86), rgba(0, 109, 119, 0.52), rgba(0, 207, 200, 0.12)),
    url("assets/service_hero_customs.jpeg") center / cover no-repeat;
}

.service-hero-content,
.service-detail-container,
.service-list-container,
.service-media-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.service-kicker {
  display: inline-block;
  color: var(--turquoise-light);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.service-hero p {
  max-width: 650px;
  font-size: 18px;
  color: var(--aqua-soft);
}

.service-detail-container {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: start;
}

.service-copy h2,
.service-list-container h2 {
  color: var(--turquoise-deep);
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-copy h2::after,
.service-list-container h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise), var(--turquoise-dark));
}

.service-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-highlights div,
.service-list-grid span {
  background: linear-gradient(180deg, var(--white), var(--aqua-panel));
  box-shadow: 0 8px 20px rgba(8, 126, 139, 0.08);
}

.service-highlights>div {
  background: #fff;
  border-radius: 16px;
  height: 480px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-highlights div {
  min-height: 0;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}

.service-highlights div.active {
  transform: translateY(-6px);
  border-color: rgba(0, 207, 200, 0.45);
  box-shadow: 0 22px 42px rgba(0, 59, 70, 0.18);
}

.service-highlights h3 {
  color: var(--turquoise-deep);
  margin-bottom: 8px;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.service-highlights p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  padding: 0;
  text-align: center;
}

.feature-media {
  width: 100%;
  height: 60%;
  inset: 0;
  display: block;
  object-fit: cover;
  background: var(--aqua-soft);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-highlights div.active .feature-media,
.service-highlights div:hover .feature-media {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.feature-copy {
  flex: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(243, 243, 243, 0.98);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(0, 207, 200, 0.16);
}

.feature-copy h3 {
  position: relative;
  margin-bottom: 8px;
}

.service-media-section {
  background: var(--white);
}

.service-media-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.service-media-heading h2 {
  color: var(--turquoise-deep);
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-media-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise), var(--turquoise-dark));
}

.service-media-heading p {
  color: var(--muted);
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-image-grid figure {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 207, 200, 0.35);
  background: var(--aqua-panel);
  box-shadow: 0 14px 30px rgba(8, 126, 139, 0.11);
}

.service-image-grid img {
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  display: block;
  object-fit: cover;
}

.service-image-grid figcaption {
  color: var(--turquoise-deep);
  font-weight: 500;
  padding: 14px 16px;
}

.service-list-section {
  background:
    linear-gradient(135deg, rgba(0, 207, 200, 0.12), rgba(255, 255, 255, 0.86)),
    var(--aqua-soft);
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.service-list-grid span {
  color: var(--turquoise-deep);
  display: block;
  font-weight: 500;
  padding: 18px;
}

/* =====================
   ABOUT
===================== */
.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--turquoise-deep);
  margin-bottom: 15px;
}

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

.about-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  color: var(--turquoise-deep);
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid var(--turquoise);
  box-shadow: 0 20px 45px rgba(0, 109, 119, 0.18);
}

/* =====================
   WHY CHOOSE US
===================== */
.why-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 16px;
  border: 4px solid var(--turquoise);
  box-shadow: 0 20px 45px rgba(0, 109, 119, 0.18);
}

.why-text h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--turquoise-deep);
  margin-bottom: 15px;
}

.why-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: linear-gradient(180deg, var(--white), var(--aqua-panel));
  border: 1px solid rgba(0, 207, 200, 0.35);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 126, 139, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px) perspective(900px) rotateX(4deg);
  box-shadow:
    0 22px 38px rgba(0, 207, 200, 0.24),
    0 7px 16px rgba(0, 59, 70, 0.16);
  border-color: var(--turquoise);
}

.why-card h3 {
  color: var(--turquoise-deep);
  margin-bottom: 8px;
}

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

/* =====================
   CONTACT
===================== */
.contact-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--turquoise-deep);
  margin-bottom: 10px;
}

.contact-intro {
  color: var(--muted);
  margin-bottom: 40px;
}

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

.contact-card {
  background: linear-gradient(180deg, var(--white), var(--aqua-panel));
  border: 1px solid rgba(0, 207, 200, 0.35);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 126, 139, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px) perspective(900px) rotateX(4deg);
  box-shadow:
    0 22px 38px rgba(0, 207, 200, 0.24),
    0 7px 16px rgba(0, 59, 70, 0.16);
  border-color: var(--turquoise);
}

.contact-card h3 {
  color: var(--turquoise-deep);
  margin-bottom: 5px;
}

.contact-card p {
  color: var(--muted);
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--turquoise-deep), var(--turquoise-dark));
  border-top: 3px solid var(--turquoise);
  color: var(--turquoise-light);
}

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

  .about-container,
  .why-container,
  .service-detail-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2::after,
  .why-text h2::after,
  .service-copy h2::after,
  .service-list-container h2::after,
  .service-media-heading h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .service-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-media-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .hero {
    height: 72vh;
    min-height: 0;
    padding-top: 0;
    background:
      linear-gradient(rgba(0, 59, 70, 0.16), rgba(0, 207, 200, 0.1)),
      url("assets/banner_mobile.png") center / cover no-repeat;
  }

  .navbar .container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: relative;
  }

  .logo img {
    height: clamp(28px, 8vw, 34px);
    max-width: 58vw;
    transform: scale(2.80);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    transform: none;
    background: var(--aqua-panel);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 16px 24px;
    border-top: 2px solid rgba(0, 207, 200, 0.35);
    gap: 16px;
    box-sizing: border-box;
    overflow: visible;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static !important;
    inset: auto !important;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
    box-shadow: none;
    border-radius: 10px;
    display: none;
    box-sizing: border-box;
    align-self: stretch;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown>.nav-link {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown-menu a {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
  }

  .services-grid,
  .contact-grid,
  .why-features,
  .service-highlights,
  .service-list-grid,
  .service-image-grid {
    grid-template-columns: 1fr;
  }

  .service-highlights h3 {
    justify-content: center;
  }

  .service-highlights div {
    min-height: 0;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .feature-media {
    position: relative;
    inset: auto;
    height: 220px;
    min-height: 220px;
    border-radius: 0;
  }

  .feature-copy,
  .service-highlights div:nth-child(even) .feature-copy {
    position: static;
    max-width: 100%;
    text-align: center;
    align-items: center;
    padding: 20px 20px 22px;
    border-top: 0;
  }

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

  .service-highlights div:nth-child(even) .feature-media {
    order: 0;
    border-left: 0;
  }

  .service-highlights div:nth-child(even) .feature-copy {
    order: 0;
  }

  .service-hero {
    min-height: 360px;
  }

  .service-page section {
    padding: 64px 0;
  }
}