@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --orange: #f47c20;
  --orange-dark: #d96b10;
  --orange-light: rgba(244,124,32,.12);
  --navy: #0a1628;
  --navy-2: #102040;
  --navy-3: #0d1f3c;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --gray: #6b7280;
  --dark: #111827;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ════════════════════════════════════
   LAYOUT
════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.section-alt { background: var(--light-bg); }

/* ════════════════════════════════════
   SECTION HEADINGS
════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.75; max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label { margin: 0 auto 14px; justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
  content: '';
  width: 28px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  border: 2px solid var(--orange);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,124,32,.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* ════════════════════════════════════
   TOP BAR
════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #c8d8ee; }
.top-bar-item i { color: var(--orange); font-size: 13px; }
.top-bar-cta {
  background: var(--orange);
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .2s;
  white-space: nowrap;
}
.top-bar-cta:hover { background: var(--orange-dark); }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.12); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.nav-logo img { height: 52px; object-fit: contain; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 7px 12px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); background: var(--orange-light); }
.nav-links a.active { color: var(--orange); background: var(--orange-light); }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: #fff !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay backdrop */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.2);
}
.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  flex-shrink: 0;
}
.mobile-nav-header img { height: 42px; object-fit: contain; }
.mobile-nav-close {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.15); }

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  border-left: 3px solid transparent;
  transition: all .2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--orange);
  background: var(--orange-light);
  border-left-color: var(--orange);
}
.mobile-nav-links a i { width: 20px; color: var(--orange); font-size: 15px; text-align: center; flex-shrink: 0; }

.mobile-nav-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: var(--light-bg);
  flex-shrink: 0;
}
.mobile-nav-footer .btn-primary { width: 100%; justify-content: center; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  background: linear-gradient(125deg, var(--navy) 0%, #0f2347 45%, #1a3a6a 100%);
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244,124,32,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content { color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,32,.18);
  border: 1px solid rgba(244,124,32,.4);
  color: #ffb36b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow i { color: var(--orange); }
.hero-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange); }
.hero-desc {
  font-size: 16px;
  color: #c0d4ee;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 12px; color: #7a99c0; font-weight: 500; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-main {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  position: relative;
  z-index: 2;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 20px; left: -20px; }
