/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: auto;
  padding: 0 40px;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #0a1f44;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* =========================
   BUTTON
========================= */
.btn-primary {
  background: #f4c400;
  color: #000;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* =========================
   LICENSE BAR
========================= */

.license-bar {
  background: #f5f8ff;
  border-bottom: 1px solid #eaeaea;
  font-size: 0.9rem;
  color: #0a1f44;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 45%, rgba(0,150,255,0.35) 0%, rgba(0,0,0,0) 45%),
    linear-gradient(135deg, #1b2c8f 0%, #0a1f44 70%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  color: #dcdcdc;
  margin-bottom: 30px;
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-image img {
  max-width: 460px;
}

/* HERO SERVICE LINKS */

.hero-links {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.hero-links a:hover {
  background: rgba(255,255,255,0.12);
}
/* =========================
   PAGE HERO
========================= */
.page-hero {
  background: #1f4fa3;
  color: #ffffff;
  padding: 80px 0;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero p {
  max-width: 700px;
  color: #e0e0e0;
  font-size: 1.05rem;
}

/* =========================
   SECTION SPACING
========================= */
.section {
  padding: 80px 0;
}

.divider {
  height: 1px;
  background: #eaeaea;
  margin: 50px 0;
}

/* =========================
   SERVICE GRID
========================= */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-text {
  max-width: 550px;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
}

/* =========================
   SERVICE AREAS GRID
========================= */
.service-areas-grid {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.service-areas-grid a {
  text-decoration: none;
  color: #0a1f44;
  font-weight: 600;
  border: 1px solid #eaeaea;
  padding: 12px 18px;
  transition: background 0.2s ease;
}

.service-areas-grid a:hover {
  background: #f5f8ff;
}

/* =========================
   TRUST + TEXT LINKS
========================= */
.trust h2 {
  font-size: 2rem;
  color: #0a1f44;
  margin-bottom: 20px;
}

.trust p {
  max-width: 750px;
  margin-bottom: 18px;
  color: #333;
  font-size: 1.05rem;
}

.text-link {
  color: #0a1f44;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.7;
}

/* =========================
   CTA STRIP
========================= */
.cta-strip {
  background: #0a1f44;
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-strip p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #dcdcdc;
  font-size: 1.05rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #1f4fa3;
  color: #ffffff;
  padding: 70px 0 30px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-col p {
  max-width: 300px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 0.85rem;
  color: #d0d0d0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {

  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    text-align: right;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }

  .service-grid {
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.service-text {
  flex: 1;
  max-width: 700px;
}

.service-image {
  flex: 0 0 auto;
  text-align: right;
  padding-right: 80px;
}

  .service-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

.service-image img {
  width: 120px !important;
  height: auto !important;
}

} /* <-- THIS closes the desktop media query */


/* =========================
   NEARBY CITIES
========================= */

.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.nearby-grid a {
  text-decoration: none;
  color: #0a1f44;
  font-weight: 600;
  border: 1px solid #eaeaea;
  padding: 10px 14px;
  background: #fff;
}

.nearby-grid a:hover {
  background: #f5f8ff;
}

/* MOBILE */
@media (max-width: 600px) {
  .nearby-grid {
    flex-direction: column;
  }
}
/* =========================
   MOBILE HEADER FIX
========================= */

@media (max-width: 768px) {

  .site-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo img {
    height: 70px;
  }

  .container {
    padding: 0 18px;
  }

}
  /* =========================
   MOBILE CONTAINER FIX
========================= */

@media (max-width: 768px) {

  .container {
    padding: 0 18px;
  }

}

}


