:root{
  --blue:#005C95;
  --blue-dark:#00456f;
  --blue-light:#e8f2f8;
  --red:#dc3835;
  --red-dark:#b52a28;
  --dark:#12171e;
  --dark-2:#1b222b;
  --dark-3:#242d38;
  --ink:#1c2530;
  --muted:#66707c;
  --light:#f5f8fa;
  --border:#e7edf1;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Inter',sans-serif; color:var(--ink); background:#fff;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6,.font-poppins{ font-family:'Poppins',sans-serif; }
a{ text-decoration:none; }
section{ scroll-margin-top:110px; }
.text-blue{ color:var(--blue) !important; }
.text-red{ color:var(--red) !important; }
.bg-blue{ background:var(--blue) !important; }
.bg-red{ background:var(--red) !important; }
.bg-dark-1{ background:var(--dark) !important; }
.bg-dark-2{ background:var(--dark-2) !important; }
.bg-light-1{ background:var(--light) !important; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--red); font-weight:700; letter-spacing:2px; font-size:.8rem;
  text-transform:uppercase; margin-bottom:.6rem;
}
.eyebrow::before{ content:""; width:26px; height:3px; background:var(--red); border-radius:2px; }

/* ============ BUTTONS ============ */
.btn{ font-weight:600; border-radius:8px; position:relative; overflow:hidden; transition:.25s ease; }
.btn-red{
  background:linear-gradient(135deg,var(--red),var(--red-dark)); color:#fff; border:none;
  box-shadow:0 8px 20px rgba(220,56,53,.28);
}
.btn-red:hover{ color:#fff; transform:translateY(-3px); box-shadow:0 12px 26px rgba(220,56,53,.4); }
.btn-outline-blue{ border:2px solid var(--blue); color:var(--blue); background:transparent; }
.btn-outline-blue:hover{ background:var(--blue); color:#fff; transform:translateY(-3px); }
.btn-outline-light-custom{ border:2px solid rgba(255,255,255,.6); color:#fff; background:transparent; }
.btn-outline-light-custom:hover{ background:#fff; color:var(--dark); transform:translateY(-3px); }
.btn-blue{ background:var(--blue); color:#fff; border:none; }
.btn-blue:hover{ background:var(--blue-dark); color:#fff; transform:translateY(-3px); }

.btn-shine::after{
  content:""; position:absolute; top:0; left:-75%; width:50%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg);
}
.btn-shine:hover::after{ animation:shine 0.9s ease; }
@keyframes shine{ from{ left:-75%; } to{ left:130%; } }

/* ============ TOPBAR ============ */
.topbar{ background:var(--dark); font-size:.8rem; }
.topbar a, .topbar span{ color:#c3cad3; }
.topbar a:hover{ color:#fff; }
.topbar .divider{ width:1px; height:14px; background:rgba(255,255,255,.15); display:inline-block; }
.topbar .social-icon{
  width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,.08);
  display:inline-flex; align-items:center; justify-content:center; color:#fff; font-size:.75rem;
  transition:.2s;
}
.topbar .social-icon:hover{ background:var(--blue); transform:translateY(-2px); }

/* ============ NAVBAR ============ */
.navbar{ transition:.3s ease; padding:.9rem 0; }
.navbar.scrolled{ padding:.5rem 0; box-shadow:0 6px 24px rgba(0,0,0,.08); }
.navbar-brand img{ height:75px; transition:.3s; }
.navbar.scrolled .navbar-brand img{ height:38px; }
.brand-text{ line-height:1.05; }
.brand-text .dgs{ font-size:1.5rem; font-weight:800; color:var(--dark); }
.brand-text .dgs span{ color:var(--red); }
.brand-text small{ font-size:.75rem; letter-spacing:.5px; color:var(--muted); font-weight:600; text-transform:uppercase; }
.navbar .nav-link{ font-weight:600; color:var(--ink); margin:0 4px; position:relative; }
.navbar .nav-link::after{
  content:""; position:absolute; left:0; bottom:2px; width:0; height:2px; background:var(--red);
  transition:.25s;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after{ width:100%; }
.navbar .nav-link:hover, .navbar .nav-link.active{ color:var(--blue); }
.dropdown-menu{ border:none; box-shadow:0 1rem 2.5rem rgba(0,0,0,.12); border-radius:12px; padding:.6rem; }
.dropdown-item{ border-radius:8px; padding:.55rem .9rem; font-weight:500; }
.dropdown-item:hover{ background:var(--blue-light); color:var(--blue); }

/* ============ HERO ============ */
.hero{ position:relative; overflow:hidden; min-height:640px; display:flex; align-items:center; }
.hero-bg{
  position:absolute; inset:0; background-image:url('../img/hero-ship.jpeg');
  background-size:cover; background-position:center; z-index:0;
  animation:kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns{ from{ transform:scale(1); } to{ transform:scale(1.5); } }
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg, rgba(10,14,19,.94) 0%, rgba(10,14,19,.82) 32%, rgba(10,14,19,.45) 58%, rgba(10,14,19,.15) 78%, rgba(10,14,19,.05) 100%);
}
.hero .container{ position:relative; z-index:2; }
.hero-eyebrow{ color:var(--red); font-weight:700; letter-spacing:2px; font-size:.85rem; text-transform:uppercase; }
.hero h1{ color:#fff; font-weight:800; font-size:3.1rem; line-height:1.15; }
.hero h1 .accent{ color:#5fb8ec; position:relative; }
.hero p.lead-text{ color:#cbd3db; font-size:1.1rem; max-width:520px; }

.fade-up-seq > *{ opacity:0; transform:translateY(24px); animation:fadeUp .8s ease forwards; }
.fade-up-seq > *:nth-child(1){ animation-delay:.1s; }
.fade-up-seq > *:nth-child(2){ animation-delay:.28s; }
.fade-up-seq > *:nth-child(3){ animation-delay:.46s; }
.fade-up-seq > *:nth-child(4){ animation-delay:.64s; }
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

/* Floating quick actions */
.quick-actions{
  position:absolute; right:26px; top:50%; transform:translateY(-50%); z-index:3;
  display:flex; flex-direction:column; gap:10px;
}
.quick-actions a{
  width:78px; background:rgba(18,23,30,.55); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.15); border-radius:14px; color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:12px 6px; font-size:.68rem; font-weight:600; text-align:center; gap:6px;
  opacity:0; transform:translateX(40px); animation:slideIn .6s ease forwards;
  transition:.25s;
}
.quick-actions a:nth-child(1){ animation-delay:.7s; }
.quick-actions a:nth-child(2){ animation-delay:.85s; }
.quick-actions a:nth-child(3){ animation-delay:1s; }
.quick-actions a:nth-child(4){ animation-delay:1.15s; }
@keyframes slideIn{ to{ opacity:1; transform:translateX(0); } }
.quick-actions a i{ font-size:1.3rem; }
.quick-actions a:hover{ background:var(--red); border-color:var(--red); transform:translateX(-6px); }
.quick-actions a.whatsapp:hover{ background:#25D366; border-color:#25D366; }

/* ============ STATS STRIP (overlaps hero bottom) ============ */
.stats-strip{
  position:relative; z-index:4; background:#fff; border-radius:18px;
  box-shadow:0 20px 50px rgba(10,20,30,.14);
  margin-top:-58px;
}
.stats-strip .stat-item{ padding:1.4rem 1rem; text-align:center; border-right:1px solid var(--border); }
.stats-strip .stat-item:last-child{ border-right:none; }
.stats-strip .stat-item i{ font-size:1.6rem; color:var(--blue); margin-bottom:.4rem; display:block; }
.stats-strip .stat-item .num{ font-weight:800; font-size:1.25rem; color:var(--dark); font-family:'Poppins',sans-serif; }
.stats-strip .stat-item .lbl{ font-size:.76rem; color:var(--muted); font-weight:600; }

/* ============ QUOTE BAR ============ */
.quote-bar{ background:var(--dark); border-radius:18px; padding:2rem; margin-top:1.6rem; }
.quote-bar label.form-label{ color:#aab3bd; font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.quote-bar .form-control, .quote-bar .form-select{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#fff; padding:.65rem .9rem; border-radius:10px;
}
.quote-bar .form-control::placeholder{ color:#8892a0; }
.quote-bar .form-select option{ color:#000; }

/* ============ SERVICES ============ */
.service-card{
  border:1px solid var(--border); border-radius:18px; height:100%; padding:2rem 1.6rem;
  transition:.3s ease; position:relative; overflow:hidden; background:#fff;
}
.service-card::before{
  content:""; position:absolute; top:0; left:0; width:100%; height:4px;
  background:linear-gradient(90deg,var(--blue),var(--red)); transform:scaleX(0); transform-origin:left;
  transition:.35s ease;
}
.service-card:hover::before{ transform:scaleX(1); }
.service-card:hover{ transform:translateY(-8px); box-shadow:0 22px 45px rgba(10,30,50,.12); border-color:transparent; }
.service-icon{
  width:64px; height:64px; border-radius:16px; background:var(--blue-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:1.7rem; margin-bottom:1.1rem;
  transition:.3s;
}
.service-card:hover .service-icon{ background:var(--blue); color:#fff; transform:rotate(-8deg) scale(1.08); }
.service-card .learn-more{ color:var(--red); font-weight:700; font-size:.9rem; }
.service-card .learn-more i{ transition:.25s; }
.service-card:hover .learn-more i{ transform:translateX(5px); }

/* ============ WHY CHOOSE ============ */
.why-section{ background:var(--dark); color:#fff; position:relative; overflow:hidden; }
.why-section::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 90% 10%, rgba(0,92,149,.25), transparent 45%),
             radial-gradient(circle at 5% 90%, rgba(220,56,53,.12), transparent 45%);
}
.why-section .container{ position:relative; z-index:1; }
.check-list li{
  display:flex; align-items:center; gap:14px; margin-bottom:1.1rem; font-weight:600; color:#dfe4ea;
}
.check-list .tick{
  width:28px; height:28px; border-radius:50%; background:var(--red); color:#fff; flex:none;
  display:flex; align-items:center; justify-content:center; font-size:.8rem;
  box-shadow:0 4px 12px rgba(220,56,53,.4);
}
.feature-mini{
  background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.09); border-radius:14px;
  padding:1.2rem; display:flex; gap:14px; align-items:flex-start; transition:.25s;
  height:100%;
}
.feature-mini:hover{ background:rgba(255,255,255,.08); transform:translateY(-4px); border-color:var(--blue); }
.feature-mini .mini-icon{
  width:42px; height:42px; border-radius:10px; background:rgba(0,92,149,.25); color:#5fb8ec;
  display:flex; align-items:center; justify-content:center; flex:none; font-size:1.15rem;
}
.feature-mini h6{ color:#fff; font-weight:700; margin-bottom:.25rem; font-size:.95rem; }
.feature-mini p{ color:#9aa4b0; font-size:.82rem; margin:0; }

/* Global network panel */
.network-panel{
  background:var(--dark-2); border:1px solid rgba(255,255,255,.08); border-radius:20px;
  padding:1.6rem; height:100%;
}
.map-wrap{
  position:relative; height:230px; border-radius:14px; overflow:hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,92,149,.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(220,56,53,.2), transparent 40%),
    var(--dark);
  margin-bottom:1.2rem;
}
.map-wrap .dotgrid{
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.4px);
  background-size:16px 16px;
  mask-image:radial-gradient(ellipse at center, black 55%, transparent 85%);
}
.map-wrap svg{ position:absolute; inset:0; width:100%; height:100%; }
.map-wrap .route{ fill:none; stroke:#5fb8ec; stroke-width:1.4; stroke-dasharray:6 6; opacity:.7; animation:dash 3s linear infinite; }
@keyframes dash{ to{ stroke-dashoffset:-120; } }
.map-wrap .node{ transform-box:fill-box; transform-origin:center; }
.map-wrap .node circle.core{ fill:#ff6b68; }
.map-wrap .node circle.core.b{ fill:#5fb8ec; }
.map-wrap .node circle.pulse{ fill:none; stroke:#ff6b68; stroke-width:2; animation:pulse 2.2s ease-out infinite; }
.map-wrap .node circle.pulse.b{ stroke:#5fb8ec; }
@keyframes pulse{ 0%{ r:4; opacity:1; } 100%{ r:16; opacity:0; } }
.map-wrap .city-label{ fill:#c9d3dc; font-size:8px; font-family:'Inter',sans-serif; }

.net-stat{ text-align:center; }
.net-stat .num{ font-size:1.6rem; font-weight:800; color:#fff; font-family:'Poppins',sans-serif; }
.net-stat .lbl{ font-size:.75rem; color:#9aa4b0; font-weight:600; }

/* ============ INFO COLUMNS ============ */
.info-card{ background:#fff; border:1px solid var(--border); border-radius:16px; padding:1.8rem; height:100%; }
.info-card .icard-title{
  color:var(--red); font-weight:700; letter-spacing:1px; font-size: 1.25rem; text-transform:uppercase;
  margin-bottom:1.1rem; display:flex; align-items:center; gap:8px;
}
.check-simple li{ display:flex; align-items:center; gap:10px; margin-bottom:.7rem; font-size:.92rem; font-weight:500; color:var(--ink); }
.check-simple i{ color:var(--red); }
.industry-grid{ display:grid; grid-template-columns:1fr 1fr; gap:.9rem; }
.industry-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:.5rem; padding:.9rem .4rem; border-radius:12px; transition:.25s; }
.industry-item:hover{ background:var(--blue-light); transform:translateY(-3px); }
.industry-item i{ font-size:1.5rem; color:var(--blue); }
.industry-item span{ font-size:.78rem; font-weight:600; color:var(--ink); }

/* ============ IMPACT NUMBERS ============ */
.impact-strip{ background:var(--dark-2); color:#fff; }
.impact-item{ text-align:center; }
.impact-item i{ font-size:1.8rem; color:var(--blue); margin-bottom:.5rem; display:block; }
.impact-item .num{ font-size:2.1rem; font-weight:800; font-family:'Poppins',sans-serif; }
.impact-item .lbl{ font-size:.82rem; color:#9aa4b0; font-weight:600; }

/* ============ CTA BAR ============ */
.cta-bar{ background:linear-gradient(120deg, var(--red), var(--red-dark)); color:#fff; position:relative; overflow:hidden; }
.cta-bar::after{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.4px);
  background-size:18px 18px; opacity:.5;
}
.cta-bar .container{ position:relative; z-index:1; }

/* ============ FOOTER ============ */
footer{ background:var(--dark); color:#9aa4b0; }
footer h6{ color:#fff; font-weight:700; text-transform:uppercase; font-size:.82rem; letter-spacing:.6px; margin-bottom:1.2rem; }
footer a{ color:#9aa4b0; transition:.2s; }
footer a:hover{ color:var(--blue); padding-left:3px; }
footer .list-unstyled li{ margin-bottom:.65rem; }
footer .foot-social{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.06); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; margin-right:.5rem; transition:.25s;
}
footer .foot-social:hover{ background:var(--red); color:#fff; transform:translateY(-3px); }
footer .brand-text .dgs, footer .brand-text small{ color:#fff; }
footer .brand-text small{ color:#8892a0; }

/* WhatsApp floating button */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.7rem;
  box-shadow:0 10px 30px rgba(37,211,102,.5);
}
.wa-float::before{
  content:""; position:absolute; inset:0; border-radius:50%; background:#25D366;
  animation:waping 2s ease-out infinite;
}
@keyframes waping{ 0%{ transform:scale(1); opacity:.6; } 100%{ transform:scale(1.9); opacity:0; } }

/* Scroll to top */
.scroll-top{
  position:fixed; bottom:96px; right:30px; z-index:999; width:44px; height:44px; border-radius:50%;
  background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:.3s;
  box-shadow:0 8px 20px rgba(0,92,149,.4);
}
.scroll-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover{ background:var(--red); }

@media (max-width:991px){
  .hero h1{ font-size:2.2rem; }
  .quick-actions{ display:none; }
  .stats-strip .stat-item{ border-right:none; border-bottom:1px solid var(--border); }
}

/* ============================================================
   INNER PAGE COMPONENTS (shared across all inside pages)
   ============================================================ */

/* Page banner (mini hero with breadcrumb) */
.page-banner{
  position:relative; overflow:hidden; padding:7.5rem 0 3.2rem; margin-top:-1px;
  background-image:url('../img/hero-ship.jpeg'); background-size:cover; background-position:center;
}
.page-banner .banner-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(10,14,19,.95) 0%, rgba(10,14,19,.88) 40%, rgba(0,92,149,.55) 100%);
}
.page-banner .container{ position:relative; z-index:2; }
.page-banner .banner-icon{
  width:64px; height:64px; border-radius:16px; background:rgba(220,56,53,.18); border:1px solid rgba(220,56,53,.4);
  color:#ff8683; display:flex; align-items:center; justify-content:center; font-size:1.7rem; margin-bottom:1rem;
}
.page-banner h1{ color:#fff; font-weight:800; font-size:2.6rem; margin-bottom:.6rem; }
.page-banner p.lead{ color:#c9d3dc; font-size:1.05rem; max-width:640px; margin-bottom:0; }
.breadcrumb-banner{ background:transparent; margin:0 0 1rem; padding:0; }
.breadcrumb-banner a{ color:#9fb3c4; font-weight:600; }
.breadcrumb-banner a:hover{ color:#fff; }
.breadcrumb-banner .active{ color:var(--red); font-weight:700; }
.breadcrumb-banner .divider{ color:#5c6b78; margin:0 .5rem; }

/* Content section spacing */
.inner-section{ padding:4.5rem 0; }
.inner-section.bordered-top{ border-top:1px solid var(--border); }

/* Service detail layout */
.service-detail-icon{
  width:78px; height:78px; border-radius:18px; background:var(--blue-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:2.1rem; margin-bottom:1.4rem;
}
.feature-pill-list{ list-style:none; padding:0; margin:1.5rem 0; }
.feature-pill-list li{
  display:flex; align-items:flex-start; gap:12px; padding:.7rem 0; border-bottom:1px dashed var(--border);
  font-weight:500;
}
.feature-pill-list li:last-child{ border-bottom:none; }
.feature-pill-list i{ color:var(--red); font-size:1.15rem; margin-top:.15rem; }

.sidebar-card{ background:var(--light); border:1px solid var(--border); border-radius:16px; padding:1.6rem; }
.sidebar-card h6{ font-weight:700; text-transform:uppercase; font-size:.78rem; letter-spacing:.6px; color:var(--muted); margin-bottom:1rem; }
.sidebar-links{ list-style:none; padding:0; margin:0; }
.sidebar-links li{ border-bottom:1px solid var(--border); }
.sidebar-links li:last-child{ border-bottom:none; }
.sidebar-links a{
  display:flex; align-items:center; justify-content:space-between; padding:.75rem .2rem; color:var(--ink); font-weight:600; font-size:.92rem;
  transition:.2s;
}
.sidebar-links a:hover{ color:var(--blue); padding-left:6px; }
.sidebar-links a.active{ color:var(--red); }
.sidebar-links a i{ font-size:.8rem; opacity:.6; }

.sidebar-cta{
  background:linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius:16px; padding:1.8rem; color:#fff;
  text-align:center; margin-top:1.5rem;
}
.sidebar-cta i{ margin-bottom:.6rem;  }
.sidebar-cta .headicon{ font-size:2rem;}
.sidebar-cta h6{ color:#fff; font-weight:700; margin-bottom:.5rem; }
.sidebar-cta p{ color:#cfe3f0; font-size:.85rem; margin-bottom:1.1rem; }

/* Timeline (About Us) */
.timeline{ position:relative; padding-left:2.4rem; }
.timeline::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:var(--border); }
.timeline-item{ position:relative; padding-bottom:2rem; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-2.4rem; top:2px; width:20px; height:20px; border-radius:50%;
  background:#fff; border:3px solid var(--red);
}
.timeline-item h6{ font-weight:700; color:var(--blue); margin-bottom:.3rem; }

/* Value cards */
.value-card{ text-align:center; padding:2rem 1.4rem; border:1px solid var(--border); border-radius:16px; height:100%; transition:.25s; }
.value-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(10,30,50,.1); border-color:transparent; }
.value-card .vi{
  width:60px; height:60px; margin:0 auto 1rem; border-radius:50%; background:var(--blue-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}

/* Tables (container specs / conversion / incoterms) */
.table-dgs{ width:100%; border-collapse:separate; border-spacing:0; background:#fff; border-radius:14px; overflow:hidden; border:1px solid var(--border); }
.table-dgs thead th{
  background:var(--dark); color:#fff; font-weight:700; text-transform:uppercase; font-size:.72rem; letter-spacing:.5px;
  padding:.9rem 1rem; text-align:left; white-space:nowrap;
}
.table-dgs tbody td{ padding:.85rem 1rem; border-top:1px solid var(--border); font-size:.9rem; color:var(--ink); }
.table-dgs tbody tr:hover{ background:var(--blue-light); }
.table-responsive-dgs{ overflow-x:auto; border-radius:14px; }
.incoterm-code{
  display:inline-flex; align-items:center; justify-content:center; min-width:52px; padding:.3rem .5rem;
  background:var(--red); color:#fff; border-radius:8px; font-weight:800; font-size:.85rem;
}

/* Contact page */
.contact-info-card{
  display:flex; gap:16px; align-items:flex-start; padding:1.5rem; border:1px solid var(--border); border-radius:16px; height:100%;
  transition:.25s;
}
.contact-info-card:hover{ border-color:var(--blue); transform:translateY(-4px); }
.contact-info-card .ci-icon{
  width:50px; height:50px; border-radius:12px; background:var(--blue-light); color:var(--blue); flex:none;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.dept-table td{ padding:.7rem .5rem; border-top:1px solid var(--border); font-size:.9rem; }
.dept-table td:first-child{ font-weight:700; color:var(--blue); }
.map-embed{
  height:340px; border-radius:16px; overflow:hidden; position:relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,92,149,.25), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(220,56,53,.18), transparent 45%),
    var(--dark);
}
.map-embed .pin{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-100%); text-align:center; color:#fff;
}
.map-embed .pin i{ font-size:2.6rem; color:var(--red); filter:drop-shadow(0 6px 12px rgba(220,56,53,.5)); }

/* Forms (contact / login / registration) */
.form-card{ background:#fff; border:1px solid var(--border); border-radius:18px; padding:2.2rem; box-shadow:0 20px 50px rgba(10,20,30,.06); }
.form-card .form-label{ font-weight:600; font-size:.85rem; color:var(--ink); }
.form-card .form-control, .form-card .form-select{
  border:1px solid var(--border); border-radius:10px; padding:.65rem .9rem; background:var(--light);
}
.form-card .form-control:focus, .form-card .form-select:focus{ border-color:var(--blue); box-shadow:0 0 0 .2rem rgba(0,92,149,.12); background:#fff; }

/* Location cards */
.location-card{ border:1px solid var(--border); border-radius:16px; padding:1.8rem; height:100%; transition:.25s; }
.location-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(10,30,50,.1); border-color:var(--blue); }
.location-card .badge-hq{ background:var(--red); color:#fff; font-size:.68rem; font-weight:700; padding:.3rem .6rem; border-radius:6px; text-transform:uppercase; letter-spacing:.5px; }

/* Simple utility page hero variant for utility tools pages */
.tool-tabs .nav-link{ font-weight:700; color:var(--ink); border-radius:10px; }
.tool-tabs .nav-link.active{ background:var(--blue) !important; color:#fff !important; }
