:root {
  --primary:      #F7941D;   /* DCC orange */
  --primary-dark: #d97a10;   /* darker orange */
  --secondary:    #1565C0;   /* DCC royal blue */
  --accent:       #00AEEF;   /* DCC cyan-blue */
  --light-bg:     #f8f9fc;
  --text-muted-custom: #6b7a8d;
}

* { box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; margin: 0; padding: 0; }

/* ─── TOP STRIP ─────────────────────────────────────────────── */
.top-strip {
  background: var(--secondary);
  color: #cdd8e8;
  font-size: .78rem;
  padding: 7px 0;
}
.top-strip a { color: #cdd8e8; text-decoration: none; transition: color .2s; }
.top-strip a:hover { color: var(--primary); }
.top-strip .divider { margin: 0 10px; opacity: .4; }
.top-strip .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: .8rem; transition: background .25s, color .25s;
}
.top-strip .social-icons a:hover { background: var(--primary); color: #fff; }

/* Tracking form in top strip */
.top-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.top-track-icon {
  position: absolute;
  left: 9px;
  color: var(--primary);
  font-size: .78rem;
  pointer-events: none;
}
.top-track-input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-size: .76rem;
  padding: 4px 10px 4px 26px;
  width: 210px;
  outline: none;
  transition: background .2s, border-color .2s;
}
.top-track-input::placeholder { color: rgba(255,255,255,.5); }
.top-track-input:focus {
  background: rgba(255,255,255,.16);
  border-color: var(--primary);
}
.top-track-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 14px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.top-track-btn:hover { background: var(--primary-dark); }

/* ─── MAIN NAV ──────────────────────────────────────────────── */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 1030;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-logo {
  height: 90px;
  width: auto;
  display: block;
}

.main-nav .nav-link {
  font-weight: 600; font-size: .88rem; color: var(--secondary) !important;
  padding: 8px 14px !important; border-radius: 6px;
  transition: color .2s, background .2s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--primary) !important; background: #fff5ea; }

.main-nav .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 210px;
  animation: dropIn .2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Open dropdowns on hover (desktop only) */
@media (min-width: 992px) {
  .main-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: dropIn .2s ease;
  }
}
.main-nav .dropdown-item {
  font-size: .85rem; font-weight: 500;
  border-radius: 6px; padding: 8px 14px;
  color: var(--secondary);
  transition: background .15s, color .15s;
}
.main-nav .dropdown-item i { color: var(--primary); margin-right: 8px; }
.main-nav .dropdown-item:hover { background: #fff5ea; color: var(--primary); }
.main-nav .dropdown-item.active,
.main-nav .dropdown-item:active {
  background: #fff5ea;
  color: var(--primary);
  font-weight: 700;
}

.btn-quote {
  background: var(--primary);
  color: #fff; border: none;
  font-weight: 700; font-size: .82rem;
  padding: 9px 22px; border-radius: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-quote:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(247,148,29,.4);
}

/* ─── HERO SLIDER ───────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: var(--hero-h, 75vh);
  min-height: 480px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark gradient overlay for text readability */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27,79,138,.85) 0%,
    rgba(27,79,138,.68) 45%,
    rgba(27,79,138,.28) 70%,
    rgba(27,79,138,.1) 100%
  );
}

/* Content overlay sits above all slides */
.hero-content-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: .6;
}

/* Hero text elements */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,148,29,.2);
  border: 1px solid rgba(247,148,29,.4);
  color: var(--primary);
  font-size: .75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: #fff; line-height: 1.15;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  animation: underlineIn .6s ease .9s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

