html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-900);
  font-size: var(--step-0);
  line-height: 1.6;
  background: var(--white);
}

/* Header / Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: color-mix(in srgb, var(--white) 76%, transparent);
  border-bottom: 1px solid var(--grey-200);
  backdrop-filter: saturate(160%) blur(10px);
}
.nav-full {
  width: 100%;
  position: relative;
}
.nav.container {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo {
  width: 45px;
  height: 50px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.logo img {
  display: block;
  height: 50px;
  width: auto;
  border-radius: 10px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.04rem;
}
.brand-sub {
  color: var(--grey-400);
  font-size: var(--step--1);
}

/* Nav links styling + active state */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-800);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
/* Hover effect */
.nav-links a:hover {
  color: var(--teal-700);
  background: color-mix(in srgb, var(--teal-600) 20%, transparent);
}
.nav-links a.active,
.nav-links a[aria-current="true"] {
  color: var(--teal-700);
  background: color-mix(in srgb, var(--teal-600) 14%, transparent);
}
.nav-links .cta {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  border: 0;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  padding: 10px 16px;
  margin-left: 6px;
}
.nav-links .cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  background: color-mix(in srgb, var(--gold-500) 20%, transparent);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: var(--step--1);
  border: 1px dashed color-mix(in srgb, var(--gold-500) 50%, transparent);
}

/* Hamburger */
.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2100;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 8px var(--section-y);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  align-items: center;
}
.hero-copy {
  grid-column: 1 / span 7;
}
.eyebrow {
  display: inline-block;
  font-weight: 800;
  color: var(--teal-700);
  background: color-mix(in srgb, var(--teal-600) 18%, transparent);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  font-size: var(--step--1);
}
h1 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.08;
  margin: 14px 0 10px;
}
.hero p {
  color: var(--navy-800);
  max-width: 60ch;
  margin: 0 0 18px;
  font-size: var(--step-1);
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 800;
}
.btn.primary {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border: 0;
}
.hero-visual {
  grid-column: 8 / -1;
  min-height: 320px;
  border-radius: var(--radius);
   display: flex;
  align-items: center;
  /* justify-content: center; */
  background: radial-gradient(
      1200px 600px at 100% -20%,
      color-mix(in srgb, var(--gold-500) 28%, transparent),
      transparent 60%
    ),
    linear-gradient(180deg, var(--sky-50), var(--white));
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.globe {
  position: absolute;
  inset: 10% 8% auto auto;
  width: 56%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(27, 163, 163, 0.25) 0 30%,
      transparent 31%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(21, 138, 138, 0.25) 0 34%,
      transparent 35%
    ),
    conic-gradient(
      from 0deg,
      rgba(12, 27, 42, 0.06),
      rgba(12, 27, 42, 0.12),
      rgba(12, 27, 42, 0.06)
    );
  box-shadow: inset 0 0 40px rgba(21, 138, 138, 0.18);
  filter: blur(0.3px);
}
/* .card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 14px;
  border-radius: 14px;
  width: min(340px, 82%);
  box-shadow: var(--shadow-1);
} */
.card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--grey-50);
  font-size: var(--step--1);
  color: var(--navy-800);
  border: 1px solid var(--grey-200);
}