.hero-float-card.card-2 { top: 30px; right: -20px; animation-delay: 1.5s; }
.hero-float-icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.hero-float-text strong { font-size: 14px; font-weight: 700; color: var(--navy); display: block; }
.hero-float-text span { font-size: 12px; color: var(--gray); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ════════════════════════════════════
   SERVICES RIBBON
════════════════════════════════════ */
.services-ribbon {
  background: var(--orange);
  padding: 18px 0;
  overflow: hidden;
}
.services-ribbon .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.ribbon-item i { font-size: 18px; opacity: .85; }
.ribbon-divider { width: 1px; height: 24px; background: rgba(255,255,255,.35); }

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
.why-us-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,124,32,.15) 0%, transparent 70%);
  pointer-events: none;
}
.why-us-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,58,106,.8) 0%, transparent 70%);
  pointer-events: none;
}
.why-us-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.why-us-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #b8cfea;
  font-size: 15px;
}
.why-us-bullet-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(244,124,32,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 15px;
  flex-shrink: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,124,32,.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(244,124,32,.4); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { font-size: 26px; color: var(--orange); margin-bottom: 12px; opacity: .7; }
.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 24px; }
.stat-label { color: #8fb0d8; font-size: 13.5px; font-weight: 500; line-height: 1.4; }

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(244,124,32,.45);
  min-width: 130px;
}
.about-img-badge .num { font-size: 36px; font-weight: 900; line-height: 1; }
.about-img-badge .label { font-size: 12px; font-weight: 500; opacity: .9; margin-top: 4px; line-height: 1.4; }
.about-content .section-desc { margin-bottom: 8px; }
.about-points { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}
.about-points li .check-icon {
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════
   SERVICES GRID
════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f5;
  transition: all .35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-color: transparent;
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,.6) 100%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover .service-card-img::after { opacity: 1; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-card-icon-wrap {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .3s;
}
.service-card:hover .service-card-icon-wrap { background: var(--orange); }
.service-card-icon-wrap img { width: 30px; height: 30px; object-fit: contain; transition: filter .3s; }
.service-card:hover .service-card-icon-wrap img { filter: brightness(100) invert(1); }
.service-card-icon-wrap i { font-size: 22px; color: var(--orange); transition: color .3s; }
.service-card:hover .service-card-icon-wrap i { color: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 16px;
  transition: gap .2s, color .2s;
}
.service-card-link:hover { gap: 10px; }

/* ════════════════════════════════════
   TRACKING SECTION
════════════════════════════════════ */
.tracking-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2a56 60%, #163060 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.tracking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(244,124,32,.1) 0%, transparent 55%);
  pointer-events: none;
}
.tracking-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.tracking-inner .section-label { justify-content: center; color: #ffb36b; }
.tracking-inner .section-label::before, .tracking-inner .section-label::after { background: #ffb36b; }
.tracking-inner .section-title { color: #fff; margin: 0 auto 14px; }
.tracking-inner .section-desc { color: #8ab0d8; margin: 0 auto 40px; }
.tracking-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.tracking-form {
  display: flex;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.28);
}
.tracking-form input {
  flex: 1;
  padding: 18px 28px;
  font-size: 15px;
  border: none;
  outline: none;
  color: var(--dark);
  background: transparent;
  min-width: 0;
}
.tracking-form input::placeholder { color: #9ca3af; }
.tracking-form button {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  margin: 6px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tracking-form button:hover { background: var(--orange-dark); }
.track-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.track-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8ab0d8;
  font-size: 13.5px;
}
.track-feature i { color: var(--orange); }

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-section { padding: 90px 0; background: var(--light-bg); }
.testimonial-slider { position: relative; overflow: hidden; margin-top: 48px; }
.testimonial-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.testimonial-card { min-width: 100%; padding: 0 8px; }
.testimonial-inner {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,.08);
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #edf0f5;
}
.quote-mark {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 90px;
  line-height: 1;
  color: var(--orange);
  opacity: .08;
  font-family: Georgia, serif;
  pointer-events: none;
}
.stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}
.testimonial-author strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; }
.testimonial-author span { font-size: 13px; color: var(--gray); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(244,124,32,.3); }
.slider-dots { display: flex; gap: 7px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .3s;
}
.slider-dot.active { background: var(--orange); width: 26px; border-radius: 4px; }

/* ════════════════════════════════════
   TEAM
════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f5;
  transition: all .35s;
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card-img { position: relative; overflow: hidden; height: 260px; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-social {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity .35s;
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.25);
}
.team-social a:hover { background: var(--orange); transform: scale(1.15); border-color: var(--orange); }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.team-card-body span { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ════════════════════════════════════
   ESTIMATE / GET QUOTE SECTION
════════════════════════════════════ */
.estimate-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.estimate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/bg-estimate.jpg') center/cover no-repeat;
  opacity: 0.06;
}
.estimate-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.estimate-left .section-label { color: var(--orange); }
.estimate-left .section-title { color: #fff; }
.estimate-left .section-desc { color: #8ab0d8; margin-bottom: 28px; }
.estimate-features { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.estimate-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8cfea;
  font-size: 14.5px;
}
.estimate-feature i { color: var(--orange); width: 18px; }
.estimate-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: .2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fafbfc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--orange);
  color: #fff;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all .3s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,124,32,.35); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-grid {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(244,124,32,.12); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 14px;
  transition: color .2s;
  user-select: none;
}
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 300;
  transition: all .3s;
  color: var(--navy);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .35s;
  padding: 0 22px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
}
.faq-answer.open { max-height: 300px; padding: 0 22px 20px; }

/* ════════════════════════════════════
   FEATURES (used on About page)
════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f5;
  border-bottom: 3px solid transparent;
  transition: all .35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--orange);
  box-shadow: 0 16px 44px rgba(0,0,0,.11);
}
.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-wrap img { width: 36px; height: 36px; object-fit: contain; }
.feature-icon-wrap i { font-size: 28px; color: var(--orange); }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════ */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #0f2347 60%, #1a3a6a 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(244,124,32,.1) 0%, transparent 50%),
    url('/images/bg-hero.jpg') center/cover no-repeat;
  opacity: 0.07;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero-line { width: 60px; height: 4px; background: var(--orange); border-radius: 4px; margin: 14px 0; }
