/* =========================================================
   WORLD TRADE SHIPPING — STYLESHEET
   Tokens: Navy #0B1F33 · Blue #0066CC · Orange #F59E0B
           White #FFFFFF · Light Gray #F5F7FA · Text #1F2937
   Type: Space Grotesk (display) / Inter (body) / JetBrains Mono (data)
   ========================================================= */

:root{
  --navy:#0B1F33;
  --navy-light:#122a45;
  --blue:#0066CC;
  --blue-dark:#004f9e;
  --orange:#F59E0B;
  --white:#FFFFFF;
  --gray:#F5F7FA;
  --gray-mid:#E4E9F0;
  --text:#1F2937;
  --text-muted:#5B6B80;
  --border:#E4E9F0;

  --font-display:'Space Grotesk', 'Inter', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  --container:1240px;
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-sm:0 2px 10px rgba(11,31,51,0.06);
  --shadow-md:0 12px 32px rgba(11,31,51,0.10);
  --shadow-lg:0 24px 60px rgba(11,31,51,0.16);
  --ease:cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul,ol{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;background:none;border:none;color:inherit;}
input,select,textarea{font-family:inherit;font-size:1rem;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--navy);
  line-height:1.15;
  margin:0;
  font-weight:700;
}

.container{
  max-width:var(--container);
  margin:0 70px;
  padding:0 24px;
}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--navy); color:var(--white);
  padding:10px 16px; border-radius:var(--radius-sm);
  z-index:999; transition:top .2s var(--ease);
}
.skip-link:focus{top:12px;}

:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:2px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.01em;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--orange);
  color:var(--navy);
  box-shadow:0 8px 20px rgba(245,158,11,0.28);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 12px 26px rgba(245,158,11,0.36);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover{background:rgba(255,255,255,0.12); border-color:var(--white); transform:translateY(-2px);}
.btn-sm{padding:10px 20px; font-size:0.85rem;}
.btn-lg{padding:16px 36px; font-size:1rem; margin-top:8px;}

/* ---------- Section basics ---------- */
section{padding:96px 0;}
.section-label{
  font-family:var(--font-mono);
  font-size:0.78rem;
  letter-spacing:0.14em;
  color:var(--blue);
  font-weight:600;
  margin:0 0 14px;
  text-transform:uppercase;
}
.section-heading{
  font-size:clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom:14px;
  max-width:720px;
}
.section-desc{
  color:var(--text-muted);
  font-size:1.05rem;
  max-width:600px;
}
.section-intro.center{text-align:center; margin:0 auto 56px; display:flex; flex-direction:column; align-items:center;}
.section-intro.center .section-heading, .section-intro.center .section-desc{max-width:640px;}
.section-intro{margin-bottom:56px;}

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{opacity:1; transform:translateY(0);}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  background:transparent;
  transition:background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding:22px 0;
}
.site-header.is-scrolled{
  background:rgba(11,31,51,0.94);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 24px rgba(0,0,0,0.18);
  padding:12px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  font-family:var(--font-display);
}
.logo-mark{display:flex; color:var(--orange);}
.logo-text{
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:0.02em;
  line-height:1.1;
  display:flex;
  flex-direction:column;
}
.logo-sub{
  font-size:0.62rem;
  letter-spacing:0.22em;
  color:var(--orange);
  font-weight:600;
}

.main-nav ul{display:flex; gap:34px;}
.nav-link{
  color:rgba(255,255,255,0.85);
  font-size:0.92rem;
  font-weight:500;
  position:relative;
  padding:6px 0;
  transition:color .2s var(--ease);
}
.nav-link::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px; background:var(--orange);
  transition:width .25s var(--ease);
}
.nav-link:hover, .nav-link.is-active{color:var(--white);}
.nav-link:hover::after, .nav-link.is-active::after{width:100%;}

