
:root{
  --red:#E63946;
  --blue:#0074ED;
  --gold:#FDB515;
  --gold-soft:#F8D77A;
  --cream:#FFF4DA;
  --text:#1F2A44;
  --muted:#5b6480;
  --white:rgba(255,255,255,0.4);
  --white-strong:rgba(255,255,255,0.85);
  --border:rgba(255,255,255,0.7);
  --shadow:0 12px 32px rgba(180, 80, 0, 0.2);
  --radius:24px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
    linear-gradient(180deg, #FDB515 0%, #F5900A 40%, #E67A00 100%);
  background-attachment: fixed;
  min-height:100vh;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max), calc(100% - 32px)); margin:auto}
.announcement{
  background:#E63946;
  color:#fff;
  font-size:14px;
  font-weight:700;
}
.announcement-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0;
}
.announcement .mini-btn{background:#fff;color:#E63946; padding:8px 14px; border-radius:999px; font-weight:700}
.nav-shell{
  position:sticky; top:0; z-index:40; padding:16px 0; backdrop-filter: blur(10px);
}
.nav{
   background:var(--gold) !important;
  border:none;
  box-shadow:none;
  border-radius:999px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:12px 18px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px;}
.brand img{width:180px; height:auto}
.nav-links{display:flex; flex-wrap:nowrap; gap:18px; justify-content:space-around; font-weight:600; font-size:15px; overflow-x:auto;}
.nav-links a{padding:8px 6px; border-radius:999px; color:#1F2A44}
.nav-links a.active,.nav-links a:hover{background:rgba(255,255,255,.3);}
.cta-btn,.btn{
  border:none; cursor:pointer; display:inline-flex; align-items:center; justify-content:center;
  gap:10px; font-weight:800; font-size:16px; border-radius:25px; padding:16px 24px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover,.cta-btn:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.14)}
.btn-primary{
  background:linear-gradient(90deg, var(--red), #ff6b57);
  color:#fff;
}
.btn-secondary{
  background:#FDB515;
  color:#fff;
}
.btn-whatsapp{
  background:rgba(255,255,255,.75);
  color:#11795b; border:1px solid rgba(0,0,0,.08);
}
.glass{
  background:linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%);
  border:2px solid var(--border);
  box-shadow:inset 0 0 16px rgba(255,255,255,0.6), var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius:var(--radius);
}
.section{padding:64px 0}
.section-tight{padding:36px 0}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:stretch}
.section-title{
  font-family: "Segoe UI", Inter, sans-serif;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.05; margin:0 0 16px; font-weight:900;
}
.section-subtitle{
  font-size:18px; line-height:1.7; color:var(--muted); margin:0 0 24px;
}
.badges{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:18px 0 12px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.58); padding:10px 14px; border-radius:999px; border:1px solid rgba(255,255,255,.65);
  font-weight:700; font-size:14px;
}
.card{padding:24px}
.hero-visual{
  position:relative; min-height:520px;
}
.hero-box{
  position:absolute; right:0; bottom:0; width:min(440px, 72%);
  filter:drop-shadow(0 18px 35px rgba(136,66,0,.22));
}
.plane-path{
  position:absolute; inset:0;
}
.plane-path::before{
  content:""; position:absolute; right:7%; top:8%; width:210px; height:110px;
  border-top:3px dashed rgba(230,57,70,.75); border-radius:999px; transform:rotate(-8deg);
}
.plane{
  position:absolute; right:2%; top:6%; font-size:42px; transform:rotate(12deg);
}
.pin{position:absolute; left:28%; top:28%; font-size:34px}
.metrics, .features, .services-grid, .blog-grid, .coverage-grid, .contact-grid, .stats-grid{
  display:grid; gap:18px;
}
.metrics{grid-template-columns:repeat(4, 1fr)}
.features{grid-template-columns:repeat(4, 1fr)}
.services-grid{grid-template-columns:repeat(4, 1fr)}
.coverage-grid{grid-template-columns:repeat(3, 1fr)}
.blog-grid{grid-template-columns:repeat(3, 1fr)}
.contact-grid{grid-template-columns:1.2fr .8fr}
.stats-grid{grid-template-columns:repeat(3, 1fr)}
.metric-card,.feature-card,.service-card,.blog-card,.faq-item,.coverage-card,.contact-card,.status-card{
  padding:22px;
}
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card .divider {
  margin-top: auto;
}
.metric-number{font-size:34px; font-weight:900; color:var(--red)}
.metric-label{font-weight:700}
.feature-card h3,.service-card h3,.blog-card h3,.coverage-card h3{margin:0 0 8px; font-size:22px}
.feature-card p,.service-card p,.blog-card p,.coverage-card p,.metric-card p{margin:0; color:var(--muted); line-height:1.6}
.icon{
  width:52px; height:52px; display:grid; place-items:center; border-radius:16px; background:rgba(255,255,255,.6); font-size:24px; margin-bottom:12px
}
.form-grid{display:grid; gap:14px}
.input, select, textarea{
  width:100%; border-radius:16px; border:1px solid rgba(0, 116, 237, 0.2); background:#fff; color:var(--text);
  padding:16px 18px; font:inherit; outline:none; font-weight: 600;
}
textarea{min-height:140px; resize:vertical}
.label{font-size:14px; font-weight:800; color:var(--muted); margin-bottom:8px; display:block}
.price-panel{
  background:linear-gradient(180deg, rgba(230,57,70,.92), rgba(230,57,70,.8));
  color:#fff; text-align:center; border-radius:20px; padding:16px;
}
.price-panel strong{display:block; font-size:clamp(34px, 5vw, 52px); line-height:1.1}
.helper{font-size:13px; color:var(--muted)}
.price-panel-new {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 10px;
}
.price-panel-new .price-header {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 12px;
  font-size: 16px;
}
.price-panel-new .price-body {
  background: #fff;
  padding: 16px;
  text-align: center;
}
.price-panel-new strong {
  display: block;
  font-size: clamp(32px, 5vw, 42px);
  color: var(--blue);
  line-height: 1;
}
.price-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0;
  line-height: 1.4;
}
/* Service note with blue tick bullet */
.service-note{display:flex;align-items:center;gap:10px;margin-top:10px;margin-bottom:6px;color:var(--text);font-weight:700}
.service-bullet{width:22px;height:22px;border-radius:50%;background:var(--blue);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;flex-shrink:0}
.service-text{font-weight:700;color:var(--text)}
.btn-pay {
  background: linear-gradient(180deg, #FFD55B 0%, #FDB515 100%);
  color: #1F2A44;
  border: 1px solid #E69D00;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 4px 12px rgba(253, 181, 21, 0.4);
  width: 100%;
  font-size: 18px;
  justify-content: center;
  border-radius: 999px;
  padding: 16px;
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 8px 16px rgba(253, 181, 21, 0.5);
}
.btn-whatsapp-new {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: none;
}
.btn-whatsapp-new strong {
  color: var(--blue);
  font-size: 18px;
  display: block;
}
.btn-whatsapp-new img {
  width: 42px;
  height: 42px;
}
.kv-list{display:grid; gap:10px}
.kv-row{display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid rgba(31,42,68,.08)}
.timeline{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.timeline-item{
  display:flex; gap:14px; align-items:flex-start; padding:16px; border-radius:18px;
  background:rgba(255,255,255,.5); border:1px solid rgba(255,255,255,.5)
}
.timeline-dot{
  width:16px;height:16px;border-radius:50%;margin-top:4px;background:var(--gold); box-shadow:0 0 0 5px rgba(253,181,21,.22); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0
}
.timeline-item.active .timeline-dot{background:var(--red); box-shadow:0 0 0 5px rgba(230,57,70,.18)}
.timeline-item.done .timeline-dot{background:var(--blue); box-shadow:0 0 0 5px rgba(0,116,237,.18)}
.map-box-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 320px;
  overflow: hidden;
}
.map-box-left,
.map-box-right{
  min-height:320px; background-size: cover;
  background-position: center;
  position:relative; overflow:hidden;
}
.map-box-left{
  background-image: url('../images/global%20Coverage%20page%20.jpeg');
}
.map-box-right{
  background-image: url('../images/Tracking%20page%20image.jpeg');
  background-size: contain;
}
.map-box::before{
  content:""; position:absolute; inset:0;
  background:
  radial-gradient(circle at 15% 40%, rgba(230,57,70,.9) 0 7px, transparent 8px),
  radial-gradient(circle at 32% 24%, rgba(253,181,21,.95) 0 7px, transparent 8px),
  radial-gradient(circle at 63% 30%, rgba(253,181,21,.95) 0 7px, transparent 8px),
  radial-gradient(circle at 82% 48%, rgba(0,116,237,.9) 0 7px, transparent 8px),
  linear-gradient(transparent 49%, rgba(255,255,255,.3) 50%, transparent 51%);
  opacity: 0;
}
.map-caption{display:flex; gap:12px; flex-wrap:wrap; font-weight:700}

.route-chip{padding:12px 16px; border-radius:999px; background:rgba(255,255,255,.65); border:1px solid rgba(255,255,255,.72); font-weight:800; display:flex; align-items:center; justify-content:center}
.btn-primary{width: auto;}
.routes{display:flex; gap:12px; flex-wrap:wrap;}
.footer{
  padding:48px 0 24px; margin-top:32px;
}
@keyframes highlightSweep{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.footer-grid{display:grid; grid-template-columns:1.3fr .82fr .82fr 1.26fr; gap:30px}
.footer h4{margin:0 0 14px}
.footer-links h4,
.footer-services h4,
.footer-contact h4{
  background:linear-gradient(90deg, #E63946 0%, #FDB515 50%, #0074ED 100%);
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:highlightSweep 3s ease-in-out infinite;
}
.footer ul{margin:0; padding:0; list-style:none; display:grid; gap:10px; color:var(--muted)}
.footer li.with-icon{display:flex; align-items:flex-start; gap:10px}
.footer-contact li span:last-child{white-space:nowrap}
.footer-item-icon{width:18px; height:18px; flex-shrink:0; color:#0F5FCF; display:inline-flex; align-items:center; justify-content:center}
.footer-item-icon svg{width:18px; height:18px; display:block}
.footer-bottom{border-top:1px solid rgba(31,42,68,.08); margin-top:20px; padding-top:18px; display:grid; grid-template-columns:max-content 1fr max-content max-content; align-items:center; column-gap:32px; row-gap:10px; color:var(--muted)}
.footer-bottom-left,.footer-bottom-right,.footer-middle{min-width:0}
.footer-middle{display:inline-grid; grid-auto-flow:column; column-gap:140px; align-items:center; justify-content:center; text-align:center}
.footer-bottom-left{text-align:left}
.footer-bottom-right{text-align:right; display:flex; justify-content:flex-end}
@media (max-width: 820px){.footer-bottom{grid-template-columns:1fr; gap:10px}.footer-middle{justify-content:flex-start; gap:14px; flex-wrap:wrap}.footer-bottom-left,.footer-bottom-right{text-align:left}.footer-bottom-right{justify-content:flex-start}}
/* Social icons in footer */
.socials{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.social-link{
  display:inline-flex; align-items:center; justify-content:center; width:53px; height:53px; border-radius:50%;
  background:#F4C56A; color:var(--text); transition:all .4s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration:none;
  box-shadow:0 4px 14px rgba(31,42,68,0.15);
}
.social-link svg{width:28px; height:28px}
.social-link:hover{transform:translateY(-4px) scale(1.1)}
.social-link.facebook{color:#1877F2}
.social-link.facebook:hover{background:#1877F2; color:#fff; box-shadow:0 10px 30px rgba(24,119,242,.5)}
.social-link.instagram{color:#D32F2F}
.social-link.instagram:hover{background:#D32F2F; color:#fff; box-shadow:0 10px 30px rgba(228,64,95,.5)}
.social-link.tiktok{color:oklch(66.067% 0.26502 341.381)}
.social-link.tiktok:hover{background:rgba(219,10,202,.89); color:#fff; box-shadow:0 10px 30px rgba(0,0,0,.5)}
.social-link.twitter{color:#1DA1F2}
.social-link.twitter:hover{background:#1DA1F2; color:#fff; box-shadow:0 10px 30px rgba(29,161,242,.5)}
.social-link.linkedin{color:#0A66C2}
.social-link.linkedin:hover{background:#0A66C2; color:#fff; box-shadow:0 10px 30px rgba(10,102,194,.5)}
.social-link.email{color:#17fa03ea}
.social-link.email:hover{background:#17fa03ea; color:#fff; box-shadow:0 10px 30px rgba(23,250,3,.35)}
.social-link:hover svg{filter:drop-shadow(0 0 6px rgba(255,255,255,.6))}
/* Header social group */
.header-socials{display:flex; gap:10px; align-items:center}
.header-socials .social-link{width:auto; height:auto; border-radius:10px; background:rgba(255,255,255,0.95); display:inline-flex; align-items:center; gap:8px; padding:6px 10px}
.header-socials .social-link svg{width:16px; height:16px}
.header-socials .social-label{font-weight:800; font-size:13px; color:var(--text); margin-left:4px}
@media (max-width: 820px){
  .header-socials{display:none}

/* Override: TikTok icon only - increase SVG size to 50px without changing button */
.navbar-socials .social-icon.tiktok svg {
  width: 50px;
  height: 50px;
}

.navbar-socials .social-icon.tiktok i {
  font-size: 50px;
  line-height: 1;
}
}

.page-hero{padding:42px 0 20px}
.page-hero .section-title{font-size:clamp(34px,3.6vw,48px)}
.inline-list{display:flex; flex-wrap:wrap; gap:12px; margin-top:40px}
.small{font-size:14px}
.center{text-align:center}
.stack{display:grid; gap:16px}
.cover{object-fit:cover; object-position:top; width:100%; height:220px; border-radius:20px}
.preview-note{font-size:14px; color:var(--muted)}
.divider{height:1px; background:rgba(31,42,68,.08); margin:20px 0}
.mobile-menu-toggle{display:none}
.radio-group{display:flex; flex-wrap:wrap; gap:12px; align-items:center}
.radio-wrapper{display:flex; align-items:center; gap:8px}
.radio-input{cursor:pointer; width:18px; height:18px; accent-color:var(--red)}
.radio-label{cursor:pointer; font-size:15px; font-weight:600; color:var(--text); margin:0; white-space:nowrap}
.radio-wrapper input[type="radio"]:checked + .radio-label{color:var(--red); font-weight:700}
.price-panel + .helper + .inline-list{margin-top:10px}
@media (max-width: 1060px){
  .metrics,.features,.services-grid,.coverage-grid,.blog-grid,.footer-grid,.contact-grid,.stats-grid{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr}
  .hero-visual{min-height:420px}
}
@media (max-width: 820px){
  .announcement-inner{align-items:flex-start; flex-direction:column}
  .nav{border-radius:28px; align-items:flex-start}
  .nav-wrap{width:100%}
  .mobile-menu-toggle{display:inline-flex}
  .nav-links{display:none; width:100%; padding-top:12px; flex-direction:column; align-items:flex-start}
  .nav-links.open{display:flex}
  .brand img{width:150px}
  .features,.metrics,.services-grid,.coverage-grid,.blog-grid,.footer-grid,.contact-grid,.stats-grid{grid-template-columns:1fr}
  .hero-box{position:relative; width:100%; max-width:360px; margin:0 auto}
  .plane,.pin{display:none}
}
@media (max-width: 600px){
  .section{padding:36px 0}
  .announcement{font-size:12px}
  .announcement-inner .mini-btn{font-size:12px; padding:6px 12px}
  .nav{padding:10px 14px; gap:16px}
  .brand{min-width:180px}
  .brand img{width:120px}
  .input, select, textarea{padding:12px 14px; font-size:14px}
  .radio-label{font-size:13px}
  .footer-grid{grid-template-columns:1fr; gap:18px}
  .footer{padding:32px 0 16px}
  .section-subtitle{font-size:16px}
  .cta-btn,.btn{padding:12px 18px; font-size:14px}
  .inline-list{gap:8px}
  .small{font-size:12px}
}

/* Floating actions (centered circular icons) */
.floating-actions{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:86px;
  display:flex;
  gap:14px;
  z-index:70;
  pointer-events:auto;
}
.floating-action{
  width:56px;
  height:56px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.78));
  color:var(--text);
  box-shadow: 0 12px 28px rgba(31,42,68,0.12), inset 0 6px 14px rgba(255,255,255,0.6);
  border:1px solid rgba(255,255,255,0.6);
  transition:transform .12s ease, box-shadow .12s ease;
  text-decoration:none;
}
.floating-action svg{width:20px; height:20px}
.floating-action:active{transform:translateY(2px)}
.floating-action:hover{transform:translateY(-6px); box-shadow:0 24px 40px rgba(31,42,68,0.18)}

@media (max-width:900px){
  .floating-actions{bottom:72px}
  .floating-action{width:48px;height:48px}
  .floating-action svg{width:18px;height:18px}
}

@media (max-width:600px){
  .floating-actions{display:none}
}
