/* ============================================================
   GlobalReach Exports — style.css
   Palette : Deep Navy · Antique Gold · Ivory
   Fonts   : Playfair Display · DM Sans · Bebas Neue
   ============================================================ */

/* ─────────────────────────────────────────
   1. RESET & CSS VARIABLES
───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1c3f73;
  --navy2: #1c3f73;
  --navy3: #1c3f73;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --ivory: #f9f5ed;
  --ivory2: #ede7d9;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7a99;
  --border: rgba(201, 168, 76, 0.25);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
  --ff-disp: 'Bebas Neue', sans-serif;

  --r: 10px;
  --rl: 18px;
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-h: 0 20px 60px rgba(10, 22, 40, 0.22);
  --tr: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ─────────────────────────────────────────
   2. TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.sec-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.sec-label.lt {
  color: var(--gold2);
}

.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.sec-title em {
  color: var(--gold);
  font-style: italic;
}
.sec-title.lt {
  color: var(--white);
}
.sec-title.lt em {
  color: var(--gold2);
}

/* ─────────────────────────────────────────
   3. BUTTONS
───────────────────────────────────────── */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: var(--tr);
  cursor: pointer;
}
.btn-pri:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-pri.lg {
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
}

.submit-btn {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: var(--tr);
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-sm {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  transition: var(--tr);
  margin-top: auto;
  cursor: pointer;
}
.btn-sm:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─────────────────────────────────────────
   4. NAVBAR — WHITE THEME
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(28, 63, 115, 0.1);
  transition:
    background var(--tr),
    box-shadow var(--tr);
}

/* On scroll — stays white but shadow deepens */
#nav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 28px rgba(28, 63, 115, 0.16);
}

.nav-in {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

.logo-img {
  height: 63px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mk {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-disp);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Logo text — navy on white nav */
.logo-tx {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo-tx small {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

/* Nav links — navy on white nav */
.nav-lnk {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition:
    color 0.2s,
    background 0.2s;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0.75;
}
.nav-lnk:hover,
.nav-lnk.active {
  color: var(--gold);
  opacity: 1;
  background: rgba(201, 168, 76, 0.08);
}

/* CTA button stays gold */
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: var(--tr);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Burger — navy on white */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile dropdown — white background */
.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(28, 63, 115, 0.1);
  box-shadow: 0 8px 24px rgba(28, 63, 115, 0.1);
}
.mob-menu.open {
  display: flex;
}

.mob-lnk {
  padding: 0.8rem 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(28, 63, 115, 0.08);
  cursor: pointer;
  opacity: 0.8;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.mob-lnk:hover {
  color: var(--gold);
  opacity: 1;
}
.mob-lnk.cta-m {
  color: var(--gold);
  border-bottom: none;
  margin-top: 0.5rem;
  font-weight: 600;
  opacity: 1;
}

/* ─────────────────────────────────────────
   5. SPA PAGE SYSTEM
───────────────────────────────────────── */
.page {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
   6. HOME — HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

.hc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.hc1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
}
.hc2 {
  width: 450px;
  height: 450px;
  bottom: 50px;
  right: 100px;
  border-color: rgba(201, 168, 76, 0.07);
}
.hc3 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 20%;
  border-color: rgba(201, 168, 76, 0.15);
}

.hero-con {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  z-index: 2;
}

.hero-ey {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-ey::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.75rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  flex: 1;
  min-width: 120px;
  padding: 0 1.5rem;
  text-align: center;
}
.stat-n {
  font-family: var(--ff-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat-u {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold2);
}
.stat p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
}
.stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   7. MARQUEE TICKER
───────────────────────────────────────── */
.mq-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.85rem 0;
}
.mq-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 5s linear infinite;
}
.mq-track span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 1.5rem;
}
.mq-track .dot {
  padding: 0 0.25rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}

/* ─────────────────────────────────────────
   8. SECTION WRAPPER
───────────────────────────────────────── */
.sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ─────────────────────────────────────────
   9. WHY US — FEATURE CARDS
