
:root {
  --blue: #1a3a6b;
  --blue-light: #2a5298;
  --blue-mid: #1e4080;
  --blue-dark: #0d1f3c;
  --silver: #c0c8d4;
  --silver-light: #e8ecf0;
  --gold: #c9a227;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --bg: #f5f7fa;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 20, 50, 0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px; box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; padding: 6px 10px; border-radius: 4px; transition: all 0.2s;
  white-space: nowrap; letter-spacing: 0.02em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
.nav-links a.btn-cta {
  background: var(--gold); color: var(--blue-dark); font-weight: 700;
  padding: 6px 14px; border-radius: 4px;
}
.nav-links a.btn-cta:hover { background: #e0b530; }
.nav-phone { color: var(--silver); font-size: 0.82rem; white-space: nowrap; margin-left: 8px; }
.nav-phone a { color: var(--silver); text-decoration: none; }
.nav-phone a:hover { color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(10,20,50,0.99); padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem; font-weight: 500;
}
.mobile-menu a:hover { color: #fff; }

@media(max-width:1050px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
}

/* PAGES */

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-bg video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  filter: brightness(0.5);
  object-fit: cover; object-position: center;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%,-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.6) 0%, rgba(26,58,107,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 860px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.88);
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.25s; letter-spacing: 0.02em;
  min-height: 44px; touch-action: manipulation;
}
.btn-gold { background: var(--gold); color: var(--blue-dark); }
.btn-gold:hover { background: #e0b530; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }

/* SECTION */
section { padding: 80px 0; }
section.dark { background: var(--blue-dark); color: #fff; }
section.mid { background: var(--blue); color: #fff; }
section.light { background: #fff; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 20px; color: var(--blue-dark);
}
.dark h2, .mid h2 { color: #fff; }
.lead { font-size: 1.1rem; color: var(--text-light); max-width: 680px; line-height: 1.75; }
.dark .lead, .mid .lead { color: rgba(255,255,255,0.8); }

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s; cursor: pointer;
  display: block; text-decoration: none; color: inherit;
}
.service-card,
.service-card *,
.service-card h3,
.service-card p,
.service-card span { text-decoration: none !important; }
.service-card h3 { color: var(--text); }
.service-card p  { color: var(--text-light); }

/* ── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--blue-dark);
  overflow: hidden;
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 24s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-icon { font-size: 1.3rem; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,58,107,0.18); }

  100% { transform: translateX(-50%); }
}
.service-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 20px; }
.service-card-body h3 { color: var(--blue-dark); font-size: 1.1rem; margin-bottom: 8px; }
.service-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.service-card-body .read-more {
  color: var(--blue-light); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.service-card-body .read-more:hover { color: var(--gold); }

/* FEATURES */
.features-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px; margin-top: 48px;
}
.feature { text-align: center; display: flex; flex-direction: column; align-items: center; flex: 0 1 260px; }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; font-size: 1.8rem;
}
.feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; }

/* STATS */
.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 48px 0 0;
}
.stat {
  flex: 1; min-width: 180px; text-align: center;
  padding: 36px 24px; border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col img { width: 100%; border-radius: 10px; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
@media(max-width:768px) { .two-col { grid-template-columns: 1fr; } }

/* SERVICE PAGE HERO */
.svc-hero {
  height: 45vh; min-height: 300px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.svc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4); }
.svc-hero-content {
  position: relative; z-index: 2; padding: 40px 24px; max-width: 1180px;
  margin: 0 auto; width: 100%;
}
.svc-hero-content h1 { font-size: clamp(1.8rem,4vw,3rem); color: #fff; font-weight: 800; margin-bottom: 8px; }
.svc-hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

/* PROCESS */
.process-list { list-style: none; margin-top: 36px; }
.process-list li {
  display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start;
}
.process-num {
  min-width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--blue-dark);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.process-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--blue-dark); }
.process-text p { font-size: 0.9rem; color: var(--text-light); }

/* CAPS GRID */
.caps-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; margin-top: 36px; }
.cap-item {
  background: var(--silver-light); border-radius: 8px; padding: 18px 20px;
  border-left: 4px solid var(--blue-light);
}
.cap-item h4 { color: var(--blue-dark); font-size: 0.95rem; margin-bottom: 4px; }
.cap-item p { color: var(--text-light); font-size: 0.85rem; }