.header-actions{display:flex; align-items:center; gap:18px;}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  z-index:600;
}
.hamburger span{
  width:24px; height:2px; background:var(--white);
  border-radius:2px; transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.is-open span:nth-child(2){opacity:0;}
.hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Services dropdown */ 
.has-dropdown { position: relative; }
 .dropdown-menu {
     position: absolute;
      top: 100%; left: 0;
       min-width: 250px;
        margin: 0;
         padding: 10px 0;
          list-style: none; 
          background: #fff;
           box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            opacity: 0; 
            visibility: hidden;
             transform: translateY(10px);
              transition: all 0.3s ease; 
              z-index: 9999; 
              display:flex; 
              flex-direction:column;
              line-height: 0;
            }
             /* Show dropdown */
              .has-dropdown:hover > .dropdown-menu { 
                opacity: 1;
                 visibility: visible;
                  transform: translateY(0); 
                } 
                /* Dropdown links */ 
                .dropdown-menu li {
                     width: 100%; 
                    } 
                    .dropdown-menu li a {
                         display: block;
                          padding: 12px 18px;
                           color: #222;
                            text-decoration: none;
                             white-space: nowrap; 
                            } 
                            .dropdown-menu li a:hover {
                                 background: #f5f5f5;
                                 }
                                  /* Arrow */ 
                                  .dropdown-arrow {
                                     margin-left: 5px;
                                      font-size: 12px;
                                     }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  overflow:hidden;
  background:var(--navy);
}
.hero-track{position:relative; width:100%; height:100%;}
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s var(--ease);
  display:flex;
  align-items:center;
}
.hero-slide.is-active{opacity:1; visibility:visible; z-index:2;}
.hero-media{position:absolute; inset:0; z-index:0;}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.06);
  transition:transform 8s linear;
}
.hero-slide.is-active .hero-media img{transform:scale(1);}

.hero-content{
  position:relative; z-index:1;
  color:var(--white);
  max-width:680px;
}
.hero-label{
  font-family:var(--font-mono);
  font-size:0.8rem;
  letter-spacing:0.16em;
  color:var(--orange);
  font-weight:600;
  margin-bottom:20px;
  opacity:0;
  transform:translateY(14px);
}
.hero-heading{
  color:var(--white);
  font-size:clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom:22px;
  opacity:0;
  transform:translateY(18px);
}
.hero-desc{
  font-size:1.1rem;
  color:rgba(255,255,255,0.86);
  max-width:520px;
  margin-bottom:34px;
  opacity:0;
  transform:translateY(18px);
}
.hero-btns{display:flex; gap:16px; flex-wrap:wrap;}
.hero-btns{opacity:0; transform:translateY(18px);}

.hero-slide.is-active .hero-label,
.hero-slide.is-active .hero-heading,
.hero-slide.is-active .hero-desc,
.hero-slide.is-active .hero-btns{
  opacity:1; transform:translateY(0);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.hero-slide.is-active .hero-label{transition-delay:.25s;}
.hero-slide.is-active .hero-heading{transition-delay:.4s;}
.hero-slide.is-active .hero-desc{transition-delay:.55s;}
.hero-slide.is-active .hero-btns{transition-delay:.7s;}

.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:52px; height:52px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.35);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  z-index:5;
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.hero-arrow:hover{background:rgba(255,255,255,0.28);}
.hero-arrow-prev{left:28px;}
.hero-arrow-next{right:28px;}

.hero-dots{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; gap:12px; z-index:5;
}
.hero-dot{
  width:34px; height:4px; border-radius:4px;
  background:rgba(255,255,255,0.35);
  transition:background .3s var(--ease), width .3s var(--ease);
}
.hero-dot.is-active{background:var(--orange); width:50px;}

.hero-scroll-cue{
  position:absolute; bottom:34px; right:36px; z-index:5;
  width:30px; height:48px; border:1.5px solid rgba(255,255,255,0.5); border-radius:20px;
  display:none;
}
.hero-scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:2px; background:var(--orange);
  animation:scrollcue 1.8s infinite;
}
@keyframes scrollcue{0%{opacity:1; top:8px;} 70%{opacity:0; top:26px;} 100%{opacity:0; top:8px;}}
@media (min-width:640px){.hero-scroll-cue{display:block;}}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1fr;
  gap:64px;
  align-items:center;
}
.about-media{position:relative;}
.about-media img{border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); width:100%; aspect-ratio:4/5; object-fit:cover;}
.about-media-badge{
  position:absolute; left:-24px; bottom:-24px;
  background:var(--navy); color:var(--white);
  border-radius:var(--radius-md);
  padding:20px 24px;
  box-shadow:var(--shadow-lg);
  max-width:210px;
}
.badge-num{display:block; font-family:var(--font-display); font-size:1.8rem; color:var(--orange); font-weight:700;}
.badge-txt{font-size:0.82rem; color:rgba(255,255,255,0.82);}
.about-text{color:var(--text-muted); font-size:1.05rem; margin-bottom:24px;}
.feature-list{display:flex; flex-direction:column; gap:12px; margin-bottom:32px;}
.feature-list li{display:flex; align-items:center; gap:12px; font-weight:600; color:var(--navy);}
.feature-check{
  width:26px; height:26px; border-radius:50%;
  background:rgba(0,102,204,0.1); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:0.8rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{background:var(--gray);}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  position:relative;
  overflow:hidden;
}
.service-card:hover{transform:translateY(-8px); box-shadow:var(--shadow-md);}
.service-num{
  font-family:var(--font-mono);
  color:var(--gray-mid);
  font-size:2.2rem;
  font-weight:600;
  position:absolute; top:20px; right:26px;
}
.service-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:60px; height:60px; border-radius:16px;
  background:rgba(0,102,204,0.08); color:var(--blue);
  margin-bottom:22px;
}
.service-card h3{font-size:1.2rem; margin-bottom:10px;}
.service-card p{color:var(--text-muted); font-size:0.95rem; margin-bottom:18px;}
.card-link{
  color:var(--blue); font-weight:600; font-size:0.9rem;
  display:inline-flex; align-items:center; gap:6px;
  transition:gap .2s var(--ease);
}
.card-link:hover{gap:10px;}