───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--rl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
}
.card:hover::before {
  transform: scaleX(1);
}
.card-ico {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
.card h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   10. DESTINATIONS BAND
───────────────────────────────────────── */
.dest-band {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem clamp(2rem, 6vw, 6rem);
  overflow: hidden;
}

.dest-text {
  max-width: 520px;
}
.dest-text p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.dest-list {
  margin-bottom: 2.5rem;
}
.dest-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Animated globe */
.dest-vis {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  flex-shrink: 0;
}

.gr {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pr 3s ease-in-out infinite;
}
.r1 {
  width: 260px;
  height: 260px;
  animation-delay: 0s;
}
.r2 {
  width: 330px;
  height: 330px;
  animation-delay: 0.6s;
  border-color: rgba(201, 168, 76, 0.1);
}
.r3 {
  width: 380px;
  height: 380px;
  animation-delay: 1.2s;
  border-color: rgba(201, 168, 76, 0.06);
}

@keyframes pr {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.globe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--navy2), #0a1628);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
}
.globe-core span {
  font-family: var(--ff-disp);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.globe-core small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gd {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  animation: gdp 2s ease-in-out infinite;
}
.gd1 {
  top: 18%;
  left: 28%;
  animation-delay: 0.1s;
}
.gd2 {
  top: 35%;
  left: 72%;
  animation-delay: 0.5s;
}
.gd3 {
  top: 68%;
  left: 60%;
  animation-delay: 0.9s;
}
.gd4 {
  top: 75%;
  left: 25%;
  animation-delay: 1.3s;
}
.gd5 {
  top: 22%;
  left: 62%;
  animation-delay: 0.7s;
}

@keyframes gdp {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

/* ─────────────────────────────────────────
   11. TESTIMONIALS
───────────────────────────────────────── */
.testi-sec {
  text-align: center;
}
.testi-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2rem;
  min-height: 220px;
}

.testi-card {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2.75rem;
  position: relative;
  text-align: left;
}
.testi-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.testi-card::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.testi-q {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--gold);
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-auth strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}
.testi-auth span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory2);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.tdot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─────────────────────────────────────────
   12. CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner h2 em {
  color: var(--gold);
  font-style: italic;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

/* ─────────────────────────────────────────
   13. PAGE HERO (Products & Contact)
───────────────────────────────────────── */
.ph {
  position: relative;
  padding: 9rem 2rem 5rem;
  overflow: hidden;
}
.ph-prod {
  background: var(--navy);
}
.ph-cont {
  background: var(--navy2);
}
.ph-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
}

.ph-con {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}
.ph-con h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  max-width: 600px;
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}
.ph-con h1 em {
  color: var(--gold);
  font-style: italic;
}
.ph-con p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.75;
}
/* hero-ey inside page hero (on dark bg) */
.ph-con .hero-ey {
  color: var(--gold2);
}
.ph-con .hero-ey::before {
  background: var(--gold2);
}

/* ─────────────────────────────────────────
   14. PRODUCTS PAGE
───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1rem;
}
.fbtn {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: var(--tr);
}
.fbtn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.fbtn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.prod-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* Product card */
.pc {
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
}
.pc.hidden {
  display: none;
}

.pi {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.pi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.15);
}