/* ABOUT */
.team-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; }
.team-card {
  flex: 1; min-width: 220px; background: var(--silver-light); border-radius: 10px;
  padding: 28px 24px; text-align: center; border-top: 4px solid var(--blue-light);
}
.team-card .avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; margin: 0 auto 14px;
}
.team-card h3 { color: var(--blue-dark); font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 24px; margin-top: 40px; }
.value-card {
  background: #fff; border-radius: 10px; padding: 28px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 3px solid var(--gold);
}
.value-card .vicon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { color: var(--blue-dark); font-size: 1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-light); font-size: 0.88rem; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; margin-top: 40px; }
.area-tag {
  background: #fff; border-radius: 8px; padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 10px;
  color: var(--blue-dark); font-weight: 600; font-size: 0.92rem;
}
.area-tag::before { content: '📍'; font-size: 1.1rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.c-icon {
  min-width: 48px; height: 48px; border-radius: 50%;
  background: var(--silver-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}
.c-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
.c-value { color: var(--blue-dark); font-weight: 600; font-size: 1rem; }
.c-value a { color: var(--blue-light); text-decoration: none; }
.c-value a:hover { color: var(--gold); }

/* FORM */
.contact-form { background: #fff; border-radius: 12px; padding: 36px; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.contact-form h3 { color: var(--blue-dark); font-size: 1.3rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--silver);
  border-radius: 6px; font-size: 0.95rem; color: var(--text);
  background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(42,82,152,0.12);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  display: inline-block; background: var(--blue); color: #fff;
  border: none; padding: 14px 32px; border-radius: 6px;
  font-weight: 700; font-size: 1rem; cursor: pointer; width: 100%;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--blue-light); }

/* MAP */
.map-wrap { margin-top: 40px; border-radius: 10px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 300px; border: none; }

/* BREADCRUMB */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* FOOTER */
footer {
  background: #050d1c; color: rgba(255,255,255,0.7); padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  margin-bottom: 40px;
}
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; line-height: 1.7; }
.footer-col .gold { color: var(--gold); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; text-align: center; font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }

/* BACK BTN */
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-light); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; margin-bottom: 24px; text-decoration: none;
  background: none; border: none; padding: 0;
}
.back-btn:hover { color: var(--gold); }

/* CTA BAND */
.cta-band { background: var(--gold); padding: 60px 0; text-align: center; }
.cta-band h2 { color: var(--blue-dark); margin-bottom: 12px; }
.cta-band p { color: rgba(10,20,50,0.75); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn-blue { background: var(--blue-dark); }

/* CHECKLIST */
.checklist { list-style: none; margin-top: 20px; }
.checklist li { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--text-light); }
.checklist li::before { content: '✔'; color: var(--blue-light); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* RESPONSIVE - MOBILE FIRST IMPROVEMENTS */
@media(max-width:768px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { height: 100svh; min-height: 500px; }
  .hero-content { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Service hero */
  .svc-hero { height: 42vh; min-height: 240px; }
  .svc-hero-content { padding: 24px 16px; }
  .svc-hero-content h1 { font-size: clamp(1.4rem,5vw,2rem); }
  .svc-hero-content p { font-size: 0.95rem; }
/* Two-col */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col img { max-height: 280px; object-fit: cover; }
  .two-col video { max-height: 280px; object-fit: cover; border-radius: 10px; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card img { height: 180px; }

  /* Features */
  .features-grid { gap: 20px; }
  .feature { flex: 0 1 100%; max-width: 320px; }

  /* Stats */
  .stats-row { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; min-width: 0; padding: 24px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-number { font-size: 2rem; }

  /* Caps grid */
  .caps-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr; }

  /* Areas grid */
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-tag { font-size: 0.82rem; padding: 10px 12px; }

  /* CTA band */
  .cta-band { padding: 40px 0; }
  .cta-band h2 { font-size: 1.5rem; }

  /* Footer */
  footer { padding: 40px 0 20px; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 0.9rem; }
  .faq-section { margin-top: 40px; }

  /* Forms */
  .contact-form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Team cards */
  .team-row { flex-direction: column; }
  .team-card { min-width: unset; }

  /* Process list */
  .process-list li { gap: 12px; }

  /* Back button */
  .back-btn { margin-bottom: 16px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; }

  /* Map */
  .map-wrap iframe { height: 220px; }
}

@media(max-width:480px) {
  .stat { flex: 1 1 100%; }
  .areas-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.5rem; }
  .lead { font-size: 1rem; }
  .btn { padding: 13px 22px; font-size: 0.95rem; }
  .svc-hero { min-height: 200px; height: 38vh; }}

/* Ensure images are always responsive */
img { max-width: 100%; height: auto; }
video { max-width: 100%; }

/* ===== FAQ ACCORDION ===== */
.faq-section { margin-top: 64px; }
.faq-section h2 { color: var(--blue-dark); margin-bottom: 32px; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: #f8fafc; border: none; cursor: pointer;
  padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--blue-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: #eef2f7; }
.faq-question .faq-icon { font-size: 1.25rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.faq-answer.open { display: block; }

/* Active nav link */
#nav-links a.active { color: var(--gold); }
