:root {
  --navy: #0b2a4a;
  --navy-dark: #071c33;
  --blue: #1565d8;
  --blue-light: #e8f1fd;
  --red: #e63946;
  --red-dark: #c4202e;
  --gray: #5b6b7c;
  --light: #f6f9fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 42, 74, 0.08);
}

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

body {
  font-family: 'PT Sans', sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid #e9eef3;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(11,42,74,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  gap: 20px;
}
.header-inner .call-button { order: -1; }
.header-inner .nav { order: 2; margin-left: auto; }

/* CALL BUTTON */
.call-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.35);
}

.call-icon {
  font-size: 20px;
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.call-label {
  display: none;
}

.call-number {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(11,42,74,0.12);
  padding: 8px 0;
  z-index: 200;
  border: 1px solid #e9eef3;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.12s ease;
}

.dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  padding: 4px 6px;
}

/* HERO */
.hero {
  background:
    linear-gradient(135deg, rgba(11,42,74,0.92), rgba(21,101,216,0.85)),
    url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  padding: 110px 0 90px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: #ffd166;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: #e6eef9;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(230,57,70,0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
  width: 100%;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  color: #d9e6f7;
}

/* SERVICES */
.services {
  padding: 90px 0;
  background: var(--light);
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 50px;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
}

/* WHY */
.why {
  padding: 90px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

.why h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.why-text p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 16px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--navy);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.why-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.why-card p {
  color: #cfdcec;
  margin-bottom: 24px;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-band h2 {
  font-size: 30px;
}

.btn-call {
  background: var(--white);
  color: var(--red-dark);
  font-size: 24px;
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}

.btn-call:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  color: #aebfd2;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.footer-call {
  color: #ffd166;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
    position: relative;
  }
  .call-button { padding: 8px 16px; }
  .call-icon { font-size: 17px; }
  .call-number { font-size: 15px; letter-spacing: -0.1px; }
  .mobile-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(11,42,74,0.12);
    border-bottom: 1px solid #e9eef3;
    z-index: 300;
  }
  .nav.open { display: flex; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 13px 4px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
  }
  .nav-dropdown { position: static; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .hero h1 { font-size: 34px; }
  .why-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
