/* ════════════════════════════════════════
   GLOBAL.CSS — Shared across all pages
   Let's Start Moving
════════════════════════════════════════ */

:root {
  --primary:   #cf0402;
  --secondary: #ff5a09;
  --dark:      #1a1a1a;
  --text:      #374151;
  --muted:     #6b7280;
  --light-bg:  #f8f8f8;
  --border:    #e5e7eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

img { max-width: 100%; display: block; }

/* ── TOPBAR ─────────────────────────────── */
.topbar {
  background: #1a1a1a;
  color: #e4e6eb;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
}
.topbar a { color: #e4e6eb; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--secondary); }
.topbar i { color: var(--secondary); margin-right: 6px; }

/* ── NAVBAR ─────────────────────────────── */
.main-nav {
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav .container { min-height: 68px; }
.navbar-brand { padding: 1px 0; }

.brand-text {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.brand-text .b-red { color: var(--primary); }

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: 1px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--secondary) !important; }

.btn-quote {
  background: var(--secondary);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 22px !important;
  font-size: 16px !important;
  font-weight: 700;
  transition: background .2s, transform .15s;
  border: none;
  text-decoration: none;
}
.btn-quote:hover { background: #e04f08; transform: translateY(-1px); color: #fff !important; }

/* ── BUTTONS ────────────────────────────── */
.btn-primary-solid {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px; font-weight: 700;
  border-radius: 6px; border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-solid:hover { background: #b00301; transform: translateY(-1px); color: #fff; }

.btn-secondary-cta {
  background: var(--secondary);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px; font-weight: 700;
  border-radius: 6px; border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary-cta:hover { background: #e04f08; transform: translateY(-1px); color: #fff; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: 11px 24px; border-radius: 6px;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.btn-solid-white {
  background: #fff; color: var(--primary);
  padding: 12px 28px; font-size: 14px; font-weight: 700;
  border-radius: 6px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-solid-white:hover { background: #f3f4f6; transform: translateY(-1px); color: var(--primary); }

/* ── SECTION LABELS ─────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.4px; margin-bottom: 14px;
  color: var(--dark);
}

.title-bar {
  width: 44px; height: 3px;
  background: var(--secondary);
  border-radius: 2px; margin-bottom: 20px;
}
.title-bar.center { margin-left: auto; margin-right: auto; }

/* ── TRUST STRIP ────────────────────────── */
.trust-strip {
  background: #2a2a2a;
  padding: 13px 0;
  border-bottom: 3px solid var(--secondary);
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #9ca3af; font-size: 13px; font-weight: 500; }
.trust-item i { color: var(--secondary); font-size: 14px; }

/* ── PAGE HERO BANNER (inner pages) ─────── */
.page-banner {
  background:
    linear-gradient(rgba(15,15,15,.68), rgba(15,15,15,.68)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
  padding: 72px 0 60px;
  text-align: center;
  color: #fff;
}
.page-banner h1 {
  font-size: 38px; font-weight: 900;
  color: #fff; letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.page-banner p { font-size: 15px; color: #d1d5db; max-width: 480px; margin: 0 auto; }
.breadcrumb-wrap { margin-top: 16px; }
.breadcrumb-wrap a { color: var(--secondary); text-decoration: none; font-size: 14px; font-weight: 600; }
.breadcrumb-wrap span { color: #9ca3af; font-size: 14px; }
.breadcrumb-sep { color: #6b7280; margin: 0 8px; font-size: 13px; }

/* ── COUNTERS ───────────────────────────── */
.counter-section {
  background: #fff; padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.counter-box { text-align: center; padding: 16px; }
.counter-box i { font-size: 28px; color: var(--secondary); margin-bottom: 10px; display: block; }
.counter-num { font-size: 42px; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -1px; }
.counter-suffix { font-size: 28px; font-weight: 900; color: var(--primary); }
.counter-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 6px; }

/* ── CTA SECTION ────────────────────────── */
.cta-dark {
  background: #6d1a2e; padding: 80px 0; text-align: center;
}
.cta-dark h2 { font-size: 34px; color: #fff; margin-bottom: 12px; letter-spacing: -0.4px; }
.cta-dark p { color: #e2e2e2; font-size: 15px; max-width: 500px; margin: 0 auto 28px; }

/* ── FOOTER ─────────────────────────────── */
footer { background: #141414; color: #e2e2e2; padding: 64px 0 0; }
.footer-brand .brand-text { font-size: 20px; color: #fff; }
.footer-brand .brand-sub { color: #d9d9d9; }
.footer-desc { font-size: 14.5px; line-height: 1.7; color: #d9d9d9; margin-top: 12px; max-width: 270px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; text-decoration: none; font-size: 13px;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--secondary); color: #fff; }

footer h6 {
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
footer h6::after {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--secondary);
  border-radius: 2px; margin-top: 6px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #d9d9d9; text-decoration: none; font-size: 14.5px;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.footer-links a i { color: var(--secondary); font-size: 10px; }
.footer-links a:hover { color: var(--secondary); }

.footer-contact li { font-size: 13.5px; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; font-size: 13px; }

.footer-bottom {
  background: #494949; margin-top: 48px; padding: 15px 0;
  text-align: center; font-size: 13.5px; color: #e4e4e4;
}
.footer-bottom span { color: var(--secondary); }

/* ── SCROLL TOP ─────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--secondary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
  z-index: 900; text-decoration: none; font-size: 14px;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); color: #fff; }
/* Position parent */
.dropdown-submenu {
  position: relative;
}

/* Hide submenu initially */
.dropdown-submenu .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
  .dropdown-submenu:hover .submenu {
    display: block;
  }
}

/* Links styling */
.submenu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;

}

.submenu li a:hover {
  background: #f5f5f5;
}

/* Arrow spacing */
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}