/* ==========================================================================
   EVERGREEN COURIER & CARGO — Master Stylesheet
   Design system: Navy/Royal Blue corporate palette with a "route line" motif
   running through hero, process and footer sections — a nod to shipping
   lanes and flight paths on a logistics map.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root{
  --navy: #083B6E;
  --navy-deep: #052546;
  --royal: #0E5FA8;
  --royal-light: #1C79CC;
  --white: #FFFFFF;
  --silver: #E5E7EB;
  --silver-deep: #C7CCD4;
  --green: #4CAF50;
  --green-deep: #388E3C;
  --ink: #10202F;
  --muted: #5B6B7A;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(8, 59, 110, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 59, 110, 0.12);
  --shadow-lg: 0 25px 60px rgba(8, 59, 110, 0.18);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 50px rgba(8, 59, 110, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Base ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p{ color: var(--muted); line-height: 1.75; }

a{ text-decoration: none; }

::selection{ background: var(--green); color: var(--white); }

/* Custom scrollbar */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--silver); }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--royal), var(--navy));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{ background: var(--green); }

/* ---------- Utility: eyebrow / section labels ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.eyebrow.on-dark{ color: #8FE39A; }

.section-title{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-sub{
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 0;
}
.section-head{ margin-bottom: 48px; }
.section-head.text-center{ margin-left: auto; margin-right: auto; }
.section-head.text-center .section-sub{ margin-left: auto; margin-right: auto; }

section{ position: relative; }
.section-pad{ padding: 100px 0; }
@media (max-width: 767px){ .section-pad{ padding: 70px 0; } }

.bg-silver{ background: #F5F7FA; }
.bg-navy{ background: var(--navy); }
.bg-navy-deep{ background: var(--navy-deep); }

/* Route-line dotted world texture used on dark sections */
.route-texture{
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Loading Screen ---------- */
#loading-screen{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loading-screen.loaded{ opacity: 0; visibility: hidden; }
.loader-wrap{ text-align: center; }
.loader-logo{
  width: 84px; height: 84px; margin-bottom: 22px;
  animation: pulseLogo 1.6s ease-in-out infinite;
}
@keyframes pulseLogo{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.08); opacity: 0.75; }
}
.loader-track{
  width: 180px; height: 3px; background: rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden; margin: 0 auto;
}
.loader-bar{
  height: 100%; width: 30%;
  background: linear-gradient(90deg, var(--green), var(--royal-light));
  border-radius: 10px;
  animation: loaderMove 1.1s ease-in-out infinite;
}
@keyframes loaderMove{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(400%); }
}
.loader-label{
  font-family: var(--font-head); color: var(--silver);
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: 16px;
}

/* ---------- Navbar ---------- */
.navbar-evergreen{
  padding: 1px 0;
  transition: all 0.35s var(--ease);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,59,110,0.06);
}
.navbar-evergreen.scrolled{
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}
.navbar-brand-evergreen{ display: flex; align-items: center; gap: 12px; }
.navbar-brand-evergreen img{ height: 68px; width: auto; transition: height 0.35s var(--ease); }
.navbar-evergreen.scrolled .navbar-brand-evergreen img{ height: 38px; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.3; }
.brand-text .brand-main{
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 1.05rem; letter-spacing: 0.01em;
}
.brand-text .brand-sub{
  font-family: var(--font-head); font-weight: 500; color: var(--green-deep);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
}

.nav-link-evergreen{
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink) !important;
  position: relative;
  margin: 0 4px;
  padding: 8px 4px !important;
}
.nav-link-evergreen::after{
  content: "";
  position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link-evergreen:hover::after,
.nav-link-evergreen.active::after{ transform: scaleX(1); }
.nav-link-evergreen.active{ color: var(--royal) !important; }

.btn-login-nav{
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--navy); border: 1.5px solid var(--navy); border-radius: 50px;
  padding: 8px 20px; transition: all 0.3s var(--ease);
}
.btn-login-nav:hover{ background: var(--navy); color: var(--white); }

.btn-track-nav{
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--white); background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-radius: 50px; padding: 9px 22px; border: none;
  box-shadow: 0 8px 20px rgba(76,175,80,0.35);
  transition: all 0.3s var(--ease);
}
.btn-track-nav:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(76,175,80,0.45); color: var(--white); }

/* ---------- Buttons ---------- */
.btn-evergreen-primary{
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--white); background: linear-gradient(135deg, var(--royal-light), var(--navy));
  border: none; border-radius: 50px; padding: 14px 34px;
  box-shadow: 0 12px 30px rgba(14,95,168,0.35);
  transition: all 0.35s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-evergreen-primary:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(14,95,168,0.45); color: var(--white); }