/* =========================================================
   STATS
   ========================================================= */
.stats{background:var(--navy); color:var(--white);}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  text-align:center;
}
.stat-number{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(2.2rem, 4vw, 3.2rem);
  font-weight:700;
  color:var(--orange);
}
.stat-label{
  font-size:0.92rem;
  color:rgba(255,255,255,0.72);
  letter-spacing:0.02em;
}

/* =========================================================
   GLOBAL NETWORK
   ========================================================= */
.network-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:56px;
  align-items:center;
}
.network-map{color:var(--blue); background:var(--gray); border-radius:var(--radius-lg); padding:20px;}
.network-map svg{width:100%; height:auto;}
.net-point circle{fill:var(--orange); stroke:var(--white); stroke-width:2;}
.net-point text{
  font-family:var(--font-mono);
  font-size:11px;
  fill:var(--navy);
  font-weight:600;
}
.network-copy{font-size:1.05rem; color:var(--text-muted); line-height:1.75;}
.network-copy strong{color:var(--navy);}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us{background:var(--gray);}
.why-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:22px;
}
.why-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:30px 22px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.why-icon{
  width:56px; height:56px; border-radius:50%;
  background:rgba(245,158,11,0.12); color:var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
}
.why-card h3{font-size:1.02rem; margin-bottom:8px;}
.why-card p{font-size:0.88rem; color:var(--text-muted);}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  position:relative;
}
.step{
  position:relative;
  padding:0 26px;
  text-align:center;
}
.step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:28px; right:-14px;
  width:calc(100% - 4px);
  height:2px;
  background:repeating-linear-gradient(90deg, var(--gray-mid) 0 8px, transparent 8px 16px);
}
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%;
  background:var(--navy); color:var(--orange);
  font-family:var(--font-mono); font-weight:700; font-size:1.1rem;
  margin-bottom:20px;
  position:relative; z-index:1;
}
.step h3{font-size:1.08rem; margin-bottom:8px;}
.step p{font-size:0.9rem; color:var(--text-muted);}

/* =========================================================
   SHIPPING SHOWCASE
   ========================================================= */
.showcase{padding:0;}
.showcase-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
}
.showcase-card{
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
}
.showcase-card img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.showcase-card:hover img{transform:scale(1.08);}
.showcase-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,31,51,0) 30%, rgba(11,31,51,0.92) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px;
  color:var(--white);
}
.showcase-overlay h3{color:var(--white); font-size:1.2rem; margin-bottom:8px;}
.showcase-overlay p{
  font-size:0.88rem; color:rgba(255,255,255,0.8);
  margin-bottom:16px;
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .4s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.showcase-card:hover .showcase-overlay p{max-height:60px; opacity:1;}
.showcase-overlay .btn{
  opacity:0; transform:translateY(10px);
  transition:opacity .3s var(--ease), transform .3s var(--ease);
  align-self:flex-start;
}
.showcase-card:hover .showcase-overlay .btn{opacity:1; transform:translateY(0);}

/* =========================================================
   DESTINATIONS
   ========================================================= */
.destinations{background:var(--gray);}
.dest-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.dest-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:26px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dest-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-md);}
.dest-flag{font-size:1.8rem; display:block; margin-bottom:12px;}
.dest-card h3{font-size:1.05rem; margin-bottom:6px;}
.dest-card p{font-size:0.86rem; color:var(--text-muted);}

/* =========================================================
   TRACKING
   ========================================================= */