.hero-subtitle {
  color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.7;
  max-width: 500px; margin-top: 14px;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.btn-hero-primary {
  background: var(--primary); color: #fff;
  border: none; font-weight: 700; font-size: .9rem;
  padding: 13px 30px; border-radius: 10px;
  transition: all .25s;
}
.btn-hero-primary:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,148,29,.5);
}
.btn-hero-outline {
  background: transparent;
  color: #fff; font-weight: 700; font-size: .9rem;
  border: 2px solid rgba(255,255,255,.4);
  padding: 13px 30px; border-radius: 10px;
  transition: all .25s;
}
.btn-hero-outline:hover {
  border-color: #fff; color: #fff;
  background: rgba(255,255,255,.1);
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 42px;
}
.stat-item .stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.8rem; color: #fff;
  line-height: 1;
}
.stat-item .stat-value span { color: var(--primary); }
.stat-item .stat-label { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 2px; }

/* Slide navigation arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Slide dots */
.slider-dots {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 20;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .25s, transform .25s;
  border: none; padding: 0;
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Slide caption (bottom right) */
.slide-caption {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 20;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 10px 18px;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-caption i { color: var(--primary); font-size: 1rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .7rem;
  z-index: 20;
}
.scroll-dot {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px; position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute;
  width: 4px; height: 8px; background: rgba(255,255,255,.5);
  border-radius: 2px; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%   { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* Animate.css overrides */
:root { --animate-duration: .8s; --animate-delay: .5s; }
.scroll-reveal { opacity: 0; }

/* Banner text slide transitions */
.hero-text-out {
  animation: textFadeOut .3s ease forwards;
}
.hero-text-in {
  animation: textFadeIn .6s ease forwards;
}
@keyframes textFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}
@keyframes textFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TRACKING BAR ──────────────────────────────────────────── */
.tracking-bar {
  background: var(--primary);
  padding: 18px 0;
}
.tracking-bar-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tracking-bar-label {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tracking-bar-label i { color: #fff; }
.tracking-bar-fields {
  display: flex;
  align-items: center;
}
.tracking-bar-input {
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 9px 16px;
  font-size: .9rem;
  width: 240px;
  outline: none;
  color: #333;
}
.tracking-bar-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 9px 22px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.tracking-bar-btn:hover { background: #0d47a1; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer.site-footer {
  background: #0d1e35;
  color: #8a9bb5;
  font-size: .875rem;
}
.footer-main { padding: 60px 0 40px; }

.footer-brand .brand-desc {
  font-size: .83rem; line-height: 1.8;
  color: #6d7f96; margin-top: 14px;
}
.footer-brand .contact-list { list-style: none; padding: 0; margin-top: 18px; }
.footer-brand .contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; color: #8a9bb5;
}
.footer-brand .contact-list li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-brand .contact-list li a { color: #8a9bb5; text-decoration: none; transition: color .2s; }
.footer-brand .contact-list li a:hover { color: var(--primary); }

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .95rem;
  color: #fff; margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
  color: #8a9bb5; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: color .2s, gap .2s; font-size: .83rem;
}
.footer-links li a i { font-size: .65rem; color: var(--primary); transition: transform .2s; }
.footer-links li a:hover { color: #fff; gap: 11px; }
.footer-links li a:hover i { transform: translateX(3px); }

.footer-divider { border-color: rgba(255,255,255,.07); margin: 0; }

.footer-bottom {
  background: #060e1a;
  padding: 14px 0; font-size: .78rem; color: #4a5a6d;
}
.footer-bottom a { color: #4a5a6d; text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-bottom .dev-credit { color: #6b7d93; }
.footer-bottom .dev-credit span { color: var(--primary); font-weight: 700; }

/* Footer social icons */
.footer-social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: #8a9bb5;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-size: .95rem;
}
.footer-social-icon:hover { background: var(--primary); color: #fff; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-slider  { min-height: 420px; }
  .hero-stats   { gap: 20px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .slide-caption { display: none; }
}
@media (max-width: 767px) {
  .hero-slider { min-height: 340px; }
  .hero-title  { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .tracking-bar-input { width: 180px; }
}
@media (max-width: 575px) {
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hero-cta   { flex-direction: column; }
  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-outline { text-align: center; }
}
