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

:root {
  --navy: #0B1D35;
  --navy-mid: #122340;
  --navy-light: #1a3358;
  --gold: #E8A020;
  --gold-light: #F5B842;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --text-muted: #8A9BB0;
  --text-body: #C8D4E3;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(11, 29, 53, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-ar { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); letter-spacing: 0.04em; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.22em; text-transform: uppercase; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-body); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.4rem !important; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,160,32,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,51,88,0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2444 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.0; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { font-style: normal; color: var(--gold); }

.hero-sub { font-size: 1.1rem; font-weight: 300; color: var(--text-body); line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 5px; text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 5px; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-trust {
  position: absolute; bottom: 3rem; left: 6%; right: 6%;
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both; z-index: 2;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }
.trust-item .icon { color: var(--gold); font-size: 1rem; }

/* ─── SECTIONS ─── */
section { position: relative; padding: 6rem 6%; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.section-body { font-size: 1rem; color: var(--text-body); line-height: 1.75; max-width: 560px; }
.gold-divider { width: 48px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; }

/* ─── SERVICES ─── */
.services { background: var(--navy-mid); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--navy-mid); padding: 2.5rem 2rem; transition: background 0.3s; position: relative; overflow: hidden; text-decoration: none; display: block; color: inherit; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--navy-light); }
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.7rem; letter-spacing: 0.02em; }
.service-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── WHY US ─── */
.why-us { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point { display: flex; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.why-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(232,160,32,0.2); line-height: 1; min-width: 3rem; }
.why-point h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.why-point p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.why-panel { background: var(--navy-mid); border: 1px solid var(--border); padding: 3rem; position: relative; }
.why-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); }
.panel-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 2rem; line-height: 1.2; }
.no-list { display: flex; flex-direction: column; gap: 1rem; }
.no-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: rgba(232,160,32,0.04); border: 1px solid rgba(232,160,32,0.1); border-radius: 4px; }
.no-icon { width: 32px; height: 32px; background: rgba(232,160,32,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; color: var(--gold); }
.no-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-body); }

/* ─── FLEET ─── */
.fleet { background: var(--navy-mid); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 3rem; }
.fleet-card { background: var(--navy); border: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s, transform 0.3s; }
.fleet-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fleet-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.fleet-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.fleet-card p { font-size: 0.8rem; color: var(--text-muted); }
.fleet-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1.1rem; border-radius: 100px; letter-spacing: 0.05em; }

/* ─── COVERAGE ─── */
.coverage { background: var(--navy); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.coverage-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.zone-card { padding: 1.5rem; background: var(--navy-mid); border: 1px solid var(--border); border-left: 3px solid var(--gold); }
.zone-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.zone-card p { font-size: 0.82rem; color: var(--text-muted); }
.coverage-cta { background: var(--navy-mid); border: 1px solid var(--border); padding: 3rem; }
.coverage-cta p { color: var(--text-body); line-height: 1.75; margin-bottom: 2rem; }

/* ─── CONTACT ─── */
.contact { background: var(--navy-mid); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--gold); }
.contact-block h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-block a, .contact-block p { color: var(--white); font-weight: 600; font-size: 1rem; text-decoration: none; transition: color 0.2s; }
.contact-block a:hover { color: var(--gold); }
.call-anytime { margin-top: 1rem; padding: 1.2rem 1.5rem; background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.2); border-radius: 4px; font-size: 0.85rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 0.6rem; }

/* ─── FAQ ─── */
.faq { background: var(--navy); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 700; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; padding-bottom: 1.5rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
input, textarea, select { background: var(--navy); border: 1px solid var(--border); color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 4px; outline: none; transition: border-color 0.2s; width: 100%; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--gold); color: var(--navy); font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1rem; padding: 1rem 2rem; border: none; border-radius: 5px; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }

/* ─── SERVICE PAGE HERO ─── */
.page-hero { padding: 10rem 6% 6rem; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.page-hero .hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-content { position: relative; z-index: 2; max-width: 750px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.2rem; animation: none; }
.page-hero p { font-size: 1.1rem; color: var(--text-body); line-height: 1.75; max-width: 600px; margin-bottom: 2rem; }

/* ─── SERVICE DETAIL ─── */
.service-detail { background: var(--navy-mid); }
.detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.detail-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.detail-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.97rem; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1.5rem 0; }
.detail-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.93rem; color: var(--text-body); line-height: 1.5; }
.detail-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.detail-panel { background: var(--navy); border: 1px solid var(--border); padding: 2.5rem; position: sticky; top: 6rem; }
.detail-panel h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.detail-panel p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1.5rem; }

/* ─── FOOTER ─── */
footer { background: #071422; border-top: 1px solid var(--border); padding: 2.5rem 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: 0.82rem; color: var(--text-muted); }
footer p span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-header, .why-grid, .coverage-inner, .contact-inner, .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-trust { gap: 1.5rem; }
  .detail-panel { position: static; }
}
@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  nav { padding: 1rem 5%; }
  .coverage-zones { grid-template-columns: 1fr; }
}