.tracking-box{
  max-width:760px; margin:0 auto;
  background:var(--gray);
  border-radius:var(--radius-lg);
  padding:40px;
  text-align:center;
}
.tracking-form{
  display:flex; gap:14px; flex-wrap:wrap;
  justify-content:center;
}
.tracking-form input{
  flex:1 1 320px;
  padding:15px 18px;
  border:1.5px solid var(--border);
  border-radius:100px;
  font-size:0.95rem;
  background:var(--white);
  transition:border-color .2s var(--ease);
}
.tracking-form input:focus{border-color:var(--blue); outline:none;}
.tracking-hint{margin-top:16px; font-size:0.85rem; color:var(--text-muted);}
.tracking-hint strong{font-family:var(--font-mono); color:var(--navy);}

.tracking-result{
  margin-top:36px;
  text-align:left;
  background:var(--white);
  border-radius:var(--radius-md);
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.tracking-result.is-error{color:#B42318; text-align:center; font-weight:600;}
.tr-head{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:20px;}
.tr-id{font-family:var(--font-mono); font-weight:700; color:var(--navy); font-size:1.05rem;}
.tr-status{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(245,158,11,0.14); color:#92610a;
  padding:6px 14px; border-radius:100px; font-size:0.82rem; font-weight:700;
}
.tr-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
  margin-bottom:28px;
}
.tr-grid dt{font-size:0.78rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--text-muted); margin-bottom:4px;}
.tr-grid dd{margin:0; font-weight:600; color:var(--navy); font-size:0.95rem;}

.tr-timeline{display:flex; justify-content:space-between; position:relative; padding-top:8px;}
.tr-timeline::before{
  content:""; position:absolute; top:19px; left:5%; right:5%; height:2px; background:var(--gray-mid); z-index:0;
}
.tr-step{
  position:relative; z-index:1; flex:1; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.tr-step .dot{width:24px; height:24px; border-radius:50%; background:var(--white); border:2.5px solid var(--gray-mid); transition:all .3s var(--ease);}
.tr-step span.lbl{font-size:0.76rem; color:var(--text-muted); max-width:90px;}
.tr-step.is-done .dot{background:var(--blue); border-color:var(--blue);}
.tr-step.is-done span.lbl{color:var(--navy); font-weight:600;}
.tr-step.is-current .dot{background:var(--orange); border-color:var(--orange); box-shadow:0 0 0 5px rgba(245,158,11,0.22);}
.tr-step.is-current span.lbl{color:var(--navy); font-weight:700;}

/* =========================================================
   QUOTE FORM
   ========================================================= */
.quote{background:var(--gray);}
.quote-form{
  max-width:900px; margin:0 auto;
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:44px;
  box-shadow:var(--shadow-sm);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px 24px;
  margin-bottom:8px;
}
.form-field-full{grid-column:1 / -1;}
.form-field{display:flex; flex-direction:column; gap:8px;}
.form-field label{font-size:0.86rem; font-weight:600; color:var(--navy);}
.form-field input, .form-field select, .form-field textarea{
  padding:13px 16px;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--white);
  transition:border-color .2s var(--ease);
  width:100%;
  resize:vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{border-color:var(--blue); outline:none;}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea{border-color:#D92D20;}
.field-error{font-size:0.78rem; color:#D92D20; min-height:1em;}
.form-success{
  margin-top:20px; padding:16px 20px;
  background:rgba(0,102,204,0.08); color:var(--blue-dark);
  border-radius:var(--radius-sm); font-weight:500; font-size:0.92rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  margin:0;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.stars{color:var(--orange); letter-spacing:2px; margin-bottom:16px;}
.testimonial-card blockquote{margin:0 0 24px; font-size:1rem; color:var(--text); line-height:1.7;}
.testimonial-card figcaption{display:flex; align-items:center; gap:12px;}
.testimonial-card figcaption img{width:46px; height:46px; border-radius:50%; object-fit:cover;}
.t-name{display:block; font-weight:700; color:var(--navy); font-size:0.92rem;}
.t-company{display:block; font-size:0.8rem; color:var(--text-muted);}

/* =========================================================
   BLOG
   ========================================================= */
.blog{background:var(--gray);}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.blog-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.blog-card img{width:100%; height:190px; object-fit:cover;}
.blog-body{padding:26px;}
.blog-cat{
  font-family:var(--font-mono); font-size:0.72rem; letter-spacing:0.08em;
  color:var(--blue); font-weight:700; text-transform:uppercase;
}
.blog-date{font-size:0.78rem; color:var(--text-muted); margin-left:12px;}
.blog-body h3{font-size:1.12rem; margin:12px 0 8px;}
.blog-body p{font-size:0.92rem; color:var(--text-muted); margin-bottom:14px;}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{
  position:relative;
  padding:120px 0;
  color:var(--white);
  overflow:hidden;
}
.final-cta-media{position:absolute; inset:0;}
.final-cta-media img{width:100%; height:100%; object-fit:cover;}
.final-cta-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,31,51,0.88), rgba(11,31,51,0.88));}
.final-cta-content{position:relative; text-align:center; max-width:680px; margin:0 auto;}
.final-cta-content h2{color:var(--white); font-size:clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom:16px;}
.final-cta-content p{color:rgba(255,255,255,0.82); font-size:1.05rem; margin-bottom:32px;}
.final-cta .hero-btns{justify-content:center;}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1fr;
  gap:64px;
}
.info-list{display:flex; flex-direction:column; gap:16px; margin:28px 0 32px; font-size:1rem;}
.info-list li{display:flex; align-items:center; gap:12px;}
.info-list a{color:var(--blue); font-weight:500;}
.map-placeholder{
  height:220px; border-radius:var(--radius-md);
  background:linear-gradient(135deg, var(--gray) 0%, var(--gray-mid) 100%);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:0.9rem; font-weight:500;
  border:1.5px dashed var(--gray-mid);
}
.contact-form{
  background:var(--gray);
  border-radius:var(--radius-lg);
  padding:36px;
  display:flex; flex-direction:column; gap:20px;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--navy); color:rgba(255,255,255,0.75); padding-top:72px;}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand p{margin:16px 0 20px; font-size:0.92rem; max-width:280px;}