.btn-evergreen-outline{
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--white); background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.6); border-radius: 50px; padding: 13px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-evergreen-outline:hover{ background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-evergreen-green{
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--white); background: linear-gradient(135deg, var(--green), var(--green-deep));
  border: none; border-radius: 50px; padding: 14px 34px;
  box-shadow: 0 12px 30px rgba(76,175,80,0.35);
  transition: all 0.35s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-evergreen-green:hover{ transform: translateY(-3px); color: var(--white); box-shadow: 0 18px 40px rgba(76,175,80,0.45); }

/* ---------- Hero ---------- */
.hero{
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(5,37,70,0.88) 0%, rgba(8,59,110,0.82) 55%, rgba(8,59,110,0.92) 100%), url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
  padding-top: 120px;
  overflow: hidden;
}
.hero .route-svg{
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.55; pointer-events: none;
}
.hero-eyebrow{
  color: #8FE39A; font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(76,175,80,0.25); }
.hero h1{
  color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700;
  line-height: 1.08; margin-bottom: 24px;
}
.hero h1 span{ color: #8FE39A; }
.hero p.lead{
  color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 560px; margin-bottom: 40px;
}
.hero-btns{ display: flex; gap: 18px; flex-wrap: wrap; }

.hero-badge-float{
  position: absolute; bottom: 40px; right: 6%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-md);
  padding: 20px 26px; color: var(--white); display: none;
}
@media (min-width: 992px){ .hero-badge-float{ display: block; } }

/* Page hero (inner pages) */
.page-hero{
  position: relative;
  padding: 170px 0 90px;
  background: linear-gradient(180deg, rgba(5,37,70,0.90), rgba(8,59,110,0.88)), center/cover;
  color: var(--white);
  overflow: hidden;
}
.page-hero h1{ color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero .breadcrumb-evergreen{
  font-family: var(--font-head); font-size: 0.85rem; color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.page-hero .breadcrumb-evergreen a{ color: #8FE39A; }
.page-hero p{ color: rgba(255,255,255,0.75); max-width: 560px; }

/* ---------- Stats Counter ---------- */
.stats-strip{
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -90px;
  position: relative; z-index: 5;
  padding: 46px 20px;
}
.stat-item{ text-align: center; padding: 10px 8px; }
.stat-item .stat-icon{
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,95,168,0.1), rgba(76,175,80,0.12));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem; color: var(--royal);
}
.stat-number{
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: var(--navy); line-height: 1;
}
.stat-label{
  font-family: var(--font-head); font-size: 0.82rem; color: var(--muted);
  letter-spacing: 0.03em; margin-top: 8px;
}

/* ---------- About Preview / split sections ---------- */
.split-media{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.split-media:hover img{ transform: scale(1.06); }
.split-media-badge{
  position: absolute; bottom: -1px; left: -1px;
  background: var(--green); color: var(--white);
  padding: 18px 26px; border-radius: 0 var(--radius-md) 0 0;
  font-family: var(--font-head); font-weight: 700;
}
.split-media-badge span{ display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; opacity: 0.9; }
.split-media-badge strong{ font-size: 1.6rem; }

.check-list{ list-style: none; padding: 0; margin: 0; }
.check-list li{
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
  font-family: var(--font-body); color: var(--ink); font-weight: 500;
}
.check-list li i{
  color: var(--green); background: rgba(76,175,80,0.12);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.72rem; margin-top: 2px;
}

/* ---------- Service Cards ---------- */
.service-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 42px 30px; height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8,59,110,0.06);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before{ transform: scaleX(1); }
.service-icon{
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon{ transform: rotate(-8deg) scale(1.08); }
.service-card h4{ font-size: 1.2rem; margin-bottom: 12px; }
.service-card p{ font-size: 0.93rem; margin-bottom: 18px; }
.service-features{ list-style: none; padding: 0; margin: 0 0 20px; }
.service-features li{
  font-size: 0.85rem; color: var(--muted); padding: 5px 0 5px 22px; position: relative;
}
.service-features li::before{
  content: "\f26b"; font-family: "bootstrap-icons"; position: absolute; left: 0; color: var(--green); font-size: 0.8rem;
}
.service-link{
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--royal); display: inline-flex; align-items: center; gap: 6px;
}
.service-link i{ transition: transform 0.3s var(--ease); }
.service-card:hover .service-link i{ transform: translateX(5px); }

/* ---------- Why Choose Us ---------- */
.feature-tile{
  text-align: center; padding: 36px 20px; height: 100%;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease);
}
.feature-tile:hover{ background: rgba(255,255,255,0.06); }
.feature-tile .feature-icon{
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: #8FE39A;
  transition: all 0.4s var(--ease);
}
.feature-tile:hover .feature-icon{ background: var(--green); color: var(--white); transform: scale(1.1); }
.feature-tile h5{ color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.feature-tile p{ color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

/* ---------- Process Timeline (signature element: route line) ---------- */
.route-timeline{ position: relative; padding-top: 20px; }
.route-line-svg{ position: absolute; top: 46px; left: 0; width: 100%; height: 4px; }
.route-line-svg path{
  stroke: var(--silver-deep); stroke-width: 2; fill: none;
  stroke-dasharray: 8 8;
}
.route-line-svg .route-progress{
  stroke: var(--green); stroke-width: 3;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.route-line-svg.in-view .route-progress{ stroke-dashoffset: 0; }

.route-node{ text-align: center; position: relative; z-index: 2; }
.route-node .node-dot{
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--silver);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1.7rem; color: var(--royal);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease); position: relative;
}
.route-node .node-dot .node-index{
  position: absolute; top: -8px; right: -8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.route-node:hover .node-dot{ border-color: var(--green); transform: translateY(-6px); }
.route-node h5{ font-size: 1rem; margin-bottom: 8px; }
.route-node p{ font-size: 0.85rem; }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 32px; height: 100%;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(8,59,110,0.06);
  position: relative;
}
.testimonial-quote-icon{ color: rgba(14,95,168,0.15); font-size: 2.4rem; line-height: 1; margin-bottom: 10px; }
.testimonial-card p.quote-text{ color: var(--ink); font-size: 0.98rem; font-style: italic; margin-bottom: 24px; }
.testimonial-author{ display: flex; align-items: center; gap: 14px; }
.testimonial-avatar{
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white); font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-name{ font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.testimonial-role{ font-size: 0.78rem; color: var(--muted); }
.testimonial-stars{ color: var(--green); font-size: 0.78rem; margin-top: 2px; }

/* ---------- Global Presence ---------- */
.presence-map-wrap{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.presence-map-wrap img{ width: 100%; display: block; filter: saturate(0.3) contrast(1.05); }
.presence-country{
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px dashed var(--silver-deep);
}
.presence-country:last-child{ border-bottom: none; }
.presence-country .country-name{ font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.presence-country .country-count{ font-size: 0.82rem; color: var(--muted); }

/* ---------- CTA Banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--navy) 0%, var(--royal) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.cta-banner .route-texture{ opacity: 0.35; }
.cta-banner h2{ color: var(--white); margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-banner p{ color: rgba(255,255,255,0.78); margin-bottom: 0; }
@media (max-width: 767px){ .cta-banner{ padding: 46px 26px; text-align: center; } }

/* ---------- Footer ---------- */
.footer-evergreen{
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img{ height: 46px; }
.footer-brand .brand-main{ color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.footer-brand .brand-sub{ color: #8FE39A; font-family: var(--font-head); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-evergreen p{ color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.footer-heading{
  font-family: var(--font-head); color: var(--white); font-weight: 600; font-size: 1rem;
  margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer-heading::after{ content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--green); }
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: 12px; }
.footer-links a{ color: rgba(255,255,255,0.6); font-size: 0.92rem; transition: all 0.25s var(--ease); }
.footer-links a:hover{ color: var(--green); padding-left: 6px; }
.footer-contact-item{ display: flex; gap: 14px; margin-bottom: 18px; }
.footer-contact-item i{ color: var(--green); font-size: 1rem; margin-top: 3px; }
.footer-contact-item span{ font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.social-icons{ display: flex; gap: 12px; margin-top: 22px; }
.social-icons a{
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all 0.3s var(--ease);
}
.social-icons a:hover{ background: var(--green); border-color: var(--green); transform: translateY(-4px); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px; padding: 22px 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a{ color: rgba(255,255,255,0.7); }

/* ---------- Back to Top ---------- */
#back-to-top{
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(76,175,80,0.4);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.35s var(--ease); border: none;
}
#back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover{ transform: translateY(-4px); }

/* ---------- About page specifics ---------- */
.timeline-vertical{ position: relative; padding-left: 46px; }
.timeline-vertical::before{
  content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--silver-deep) 0 8px, transparent 8px 16px);
}
.timeline-vertical-item{ position: relative; padding-bottom: 44px; }
.timeline-vertical-item:last-child{ padding-bottom: 0; }
.timeline-vertical-item::before{
  content: ""; position: absolute; left: -46px; top: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green);
}
.timeline-vertical-item::after{
  content: ""; position: absolute; left: -35px; top: 11px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
}
.timeline-year{ font-family: var(--font-head); font-weight: 700; color: var(--royal); font-size: 0.85rem; letter-spacing: 0.05em; }
.timeline-vertical-item h5{ margin: 6px 0 8px; }

.value-card{
  text-align: center; padding: 34px 24px; border-radius: var(--radius-md);
  border: 1px solid rgba(8,59,110,0.08); height: 100%;
  transition: all 0.35s var(--ease);
}
.value-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.value-card i{ font-size: 2rem; color: var(--royal); margin-bottom: 16px; display: inline-block; }

.team-card{ border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); transition: all 0.35s var(--ease); }
.team-card:hover{ box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.team-photo{ height: 280px; overflow: hidden; }
.team-photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.team-card:hover .team-photo img{ transform: scale(1.08); }
.team-info{ padding: 22px; text-align: center; }
.team-info h5{ margin-bottom: 4px; }
.team-role{ color: var(--green-deep); font-size: 0.85rem; font-family: var(--font-head); font-weight: 600; }

.ceo-message-card{
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 46px; position: relative;
}
.ceo-message-card .quote-mark{ font-size: 4rem; color: rgba(14,95,168,0.12); position: absolute; top: 20px; left: 30px; font-family: Georgia, serif; }

.cert-badge{
  display: flex; align-items: center; gap: 16px; padding: 20px;
  border-radius: var(--radius-sm); border: 1px solid rgba(8,59,110,0.08);
  transition: all 0.3s var(--ease);
}
.cert-badge:hover{ box-shadow: var(--shadow-sm); }
.cert-badge i{ font-size: 1.8rem; color: var(--green); }

/* ---------- Services page specifics ---------- */
.coverage-tile{
  background: var(--white); border-radius: var(--radius-sm);
  padding: 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.coverage-tile:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.coverage-tile .num{ font-family: var(--font-head); font-weight: 700; color: var(--royal); font-size: 1.7rem; }
.coverage-tile .lbl{ font-size: 0.8rem; color: var(--muted); }

.accordion-evergreen .accordion-item{
  border: none; border-radius: var(--radius-sm) !important; margin-bottom: 14px;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.accordion-evergreen .accordion-button{
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
  padding: 20px 24px; background: var(--white);
}
.accordion-evergreen .accordion-button:not(.collapsed){
  color: var(--white); background: linear-gradient(120deg, var(--navy), var(--royal));
  box-shadow: none;
}
.accordion-evergreen .accordion-button:focus{ box-shadow: none; }
.accordion-evergreen .accordion-button::after{ filter: none; }
.accordion-evergreen .accordion-button:not(.collapsed)::after{ filter: brightness(0) invert(1); }
.accordion-evergreen .accordion-body{ padding: 22px 24px; font-size: 0.93rem; color: var(--muted); }

/* ---------- Contact page specifics ---------- */
.office-card{
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm); height: 100%;
  border: 1px solid rgba(8,59,110,0.06); transition: all 0.3s var(--ease);
}
.office-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-6px); }
.office-card .office-tag{
  display: inline-block; font-family: var(--font-head); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-deep); background: rgba(76,175,80,0.12);
  padding: 5px 12px; border-radius: 50px; margin-bottom: 16px;
}
.office-card h5{ margin-bottom: 14px; }
.office-detail{ display: flex; gap: 12px; margin-bottom: 10px; font-size: 0.9rem; color: var(--muted); }
.office-detail i{ color: var(--royal); margin-top: 3px; }

.map-placeholder{
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  min-height: 380px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EAF1F8, #DCE7F2);
  box-shadow: var(--shadow-md);
}
.map-placeholder .map-pin{
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; margin-bottom: 16px;
  box-shadow: 0 15px 30px rgba(8,59,110,0.3);
  animation: pinBounce 2.2s ease-in-out infinite;
}
@keyframes pinBounce{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
.map-placeholder-text{ text-align: center; }
.map-placeholder-text p{ font-size: 0.85rem; margin-bottom: 0; }

.hours-table{ width: 100%; }
.hours-table tr{ border-bottom: 1px dashed var(--silver-deep); }
.hours-table tr:last-child{ border-bottom: none; }
.hours-table td{ padding: 14px 0; font-family: var(--font-body); }
.hours-table td:first-child{ font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.hours-table td:last-child{ text-align: right; color: var(--muted); }
.hours-table tr.today td{ color: var(--green-deep); }
.hours-table tr.today td:first-child::before{ content: "\f287"; font-family: "bootstrap-icons"; margin-right: 8px; }

/* ---------- Misc ---------- */
.divider-route{
  height: 30px; width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--silver-deep) 0 10px, transparent 10px 20px);
  background-position: center; background-repeat: no-repeat; background-size: 100% 2px;
}

.badge-soft{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,95,168,0.08); color: var(--royal);
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  padding: 8px 16px; border-radius: 50px;
}

@media (max-width: 991px){
  .navbar-evergreen .navbar-nav{ padding-top: 16px; }
  .navbar-evergreen .btn-track-nav, .navbar-evergreen .btn-login-nav{ width: 100%; justify-content: center; margin-top: 10px; }
}