.ag1 {
  background: linear-gradient(135deg, #c8a96e, #a0784a);
}
.ag2 {
  background: linear-gradient(135deg, #e4824a, #c9503a);
}
.ag3 {
  background: linear-gradient(135deg, #7bb369, #4e8e42);
}
.tx1 {
  background: linear-gradient(135deg, #6ab0c8, #3a7fb4);
}
.tx2 {
  background: linear-gradient(135deg, #c8a3d4, #8a5faa);
}
.tx3 {
  background: linear-gradient(135deg, #a89060, #7a6438);
}
.en1 {
  background: linear-gradient(135deg, #8ab0c8, #4a6ea0);
}
.en2 {
  background: linear-gradient(135deg, #7eaab8, #3e6878);
}
.fo1 {
  background: linear-gradient(135deg, #c8ae6e, #b87e3a);
}
.fo2 {
  background: linear-gradient(135deg, #6e3a1e, #4a2014);
}
.ch1 {
  background: linear-gradient(135deg, #6e90c8, #3a5ea0);
}
.ch2 {
  background: linear-gradient(135deg, #90c86e, #4e8c3a);
}

.pbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.pb {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}
.ptag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pb h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.pb p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.pmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.25rem 0;
}
.pmeta span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   15. CONTACT PAGE
───────────────────────────────────────── */
.cont-lay {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.cont-info h2,
.cont-form-w h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}
.cont-info h2 em,
.cont-form-w h2 em {
  color: var(--gold);
  font-style: italic;
}

.ic {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: var(--tr);
}
.ic:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.ic-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ic strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.ic p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.offices {
  margin-top: 2rem;
}
.offices h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.ofc {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}
.fg.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

input,
select,
textarea {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #dde3ee;
  border-radius: 6px;
  padding: 0.8rem 1.1rem;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: #bdc4d5;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
select {
  cursor: pointer;
}
input.err,
select.err,
textarea.err {
  border-color: #e05454;
}

.ferr {
  font-size: 0.75rem;
  color: #e05454;
  display: none;
  margin-top: -0.2rem;
}
.ferr.show {
  display: block;
}

.fsuccess {
  background: #edf7f0;
  color: #2d6e4e;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #b6e0c9;
}

/* Map placeholder */
.map-sec {
  background: var(--ivory2);
  padding: 3rem 2rem;
}
.map-ph {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--rl);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
}
.map-pin {
  font-size: 2.5rem;
}
.map-ph p {
  font-weight: 500;
  color: var(--navy);
}
.map-ph span {
  font-size: 0.82rem;
}

/* ─────────────────────────────────────────
   16. FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 5rem 2rem 2rem;
}

.ft-in {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer logo text — white since footer is dark */
footer .logo-tx {
  color: var(--white);
}

.ft-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin: 1rem 0 1.5rem;
}
.socials {
  display: flex;
  gap: 0.75rem;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--tr);
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.ft-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0;
  transition: color 0.2s;
  cursor: pointer;
}
.ft-col a:hover {
  color: var(--white);
}

.ft-bot {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-bot p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
.ft-leg {
  display: flex;
  gap: 1.5rem;
}
.ft-leg a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.ft-leg a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────
   17. SCROLL REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.12s;
}
.d2 {
  transition-delay: 0.24s;
}
.d3 {
  transition-delay: 0.36s;
}
.d4 {
  transition-delay: 0.48s;
}

/* ─────────────────────────────────────────
   18. RESPONSIVE — ALL BREAKPOINTS
───────────────────────────────────────── */

@media (max-width: 1100px) {
  .ft-in {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .dest-band {
    gap: 3rem;
    padding: 5rem 3rem;
  }
  .hero-con {
    padding: 5rem 1.5rem 2.5rem;
  }
  .hero-stats {
    padding: 1.5rem 1.5rem 3rem;
  }
}

@media (max-width: 1024px) {
  .dest-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 2rem;
  }
  .dest-text {
    max-width: 100%;
  }
  .dest-vis {
    margin: 3rem auto 0;
  }
  .dest-list li {
    justify-content: center;
  }
  .cont-lay {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ft-in {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }
  .ph-con h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  .sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  }
  .testi-card {
    padding: 2rem;
  }
  .cont-info h2,
  .cont-form-w h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }
  .hero-con {
    padding: 6rem 1.25rem 2rem;
  }
  .hero-ey {
    font-size: 0.68rem;
  }
  .hero-h1 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
    max-width: 100%;
  }
  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-acts {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .btn-pri,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    padding: 1.5rem 1.25rem 3rem;
    gap: 0;
  }
  .stat {
    padding: 0 0.75rem;
    min-width: unset;
  }
  .stat-n {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .stat-u {
    font-size: 1.1rem;
  }
  .stat p {
    font-size: 0.65rem;
  }

  .mq-track span {
    font-size: 0.7rem;
    padding: 0 1rem;
  }

  .sec {
    padding: 3.5rem 1.25rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card {
    padding: 1.75rem;
  }

  .dest-band {
    padding: 4rem 1.25rem;
  }
  .dest-vis {
    width: 260px;
    height: 260px;
  }
  .r1 {
    width: 160px;
    height: 160px;
  }
  .r2 {
    width: 210px;
    height: 210px;
  }
  .r3 {
    width: 260px;
    height: 260px;
  }
  .globe-core {
    width: 90px;
    height: 90px;
  }
  .globe-core span {
    font-size: 1.6rem;
  }
  .globe-core small {
    font-size: 0.55rem;
  }

  .testi-card {
    padding: 1.75rem;
  }
  .testi-q {
    font-size: 0.95rem;
  }

  .cta-banner {
    padding: 3.5rem 1.25rem;
  }
  .btn-pri.lg {
    width: auto;
    padding: 1rem 2rem;
  }

  .ph {
    padding: 7.5rem 1.25rem 3.5rem;
  }
  .ph-con p {
    font-size: 0.95rem;
  }

  .filter-bar {
    padding: 2rem 1.25rem 1rem;
    gap: 0.5rem;
  }
  .fbtn {
    font-size: 0.72rem;
    padding: 0.45rem 1rem;
  }
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    padding: 1.5rem 1.25rem 3rem;
    gap: 1.25rem;
  }

  .cont-lay {
    padding: 3.5rem 1.25rem;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .cont-info h2,
  .cont-form-w h2 {
    font-size: 1.6rem;
  }

  .ft-in {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  .ft-brand {
    grid-column: 1 / -1;
  }
  .ft-bot {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .ft-leg {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer {
    padding: 3.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-in {
    padding: 0.9rem 1rem;
  }
  .logo-tx {
    font-size: 0.85rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1rem 2.5rem;
  }
  .stat {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    min-width: unset;
  }
  .stat-div {
    display: none;
  }
  .stat-n {
    font-size: 2rem;
  }
  .stat-u {
    font-size: 1rem;
  }

  .hero-h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .hero-con {
    padding: 5.5rem 1rem 1.5rem;
  }
  .hero-acts .btn-pri,
  .hero-acts .btn-ghost {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
  }

  .sec-title {
    font-size: 1.7rem;
    margin-bottom: 1.75rem;
  }
  .sec {
    padding: 3rem 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 1.5rem;
  }

  .dest-band {
    padding: 3.5rem 1rem;
  }
  .dest-vis {
    width: 240px;
    height: 240px;
  }
  .r1 {
    width: 140px;
    height: 140px;
  }
  .r2 {
    width: 190px;
    height: 190px;
  }
  .r3 {
    width: 240px;
    height: 240px;
  }
  .globe-core {
    width: 80px;
    height: 80px;
  }
  .globe-core span {
    font-size: 1.4rem;
  }

  .prod-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 3rem;
    gap: 1rem;
  }
  .filter-bar {
    padding: 1.75rem 1rem 0.75rem;
    gap: 0.4rem;
  }
  .fbtn {
    font-size: 0.68rem;
    padding: 0.4rem 0.85rem;
  }
  .pi {
    height: 180px;
  }

  .ph {
    padding: 6.5rem 1rem 3rem;
  }
  .ph-con h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .cont-lay {
    padding: 3rem 1rem;
  }
  .ic {
    padding: 1rem 1.25rem;
  }
  .ic-ico {
    font-size: 1.25rem;
  }

  .testi-card {
    padding: 1.5rem;
  }
  .testi-card::before {
    font-size: 4rem;
    top: -0.5rem;
    left: 1rem;
  }
  .testi-q {
    font-size: 0.9rem;
  }
  .testi-auth strong {
    font-size: 0.85rem;
  }
  .testi-auth span {
    font-size: 0.72rem;
  }

  .cta-banner {
    padding: 3rem 1rem;
  }
  .cta-banner h2 {
    font-size: 1.6rem;
  }
  .cta-banner p {
    font-size: 0.9rem;
  }

  .ft-in {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .ft-bot p {
    font-size: 0.72rem;
  }
  .ft-leg a {
    font-size: 0.72rem;
  }
  footer {
    padding: 3rem 1rem 1.5rem;
  }
}

@media (max-width: 360px) {
  .hero-h1 {
    font-size: 1.85rem;
  }
  .hero-sub {
    font-size: 0.88rem;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .stat-n {
    font-size: 1.6rem;
  }
  .logo-tx {
    display: none;
  }
  .fbtn {
    font-size: 0.65rem;
    padding: 0.38rem 0.75rem;
  }
  .nav-in {
    padding: 0.85rem;
  }
}

.socials a {
  margin: 0 5px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

.socials a:hover {
  color: #c59d5f; /* luxury gold tone */
}

/* shipment image code */

/* ─────────────────────────────────────────
   DEST VIS WRAP — globe + image card stacked
───────────────────────────────────────── */
.dest-vis-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

/* Export image card */
.export-card {
  width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.export-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

.export-card-img {
  position: relative;
  height: 180px;
  background: rgba(10, 22, 40, 0.6);
  overflow: hidden;
}
.export-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.export-card:hover .export-img {
  transform: scale(1.04);
}

/* Placeholder — shown behind image; hidden when image loads */
.export-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(
    135deg,
    rgba(28, 63, 115, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 0;
}
.export-img:not([src='']):not([src='assets/ASR.png']) ~ .export-placeholder,
.export-img[src]:not([src='']) {
  z-index: 1;
}
/* Simple hide when real image loads */
.export-img {
  position: relative;
  z-index: 1;
}
.export-placeholder {
  z-index: 0;
}
.export-placeholder-ico {
  font-size: 2.2rem;
  line-height: 1;
}
.export-placeholder p {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.export-placeholder span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.export-card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.export-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.export-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .dest-vis-wrap {
    margin: 3rem auto 0;
  }
}
@media (max-width: 768px) {
  .export-card {
    width: 260px;
  }
  .export-card-img {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .export-card {
    width: 240px;
  }
}

/* gallery css */
/* ───────── SIMPLE GALLERY ───────── */

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .gallery-grid img {
    height: 200px;
  }
}