.site-footer .logo{color:var(--white);}
.social-icons{display:flex; gap:12px;}
.social-icons a{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s var(--ease), transform .2s var(--ease);
}
.social-icons a:hover{background:var(--orange); color:var(--navy); transform:translateY(-3px);}
.footer-col h4{color:var(--white); font-size:0.95rem; margin-bottom:20px; letter-spacing:0.02em;}
.footer-col ul{display:flex; flex-direction:column; gap:12px; font-size:0.9rem;}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{padding:26px 0; text-align:center; font-size:0.85rem; color:rgba(255,255,255,0.5);}

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:400;
  width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.is-visible{opacity:1; visibility:visible; transform:translateY(0);}
.back-to-top:hover{background:var(--blue);}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(3,1fr);}
  .dest-grid{grid-template-columns:repeat(3,1fr);}
  .showcase-grid{grid-template-columns:repeat(2,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr); row-gap:36px;}
  .about-grid{gap:44px;}
  .network-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr; gap:44px;}
  .testimonial-grid{grid-template-columns:repeat(2,1fr);}
  .blog-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:860px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(320px, 80vw);
    background:var(--navy);
    padding:100px 32px 32px;
    transform:translateX(100%);
    transition:transform .35s var(--ease);
    z-index:550;
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav ul{flex-direction:column; gap:26px;}
  .nav-link{color:var(--white); font-size:1.05rem;}
  .hamburger{display:flex;}
  .header-actions .btn-sm{display:none;}
}

@media (max-width:768px){
  section{padding:72px 0;}
  .about-grid{grid-template-columns:1fr;}
  .about-media img{aspect-ratio:16/10;}
  .about-media-badge{left:16px; bottom:-20px;}
  .services-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr; gap:40px;}
  .step:not(:last-child)::after{display:none;}
  .showcase-grid{grid-template-columns:1fr;}
  .dest-grid{grid-template-columns:1fr 1fr;}
  .testimonial-grid{grid-template-columns:1fr;}
  .blog-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .hero-btns{flex-direction:column; align-items:stretch;}
  .hero-btns .btn{width:100%;}
  .tr-grid{grid-template-columns:1fr 1fr;}
  .tr-timeline{flex-wrap:wrap; row-gap:20px;}
  .tr-timeline::before{display:none;}
  .hero-arrow{width:42px; height:42px;}
  .hero-arrow-prev{left:14px;}
  .hero-arrow-next{right:14px;}
}

@media (max-width:480px){
  .why-grid{grid-template-columns:1fr;}
  .dest-grid{grid-template-columns:1fr;}
  .tr-grid{grid-template-columns:1fr;}
  .tracking-box, .quote-form, .contact-form{padding:26px;}
  .hero-heading{font-size:2rem;}
}