/* Sections */
section {
  padding: var(--section-y) 0;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 8px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: clamp(18px, 2vw, 24px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin: 0;
}
.lead {
  color: var(--navy-800);
  max-width: 66ch;
}
.about {
  background: linear-gradient(180deg, var(--grey-50), var(--white));
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.about-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}
.about-col-1 {
  grid-column: 1 / span 7;
}
.about-col-2 {
  grid-column: 8 / -1;
}
.kpis {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  margin-top: 16px;
}
.kpi {
  flex: 1 1 200px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-1);
}
.kpi h3 {
  margin: 0;
  font-size: var(--step-2);
}
.kpi p {
  margin: 4px 0 0;
  color: var(--navy-800);
}
.cards {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}
.service {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge {
  display: inline-block;
  font-weight: 800;
  font-size: var(--step--1);
  color: var(--navy-900);
  background: color-mix(in srgb, var(--navy-900) 8%, transparent);
  padding: 6px 10px;
  border-radius: 999px;
}
.blog-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.post {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.post:nth-child(1) .thumb {
  background-image: url("assets/documents.png");
}
.post:nth-child(2) .thumb {
  background-image: url("assets/shipping.png");
}
.post:nth-child(3) .thumb {
  background-image: url("assets/fragile.png");
}
.thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
}
.post .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta {
  color: var(--grey-400);
  font-size: var(--step--1);
}

/* contact styling */
.contact {
  background: linear-gradient(180deg, var(--white), var(--sky-50));
  border-top: 1px solid var(--grey-200);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.contact-card {
  grid-column: span 6;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-1);
}
.contact-icon {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--gold-500) 24%, transparent);
  color: var(--navy-900);
  font-size: 1.05rem;
}
.contact-card h3 {
  margin: 0 0 4px;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.2rem);
  font-family: var(--font-display);
}
.contact-card p {
  margin: 0;
  color: var(--navy-800);
}
.contact-card a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 700;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* CTA panel */
.contact-cta {
  margin-top: clamp(22px, 3vw, 36px);
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
      900px 300px at 100% -20%,
      color-mix(in srgb, var(--gold-500) 22%, transparent),
      transparent 60%
    ),
    linear-gradient(180deg, var(--white), var(--sky-50));
  border: 1px solid var(--grey-200);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(18px, 4vw, 32px);
  box-shadow: var(--shadow-1);
}
.cta-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: var(--step--1);
  color: var(--teal-700);
  background: color-mix(in srgb, var(--teal-600) 18%, transparent);
}
.contact-cta h3 {
  margin: 6px 0 4px;
  font-size: clamp(1.3rem, 1vw + 1rem, 1.6rem);
}
.contact-cta p {
  margin: 0 0 12px;
  color: var(--navy-800);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-1);
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

/* Footer styling */
.footer-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-top: 2%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
}

/* Logo centering on mobile */
.brand {
  text-align: center;
}
.logo-img {
  height: 170px;
  width: auto;
  margin: 0 auto;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.links a {
  color: var(--navy-800);
  text-decoration: none;
  font-size: var(--step--1);
}
.foot-contact-info {
  text-align: left;
}
.contact-icon {
  color: #1ba3a3;
  margin-right: 8px;
}
.contact-info p {
  margin: 4px 0;
  font-size: var(--step--1);
  color: var(--navy-800);
}
.small {
  font-size: var(--step--1);
  color: var(--grey-400);
  text-align: center;
  margin-top: 24px;
}

/* Map Section */
.map-section {
  padding: var(--section-y) var(--gap);
  background: var(--sky-50);
  border-top: 1px solid var(--grey-200);
  color: var(--navy-800);
}
.map-container {
  max-width: var(--container);
  margin-inline: auto;
  text-align: center;
}
.map-container p {
  font-size: var(--step-0);
  margin-bottom: 20px;
  color: var(--grey-400);
}
.map-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* change to left: 20px; if you want it on the left corner */
  background-color: var(--navy-800); /* WhatsApp green */
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: var(--teal-700);
}

/* =================== RESPONSIVE =================== */

/* ≤ 640px (mobile small) */
@media (max-width: 640px) {
  .map-container h2 {
    font-size: var(--step-1);
  }
  .map-embed iframe {
    height: 300px;
  }
}

/* ≥ 640px (tablet) */
@media (min-width: 640px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .brand {
    text-align: left;
  }
}

/* ≤ 760px (mobile) */
@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-column: 1 / -1;
  }
  .mail-wrap {
    overflow-wrap: anywhere;
  }

  /* Responsive nav - hamburger flyout */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-2);
    width: min(92vw, 340px);
    position: absolute;
    top: calc(100% + 8px);
    right: 8px;
    z-index: 2000;
  }
  .nav[data-open="true"] .nav-links {
    display: flex;
  }
  .nav[data-open="true"] .nav-links a {
    padding: 14px 16px;
  }
  .nav[data-open="true"] .nav-links .cta {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }
  .burger {
    display: inline-block;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
    gap: 6px;
  }

  .col-3 {
    grid-column: span 6;
  }
}

/* ≤ 960px (tablet large) */
@media (max-width: 960px) {
  .contact-card {
    grid-column: span 12;
  }
}

/* ≥ 960px (desktop) */
@media (min-width: 960px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ≤ 980px (tablet landscape) */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-visual {
    grid-column: 1 / -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-col-1,
  .about-col-2 {
    grid-column: 1 / -1;
  }
}
