/* ─── RESET ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
a{text-decoration:none;color:inherit}
ul,li{list-style:none}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:inherit}

/* ─── TYPOGRAPHY / BASE ─── */
body{
  font-family:'Noto Sans',Arial,sans-serif;
  font-size:14px;
  color:#333;
  background:#fff;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* ─── LAYOUT ─── */
.wrapper{display:flex;flex-direction:column;min-height:100vh;}
.container-lg{max-width:1230px;margin:0 auto;padding:0 15px;}
.container{max-width:1200px;margin:0 auto;padding:0 15px;}

/* ════════════════════════
   HEADER TOP  (logo + main-menu + phone/socials)
   Background: white, bottom border
════════════════════════ */
.header{position:sticky;top:0;z-index:1000;box-shadow:0 2px 8px rgba(0,0,0,.12);}

.header-top{background:#fff;border-bottom:1px solid #e8e8e8;height:100px;}
.header-top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
  gap:20px;
}
.header-left{display:flex;align-items:center;gap:40px;}

/* Logo */
.logo a{display:flex;align-items:center;}
.logo img,.custom-logo{height:44px;width:auto;}

/* Main menu (top row: Услуги, О компании…) */
.main-menu{display:flex;align-items:center;gap:0;margin:0;}
.main-menu li{display:flex;}
.main-menu a{
  font-size:14px;
  font-weight:300;
  color:#333;
  padding:0 14px;
  height:80px;
  display:flex;
  align-items:center;
  border-bottom:3px solid transparent;
  transition:color .2s,border-color .2s;
  white-space:nowrap;
}
.main-menu a:hover{color:#999;border-bottom-color:#fff;}

/* Header right: socials + phone + email */
.header-right .contacts{display:flex;flex-direction:column;align-items:flex-end;gap:4px;}
.contacts-items{display:flex;align-items:center;gap:12px;}

.socials{display:flex;align-items:center;gap:8px;}
.socials-link img{width:28px;height:28px;transition:opacity .2s;}
.socials-link:hover img{opacity:.75;}

.phone{display:flex;align-items:center;gap:8px;text-decoration:none;}
.phone-icon {
  margin-right: 10px;
  background: #FACE3E;
  border-radius: 6px;
  cursor: pointer;
  height: 30px;
  width: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;

  animation: hoverWave 1s linear infinite;
}

.phone-icon img {
  width: 16px;
  height: 16px;

  animation: phoneShake 1.5s infinite;
  transform-origin: center;
}

@keyframes phoneShake {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(-20deg); }
  20%  { transform: rotate(20deg); }
  30%  { transform: rotate(-20deg); }
  40%  { transform: rotate(20deg); }
  50%  { transform: rotate(-10deg); }
  60%  { transform: rotate(10deg); }
  70%  { transform: rotate(-5deg); }
  80%  { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes hoverWave {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.phone-text{font-family:'Unbounded', sans-serif;font-size:18px;font-weight:100;color:#333;letter-spacing:.3px;}

.contacts-mail{font-family:'Unbounded', sans-serif;font-size:8px;color:#444;transition:color .2s;text-decoration: none;}
.contacts-mail:hover{text-decoration: none !important;}

/* ════════════════════════
   HEADER CENTER  (hamburger + center-menu + yellow button)
   Background: dark gray #3d3d3d
════════════════════════ */
.header-center{background:#3d3d3d;}
.header-center-inner{
  display:flex;
  align-items:center;
  height:46px;
  gap:0;
}

/* Center menu items */
.center-menu{display:flex;align-items:stretch;margin:0;flex:1;}
.center-menu li{display:flex;}
.center-menu a{
  font-family:'Unbounded', sans-serif;
  font-size:14px;
  font-weight:400;
  color:rgba(255,255,255,.85);
  padding:0 16px;
  display:flex;
  align-items:center;
  transition:background .18s,color .18s;
  white-space:nowrap;
}
.center-menu a:hover{color:#FACE3E;}
.center-menu .current-menu-item a,
.center-menu a.active-page{background:#e31e24;color:#fff!important;}

/* Yellow CTA button */
.btn-yellow{
  width: 210px;
  height: 38px !important;
  background:#FACE3E;
  color:#1a1a1a;
  font-size:14px;
  font-weight:700;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:auto;
  white-space:nowrap;
  border-radius: 4px !important;
  border: none;
  transition:background .18s;
  text-transform:none;
  line-height:1.3;
  text-align:center;
}
.btn-yellow:hover{background:#f0b800;}

/* Hamburger (hidden on desktop) */
.hamb-btn{display:none;}

/* ════════════════════════
   HEADER BOTTOM  (dropdown navigation)
   Background: dark #2e2e2e
════════════════════════ */
.header-bottom{background:#fff;}
.header-bottom-inner{display:flex;align-items:stretch;}

.bottom-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
}
.bottom-menu>li{display:flex;position:relative;}
/* Vertical separator */
.bottom-menu>li::after{
  content: "";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:26px;
  background:#999;
}

/* Remove separator from last item */
.bottom-menu>li:first-child::after{
  display:none;
}
.bottom-menu>li>a{
  font-family:'Unbounded', sans-serif;
  font-size:14px;
  color:#2e2e2e;
  padding:0 18px;
  height:38px;
  display:flex;
  align-items:center;
  transition:background .18s,color .18s;
  white-space:nowrap;
}

/* Animated dropdown arrow */
.bottom-menu>li>a::after{
  content:"⌄";
  position:absolute;
  right:-2px;
  top:43%;
  transform:translateY(-52%) rotate(0deg);
  font-family:'Unbounded', sans-serif;
  font-size:24px;
  font-weight: 100;
  transition:
    transform .25s ease,
    opacity .2s ease;
  opacity:.6;
}

/* Rotate arrow when dropdown opens */
.bottom-menu>li:hover>a::after{
  content:"⌄";
  transform:translateY(-26%) rotate(180deg);
  opacity:.6;
}

/* Hover effect */
.bottom-menu>li>a:hover{
  background:rgba(0,0,0,.04);
  color:#000;
}

.bottom-menu>li:first-child>a{border-left:1px solid rgba(255,255,255,.08);}
.bottom-menu>li>a:hover{background:rgba(255,255,255,.07)}

/* Dropdown */
.sub-menu{
  position:absolute;
  top:100%;left:0;
  background:#fff;
  border:1px solid #e0e0e0;
  border-top:3px solid #fff;
  min-width:220px;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
  z-index:200;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}
.sub-menu li a{
  display:block;
  padding:10px 16px;
  font-family:'Unbounded', sans-serif;
  font-size:14px;
  color:#333;
  border-bottom:1px solid #f0f0f0;
  transition:
    background .15s,
    color .15s;
}

.sub-menu li a:hover{
  background:#f7f7f7;
  color:#000;
}

.bottom-menu>li:hover .sub-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.sub-menu li:last-child a{border-bottom:none;}
.sub-menu li a:hover{background:#fafafa;color:#999;}
.bottom-menu>li:hover .sub-menu{display:block;}

/* ════════════════════════
   BREADCRUMB
════════════════════════ */
.breadcrumb-wrap{background:#f8f8f8;border-bottom:1px solid #ebebeb;padding:10px 0;}
.breadcrumb{display:flex;align-items:center;gap:6px;font-size:12.5px;color:#888;}
.breadcrumb a{color:#face3e;}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb .sep{color:#ccc;}

/* ════════════════════════
   PAGE BANNER  (like inner-page banner on the site)
════════════════════════ */
.page-banner{
  background:#444;
  padding:36px 0 32px;
  text-align:center;
}
.page-banner h1{
  font-size:28px;
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
}
.page-banner p{
  font-size:15px;
  color:rgba(255,255,255,.65);
  max-width:500px;
  margin:0 auto;
  line-height:1.6;
}

/* ════════════════════════
   TRACKING CARD
════════════════════════ */
.track-section{padding:36px 0 0;}
.track-card-wrap{max-width:680px;margin:0 auto;}
.track-card{
  background:#fff;
  border:1px solid #ddd;
  border-top:3px solid #face3e;
  padding:28px 30px 24px;
  box-shadow:0 2px 8px rgba(0,0,0,.07);
}
.track-card h3{
  font-size:17px;
  font-weight:700;
  color:#1a1a1a;
  margin-bottom:5px;
}
.track-card .sub{
  font-size:12.5px;
  color:#888;
  margin-bottom:18px;
  line-height:1.5;
}
.track-row{display:flex;gap:10px;}
.track-input{
  flex:1;
  height:44px;
  border:1px solid #ddd;
  padding:0 14px;
  font-size:14px;
  font-family:inherit;
  color:#333;
  background:#fafafa;
  outline:none;
  transition:border-color .2s,box-shadow .2s;
}
.track-input::placeholder{color:#bbb;}
.track-input:focus{border-color:#face3e;box-shadow:0 0 0 2px rgba(227,30,36,.1);background:#fff;}
.track-submit{
  height:44px;
  padding:0 26px;
  background:#face3e;
  color:#1a1a1a;
  border:none;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:background .18s;
  white-space:nowrap;
}
.track-submit:hover{background:#face3e;}

.demo-hint{margin-top:10px;font-size:12px;color:#999;}
.demo-hint button{
  background:none;border:none;color:#face3e;
  font-size:12px;font-family:inherit;
  text-decoration:underline;text-underline-offset:2px;
  cursor:pointer;padding:0 3px;
}
.demo-hint button:hover{color:#c01820;}

/* ════════════════════════
   RESULT SECTION
════════════════════════ */
.result-section{padding:28px 0 50px;}
.result-wrap{max-width:820px;margin:0 auto;}

.status-block{
  border:1px solid #ddd;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.07);
  animation:fadeUp .35s ease both;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:none;}}

/* Status header: red */
.status-head{
  background:#face3e;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
}
.status-head-left .lbl{font-size:11px;color:#1a1a1a;text-transform:uppercase;letter-spacing:1px;margin-bottom:4px;}
.status-head-left .num{font-size:21px;font-weight:700;color:#1a1a1a;letter-spacing:.5px;}
.status-badge{
  display:inline-flex;align-items:center;gap:7px;
  margin-top:8px;
  background:rgba(0,0,0,.18);
  padding:5px 12px;
  font-size:12px;font-weight:600;color:#fff;letter-spacing:.3px;
}
.badge-dot{
  width:8px;height:8px;background:#fff;border-radius:50%;
  animation:blink 1.6s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.3;transform:scale(.65);}}

.status-head-right{text-align:right;font-size:12px;color:#1a1a1a;line-height:1.7;}
.status-head-right strong{color:#1a1a1a;font-size:14px;display:block;}

/* ─── SEA ANIMATION ─── */
.anim-sea{
  position:relative;height:260px;overflow:hidden;
  background:linear-gradient(180deg,#87ceeb 0%,#4a9fd4 38%,#1a6090 68%,#0d3d5e 100%);
}
.sea-sun{
  position:absolute;top:18px;right:70px;
  width:48px;height:48px;background:#ffe066;border-radius:50%;
  box-shadow:0 0 0 10px rgba(255,224,102,.18),0 0 0 22px rgba(255,224,102,.08);
  animation:sunGlow 3s ease-in-out infinite;
}
@keyframes sunGlow{0%,100%{box-shadow:0 0 0 10px rgba(255,224,102,.18),0 0 0 22px rgba(255,224,102,.08);}50%{box-shadow:0 0 0 14px rgba(255,224,102,.26),0 0 0 28px rgba(255,224,102,.13);}}

.cloud{position:absolute;}
.c-shape{
  background:rgba(255,255,255,.48);border-radius:50px;position:relative;
  animation:cDrift linear infinite;
}
.c-shape::before,.c-shape::after{content:'';position:absolute;background:rgba(255,255,255,.48);border-radius:50%;}
.c1 .c-shape{width:88px;height:22px;top:24px;animation-duration:26s;animation-delay:-6s;}
.c1 .c-shape::before{width:38px;height:38px;top:-20px;left:12px;}
.c1 .c-shape::after{width:28px;height:28px;top:-14px;left:40px;}
.c2 .c-shape{width:62px;height:17px;top:52px;animation-duration:20s;animation-delay:-13s;opacity:.7;}
.c2 .c-shape::before{width:26px;height:26px;top:-13px;left:8px;}
.c2 .c-shape::after{width:20px;height:20px;top:-10px;left:28px;}
.c3 .c-shape{width:52px;height:14px;top:14px;animation-duration:33s;animation-delay:-20s;opacity:.42;}
.c3 .c-shape::before{width:22px;height:22px;top:-11px;left:6px;}
.c3 .c-shape::after{width:17px;height:17px;top:-8px;left:22px;}
@keyframes cDrift{from{left:105%;}to{left:-140px;}}

.ship-wrap{
  position:absolute;bottom:70px;left:50%;transform:translateX(-50%);
  width:200px;
  animation:shipBob 3.2s ease-in-out infinite;
}
@keyframes shipBob{
  0%,100%{transform:translateX(-50%) translateY(0) rotate(0deg);}
  30%{transform:translateX(-50%) translateY(-6px) rotate(.7deg);}
  70%{transform:translateX(-50%) translateY(-3px) rotate(-.5deg);}
}
.ship-svg{width:100%;display:block;}

.wake-svg{
  position:absolute;bottom:64px;left:50%;transform:translateX(-62%);
  width:260px;height:22px;
  animation:shipBob 3.2s ease-in-out infinite;
}

.waves{position:absolute;bottom:0;left:0;right:0;height:100px;}
.wave{position:absolute;left:0;right:0;bottom:0;}
.wave svg{width:200%;height:100%;animation:waveMarch linear infinite;}
.wv1 svg{animation-duration:9s;}
.wv2 svg{animation-duration:13s;animation-direction:reverse;opacity:.65;}
.wv3 svg{animation-duration:7s;opacity:.5;}
@keyframes waveMarch{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ─── CUSTOMS ANIMATION ─── */
.anim-customs{
  position:relative;height:260px;overflow:hidden;
  background:#eef2f6;
}
.customs-tag{
  position:absolute;top:16px;left:24px;
  font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:#face3e;border:1px solid #face3e;padding:3px 10px;
}
.customs-scene{
  position:absolute;bottom:36px;left:50%;transform:translateX(-50%);
  width:300px;height:160px;
}
.conveyor{
  position:absolute;bottom:0;left:0;right:0;height:14px;
  background:repeating-linear-gradient(90deg,#c8c8c8 0,#c8c8c8 16px,#b0b0b0 16px,#b0b0b0 18px);
  border-radius:3px;border:1px solid #aaa;
  animation:beltMove 1s linear infinite;
}
@keyframes beltMove{to{background-position:18px 0;}}
.pkg{
  position:absolute;bottom:14px;left:15px;
  width:52px;height:46px;
  background:#c8a86a;border:1.5px solid #a8884a;border-radius:3px;
  animation:pkgGo 4.5s ease-in-out infinite;
}
.pkg::before{content:'';position:absolute;top:10px;left:0;right:0;height:2px;background:rgba(255,255,255,.28);}
.pkg::after{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:rgba(255,255,255,.28);}
@keyframes pkgGo{
  0%{left:15px;opacity:1;}
  45%{left:118px;opacity:1;}
  60%{left:118px;opacity:1;}
  100%{left:230px;opacity:0;}
}
.scan-arch{
  position:absolute;bottom:14px;left:95px;
  width:72px;height:110px;
  border:3px solid #face3e;border-bottom:none;border-radius:36px 36px 0 0;
}
.scan-beam{
  position:absolute;top:0;left:-2px;right:-2px;height:3px;
  background:#face3e;border-radius:1px;
  box-shadow:0 0 8px 3px rgba(227,30,36,.45);
  animation:beamScan 1.8s ease-in-out infinite;
}
@keyframes beamScan{0%,100%{top:0;}50%{top:100px;}}
.tick{position:absolute;color:#27ae60;font-size:22px;font-weight:700;opacity:0;animation:tickShow 4.5s ease-in-out infinite;}
.tk1{top:35px;left:45px;animation-delay:1.3s;}
.tk2{top:25px;left:135px;animation-delay:2.9s;}
.tk3{top:45px;left:215px;animation-delay:.6s;}
@keyframes tickShow{
  0%{opacity:0;transform:translateY(8px) scale(.5);}
  12%{opacity:1;transform:translateY(0) scale(1.15);}
  30%{opacity:.8;transform:translateY(-6px) scale(1);}
  50%,100%{opacity:0;}
}
.customs-pills{
  position:absolute;right:18px;top:50%;transform:translateY(-50%);
  display:flex;flex-direction:column;gap:7px;
}
.cpill{font-size:11px;font-weight:600;padding:5px 11px;display:flex;align-items:center;gap:6px;}
.cpill.done{background:#e4f5ec;color:#1a7a44;}
.cpill.active{background:#fef3e2;color:#a05a00;}
.cpill.wait{background:#f0f0f0;color:#999;}
.cpill-dot{width:6px;height:6px;border-radius:50%;}
.cpill.done .cpill-dot{background:#27ae60;}
.cpill.active .cpill-dot{background:#e67e22;animation:blink 1.4s ease-in-out infinite;}
.cpill.wait .cpill-dot{background:#ccc;}

/* ─── ROUTE STRIP ─── */
.route-strip{
  background:#f8f8f8;border-top:1px solid #e8e8e8;
  padding:12px 24px;
  display:flex;align-items:center;gap:10px;
  font-size:12.5px;color:#555;
}
.r-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;}
.r-from{background:#1a6090;}
.r-to{background:#face3e;}
.r-line{flex:1;height:1px;background:#e0e0e0;position:relative;}
.r-fill{position:absolute;top:0;left:0;height:100%;background:linear-gradient(90deg,#1a6090,#face3e);}
.r-icon{position:absolute;top:-9px;font-size:14px;transform:translateX(-50%);}
.r-label{font-weight:600;color:#1a1a1a;}

/* ─── INFO GRID ─── */
.info-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid #e8e8e8;}
.info-cell{padding:14px 20px;border-right:1px solid #e8e8e8;}
.info-cell:last-child{border-right:none;}
.info-lbl{font-size:10.5px;font-weight:600;text-transform:uppercase;letter-spacing:.8px;color:#1a1a1a;margin-bottom:4px;}
.info-val{font-size:13.5px;font-weight:600;color:#1a1a1a;}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer.footer{background:#444;margin-top:auto;}
.footer-row{
  display:flex;align-items:flex-start;
  padding:40px 0 30px;
  gap:40px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo img{height:40px;width:auto;}
.footer-menu{display:grid !important;flex-direction:column;gap:10px;}
.footer-menu li a{font-size:13px;color:rgba(255,255,255,.65);transition:color .18s;}
.footer-menu li a:hover{color:#fff;}
.footer .contacts{display:flex;flex-direction:column;gap:8px;margin-left:auto;}
.footer .contacts .socials{display:flex;align-items:center;gap:10px;}
.footer .contacts .socials-link img{width:26px;height:26px;}
.footer .contacts .socials-link:hover img{opacity:1;}
.footer .contacts .phone-text{font-size:18px;font-weight:700;color:#fff;}
.footer .contacts .phone-text span{color:#fff;}
.footer .contacts .contacts-mail{font-size:13px;color:rgba(255,255,255,.55);}
.footer .address{font-size:12px;color:rgba(255,255,255,.45);max-width:360px;line-height:1.5;}
.footer-copy{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  font-size:12px;color:rgba(255,255,255,.4);
  font-family:'Unbounded',sans-serif;
}
.footer-copy .address{color:rgba(255,255,255,.4);}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media(min-width:1024px){
  .footer-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:65px;
  }
  .footer-menu{display:grid !important;flex-direction:column;gap:10px;grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;}
  .footer-menu li a{font-size:16px !important;color:#c9c7c7;transition:color .18s;font-family:'Unbounded',sans-serif}
  .footer-menu li a:hover{color:#fff;}
  .footer .contacts{display:flex;flex-direction:column;gap:8px;margin-left:auto;order:3 !important;}
  .footer .contacts .socials{display:flex;align-items:center;gap:10px;}
  .footer .contacts .socials-link img{width:26px;height:26px;}
  .footer .contacts .socials-link:hover img{opacity:1;}
  .footer .contacts .phone-text{font-size:18px;font-weight:700;color:#fff;}
  .footer .contacts .phone-text span{color:#fff;}
  .footer .contacts .contacts-mail{font-size:13px;color:rgba(255,255,255,.55);}
  .footer .address{font-size:16px !important;color:#fff;max-width:360px;line-height:1.5;font-family:'Unbounded',sans-serif;font-weight: 800;}
  .footer-copy{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 0;
    font-size:12px;color:rgba(255,255,255,.4);
    font-family:'Unbounded',sans-serif;
  }
  .footer-copy .address{color:rgba(255,255,255,.4);}
}
@media(max-width:1024px){
  .main-menu a{padding:0 10px;font-size:16px;}
  .center-menu a{padding:0 11px;}
  .bottom-menu>li>a{padding:0 11px;font-size:12px;}
}
@media(max-width:768px){
  .header-center .center-menu{display:none;}
  .hamb-btn{display:flex;align-items:center;gap:8px;color:#fff;font-family:'Unbounded',sans-serif;font-size:14px;background:none;border:none;padding:0 0px;}
  .main-menu{display:none;}
  .header-bottom{display:none;}
  .track-row{flex-direction:column;}
  .info-grid{grid-template-columns:1fr 1fr;}
  .info-cell:nth-child(even){border-right:none;}
  .info-cell:nth-child(n+3){border-top:1px solid #FACE3E;}
  .customs-pills{display:none;}
  .status-head{flex-direction:column;align-items:flex-start;}
  .status-head-right{text-align:left;}

  /* ── HEADER TOP: logo left, contacts right ── */
  .header-top{
    min-height:120px !important;
  }
  .header-top-inner{
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    height:auto !important;
    padding:22px 0 !important;
    gap:12px !important;
  }
  .header-left{
    flex-direction:row !important;
    align-items:center !important;
    width:auto !important;
    gap:0 !important;
    flex-shrink:0;
  }

  .header-right .contacts{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-end !important;
    justify-content:flex-start !important;
    gap:10px !important;
  }

  .header-right .contacts-items{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-end !important;
    justify-content:flex-start !important;
    gap:10px !important;
    width:100% !important;
  }

  .header-right .socials{
    display:flex !important;
    align-items:flex-start !important;
    gap:6px !important;
    margin-top:-2px !important;
  }

  .header-right .socials-link img{
    width:28px !important;
    height:28px !important;
    display:block !important;
  }

  .header-right .phone{
    display:flex !important;
    align-items:flex-start !important;
    gap:6px !important;
  }

  .header-right .phone-icon{
    width:28px !important;
    height:28px !important;
    flex-shrink:0;
    display:none !important;
  }

  .header-right .phone-text{
    font-size:18px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    text-align:right !important;
  }

  .header-right .contacts-mail{
    font-size:12px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    text-align:right !important;
    width:100% !important;
  }

  /* ── FOOTER: logo → contacts → address → menu → copyright ── */
  .footer{
    min-height: 632px !important;
  }
  .footer-row{
    flex-direction:column !important;
    align-items:center !important;
    gap:32px !important;
    padding:56px 0 22px !important;
  }
  .footer-logo{
    text-align:center;
  }
  .footer .contacts{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
    gap:32px !important;
  }

  .footer .contacts .contacts-items{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
  }

  .footer .contacts .phone{
    order:2;
  }

  .footer .contacts .socials{
    order:2;
    display:flex !important;
    justify-content:center !important;
    gap:12px !important;
  }

  .footer .contacts .socials-link img{
    width:30px !important;
    height:30px !important;
    display:block !important;
  }
  /* Show address inside contacts on mobile */
  .footer .contacts .footer-address-block{
    display:block !important;
    color:#fff;
    font-family:'Unbounded',sans-serif;
    font-size:16px;
    margin-top:4px;
  }
  /* Hide duplicate address in footer-copy on mobile */
  .footer-copy .address{
    display:none !important;
  }

  /* nav menu: 2-column grid */
  .footer-menu{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:32px 48px;
    text-align:left;
    width:100%;
    padding:0 16px;
    margin-bottom:0;
  }
  .footer-menu li a{
    font-size:16px !important;
    color:rgba(255,255,255,.75) !important;
    text-transform:uppercase;
    font-family:'Unbounded', sans-serif;
    font-weight:300;
    letter-spacing:.5px;
  }

  .footer-copy{
    flex-direction:column !important;
    gap:18px !important;
    text-align:center !important;
  }
}

/* ════════════════════════
   ENHANCED RESPONSIVE DESIGN
════════════════════════ */
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
}

.container,
.container-lg{
  width:100%;
}

.track-card,
.status-block{
  border-radius:14px;
}

.track-input,
.track-submit,
.btn-yellow{
  border-radius:0px;
}

img,svg{
  max-width:100%;
  height:auto;
}

/* Large tablets / laptops */
@media (max-width: 1200px){
  .header-top-inner{
    gap:14px;
  }

  .header-left{
    gap:20px;
  }

  .main-menu a,
  .center-menu a,
  .bottom-menu>li>a{
    padding-left:10px;
    padding-right:10px;
  }

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

  .info-cell:nth-child(2n){
    border-right:none;
  }

  .info-cell:nth-child(n+3){
    border-top:1px solid #e8e8e8;
  }
}

/* Tablets */
@media (max-width: 992px){
  .header-top-inner{
    flex-direction:column;
    justify-content:center;
    height:auto;
    padding:14px 0;
  }

  .header-left,
  .header-right,
  .contacts-items{
    width:100%;
    justify-content:center;
  }

  .header-right .contacts{
    align-items:center;
  }

  .center-menu{
    overflow-x:auto;
    scrollbar-width:none;
  }

  .center-menu::-webkit-scrollbar{
    display:none;
  }

  .track-card{
    padding:22px 18px;
  }

  .status-head{
    padding:16px;
  }

  .page-banner h1{
    font-size:24px;
  }

  .page-banner p{
    font-size:14px;
  }

  .ship-wrap{
    width:160px;
  }
}

/* Mobile */
@media (max-width: 768px){
  .container,
  .container-lg{
    padding:0 12px;
  }

  .header{
    position:relative;
  }

  .phone-text{
    font-size:18px;
    white-space:nowrap;
  }

  .header-center-inner{
    justify-content:space-between;
  }

  .btn-yellow{
    padding:0 14px;
    font-size:12px;
  }

  .page-banner{
    padding:26px 0;
  }

  .page-banner h1{
    font-size:22px;
    line-height:1.3;
  }

  .track-section{
    padding-top:22px;
  }

  .track-card h3{
    font-size:16px;
  }

  .track-row{
    gap:12px;
  }

  .track-input,
  .track-submit{
    width:100%;
  }

  .track-submit{
    min-height:44px;
  }

  .anim-sea,
  .anim-customs{
    height:220px;
  }

  .route-strip{
    flex-wrap:wrap;
    row-gap:10px;
  }

  .r-line{
    min-width:100%;
    order:3;
  }

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

  .info-cell{
    border-right:none;
    border-top:1px solid #e8e8e8;
  }

  .info-cell:first-child{
    border-top:none;
  }

  .footer-copy{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}

/* Small phones */
@media (max-width: 480px){
  .logo img,
  .custom-logo{
    height:36px;
  }

  .status-head-left .num{
    font-size:18px;
    word-break:break-word;
  }

  .status-badge{
    font-size:11px;
  }

  .page-banner h1{
    font-size:20px;
  }

  .track-card{
    padding:18px 14px;
  }

  .track-input{
    font-size:13px;
  }

  .track-submit{
    font-size:12px;
    padding:0 14px;
  }

  .anim-sea,
  .anim-customs{
    height:190px;
  }

  .ship-wrap{
    width:130px;
    bottom:58px;
  }

  .sea-sun{
    right:20px;
    width:34px;
    height:34px;
  }

  .customs-scene{
    width:240px;
    transform:translateX(-50%) scale(.85);
  }

  .footer-row{
    padding:28px 0 22px;
  }
}


/* ════════════════════════
   GLOBAL SCALE UPGRADE (~133% FEEL)
════════════════════════ */
html{
  font-size:18px;
}

body{
  font-size:1.08rem;
  line-height:1.6;
}

/* Containers */
.container{
  max-width:1380px;
}

.container-lg{
  max-width:1420px;
}

/* Header */
.header-top-inner{
  height:98px;
}

.logo img,
.custom-logo{
  height:56px !important;
}

.main-menu a{
  font-family:'Unbounded', sans-serif;
  font-weight:300; /* Light */
  font-size:16px;
  height:98px;
  padding:0 42px;
}

.phone-text{
  font-size:20px;
}

.contacts-mail{
  font-size:13px;
}

.center-menu a{
  font-size:15px;
  padding:0 18px;
}

.header-center-inner,
.btn-yellow{
  height:58px;
}

.btn-yellow{
  font-size:15px;
  padding:0 28px;
}

.bottom-menu>li>a{
  height:48px;
  font-size:15px;
}

/* Banner */
.page-banner{
  padding:52px 0 46px;
}

.page-banner h1{
  font-size:42px;
}

.page-banner p{
  font-size:18px;
  max-width:760px;
}

/* Tracking */
.track-section{
  padding:56px 0 0;
}

.track-card-wrap{
  max-width:860px;
}

.track-card{
  padding:38px 40px 34px;
}

.track-card h3{
  font-size:28px;
}

.track-card .sub{
  font-size:15px;
}

.track-row{
  gap:16px;
}

.track-input{
  height:58px;
  font-size:17px;
  padding:0 18px;
}

.track-submit{
  height:58px;
  padding:0 34px;
  font-size:15px;
}

.demo-hint{
  margin-top:16px;
  font-size:14px;
}

/* Results */
.result-wrap{
  max-width:1040px;
}

.status-head{
  padding:26px 30px;
}

.status-head-left .lbl{
  font-size:13px;
}

.status-head-left .num{
  font-size:32px;
}

.status-badge{
  font-size:14px;
  padding:8px 14px;
}

.status-head-right{
  font-size:14px;
}

.status-head-right strong{
  font-size:18px;
}

.anim-sea,
.anim-customs{
  height:340px;
}

.ship-wrap{
  width:260px;
}

.route-strip{
  padding:18px 28px;
  font-size:15px;
}

.info-cell{
  padding:22px 24px;
}

.info-lbl{
  font-size:12px;
}

.info-val{
  font-size:16px;
}

/* Footer */
.footer-row{
  padding:54px 0 40px;
}

.footer-menu li a{
  font-size:15px;
}

.footer .contacts .phone-text{
  font-size:20px;
}

.footer .contacts .contacts-mail{
  font-size:15px;
}

.footer .address{
  font-size:14px;
}

.footer-copy{
  font-size:13px;
  padding:18px 0;
}

/* Responsive scaling adjustments */
@media (max-width: 992px){
  html{
    font-size:16px;
  }

  .page-banner h1{
    font-size:34px;
  }

  .track-card h3{
    font-size:24px;
  }

  .status-head-left .num{
    font-size:28px;
  }

  .anim-sea,
  .anim-customs{
    height:290px;
  }
}

@media (max-width: 768px){
  html{
    font-size:15px;
  }

  .header-top-inner{
    height:auto;
    padding:18px 0;
  }

  .main-menu a{
    height:auto;
  }

  .page-banner h1{
    font-size:28px;
  }

  .track-card{
    padding:28px 24px;
  }

  .track-input,
  .track-submit{
    height:52px;
  }

  .anim-sea,
  .anim-customs{
    height:240px;
  }

  .ship-wrap{
    width:180px;
  }
}

@media (max-width: 480px){
  html{
    font-size:14px;
  }

  .page-banner h1{
    font-size:24px;
  }

  .status-head-left .num{
    font-size:22px;
  }

  .track-card h3{
    font-size:20px;
  }
}


/* Mobile click/tap fixes */
.hamb-btn,
.btn-yellow{
  position:relative;
  z-index:20;
  pointer-events:auto;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

.header-center,
.header-center-inner{
  position:relative;
  z-index:10;
}

.hamb-btn{
  border:none;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
}



/* Mobile dropdown menu */
@media (max-width:768px){

  .header-center-inner{
    position:relative;
  }

  .center-menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#3d3d3d;
    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
  }

  .center-menu.open{
    display:flex !important;
  }

  .center-menu li{
    width:100%;
  }

  .center-menu a{
    width:100%;
    min-height:52px;
    padding:14px 18px;
    border-top:1px solid rgba(255,255,255,.08);
  }

  .btn-yellow{
    flex-shrink:0;
  }
}