.page-hero p { font-size: 16px; color: #8ab0d8; max-width: 560px; line-height: 1.7; margin-bottom: 18px; }
.breadcrumb { display: flex; gap: 6px; font-size: 13.5px; color: #7a99c0; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--orange); }

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf0f5;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--orange);
  transition: all .3s;
}
.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 46px; height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  font-size: 26px;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.map-embed { margin-top: 20px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: #060f1f;
  color: #8fa8c8;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo-img { height: 48px; margin-bottom: 18px; filter: brightness(1.15); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: #6a8aaa; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #8fa8c8;
  transition: all .25s;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2.5px;
  background: var(--orange);
  border-radius: 3px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: #6a8aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .22s;
}
.footer-links a::before { content: '›'; color: var(--orange); font-size: 18px; line-height: 1; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item .fci-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(244,124,32,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}
.footer-contact-item p { font-size: 13.5px; color: #6a8aaa; line-height: 1.6; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #3a5270;
}
.footer-bottom span { color: var(--orange); }
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════ */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.8;
  color: #374151;
}
.legal-content h2 { font-size: 22px; color: var(--navy); margin: 36px 0 12px; font-weight: 700; }
.legal-content h3 { font-size: 18px; color: var(--navy); margin: 24px 0 10px; font-weight: 600; }
.legal-content p { margin-bottom: 14px; font-size: 15px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; font-size: 15px; }

/* ════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(244,124,32,.5);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s;
  z-index: 900;
  border: 3px solid rgba(255,255,255,.2);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px) scale(1.07); box-shadow: 0 10px 28px rgba(244,124,32,.6); }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════
   SUCCESS / MESSAGES
════════════════════════════════════ */
.success-msg {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  border-radius: 10px;
  padding: 14px 18px;
  color: #065f46;
  font-size: 14px;
  font-weight: 600;
  display: none;
  margin-top: 14px;
  text-align: center;
}
.success-msg.show { display: block; }

/* ════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-us-inner { gap: 44px; }
  .estimate-inner { gap: 44px; }
  .hero .container { gap: 40px; }
  .hero-float-card.card-2 { right: -10px; }
  .hero-float-card.card-1 { left: -10px; }
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (900px)
════════════════════════════════════ */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-main { max-width: 420px; margin: 0 auto; }
  .hero-float-card.card-1 { left: 0; }
  .hero-float-card.card-2 { right: 0; top: 10px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { left: 8px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .estimate-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .services-ribbon .container { justify-content: center; }
  .ribbon-divider { display: none; }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 36px; padding-bottom: 36px; }
  .hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hero-float-card { display: none; }
  .stats-grid { gap: 14px; }
  .top-bar .container { flex-direction: column; gap: 8px; text-align: center; }
  .top-bar-items { justify-content: center; }
  .tracking-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 12px;
  }
  .tracking-form input {
    background: #fff;
    border-radius: 50px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
  }
  .tracking-form button {
    margin: 0;
    border-radius: 50px;
    padding: 16px 28px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(244,124,32,.4);
  }
  .track-features { gap: 16px; }
  .testimonial-inner { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-ribbon { padding: 14px 0; }
  .ribbon-item { font-size: 13px; }
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL (580px)
════════════════════════════════════ */
@media (max-width: 580px) {
  .container { padding: 0 16px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-stat-num { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 32px; }
  .stat-card { padding: 20px 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card-img { height: 200px; }
  .features-grid { grid-template-columns: 1fr; }
  .estimate-form-card { padding: 24px 18px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-us-inner { gap: 32px; }
  .about-grid { gap: 32px; }
  .testimonial-inner { padding: 24px 18px; }
  .testimonial-text { font-size: 14.5px; }
  .page-hero { padding: 48px 0 40px; }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .faq-question { font-size: 14px; }
  .scroll-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ════════════════════════════════════
   RESPONSIVE — XS (400px)
════════════════════════════════════ */
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
}
