:root {
  --navbar-height: 90px;
} 
body {
  padding-top: var(--navbar-height);
}
.service-areas {
  padding: 80px 20px;
  background-color: #f7f9fc;
  font-family: Arial, sans-serif;
}

.service-areas-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-areas h1 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #0a2540;
  margin-top: 110px;
}

.service-areas h1 i {
  color: #1ea7fd;
  margin-right: 10px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.area-group {
  margin-bottom: 50px;
}

.area-group h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0a2540;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-group h2 i {
  color: #1ea7fd;
}

.areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.areas-list li a {
  display: block;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #0a2540;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.areas-list li a:hover {
  background-color: #1ea7fd;
  color: #ffffff;
  transform: translateY(-3px);
}
/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;  
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: "Anton", sans-serif;
  font-size: 40px;
  color: #003b6f;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  width: 100%;
  text-align: center;
  padding: 15px;
}

.nav-links a {
  color: #003b6f;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.nav-links a.quote-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #003b6f;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
}
/* CTA BANNER */
.cta-banner {
  background: #ffffff;
  color: #003b6f;
  padding: 50px 20px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #003b6f;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.cta-btn:hover {
  background: #002a4a;
}

/* FOOTER */
footer {
  background: #003b6f;
  color: white;
  text-align: center;         
  padding: 20px;
  margin-top: 40px;
} 

.county-hero {
  background: #003b6f;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.county-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.county-hero i {
  margin-right: 10px;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.6;
  font-size: 18px;
  
  
}

.container h2 {
  font-size: 32px;
  color: #003b6f;
  margin-bottom: 20px;
}

.county-about,
.county-services {
  background: #f7f7f7;
}

.county-cities {
  background: #ffffff;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.city-grid a {
  display: block;
  padding: 15px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #0b2a3c;
  text-align: center;
  transition: 0.3s ease;
}

.city-grid a:hover {
  background: #003b6f;
  color: white;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 10px 0;
  font-weight: 500;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
  list-style: none;
  padding: 0;
}

.city-btn {
  display: flex; 
  align-items: center;       /* vertical centering */
  justify-content: center;   /* horizontal centering */
  gap: 10px;                  /* space between icon and text */
  padding: 10px 40px;
  background-color: #0077b6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.city-btn:hover {
  background-color: #005f87;
}

.city-btn i {
  font-size: 1.2em; /* scales icon */
  padding-right: 8px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLETS */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo-text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-button {
    font-size: 16px;
    padding: 10px 16px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 50px 20px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .why-choose-us-icons h2 {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .icon-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .service-areas {
    padding: 60px 20px;
  }

  .service-areas h2 {
    font-size: 28px;
  }

  .service-areas p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .primary-btn,
  .cta-btn,
  .areas-btn {
    width: 100%;
    text-align: center;
  }
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1000;
  margin-left: auto;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #003b6f;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .logo img{
    margin-left: -20px;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;

    /* HIDDEN BY DEFAULT */
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Desktop */
@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}

/* Tablets + phones */
@media (max-width: 914px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
@media (max-width: 900px) {
  .logo-text {
    font-size: 26px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link:visited,
.logo-link:link {
  color: inherit;
}
.logo-link:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none; 
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo-text {
    font-size: 28px;
  }
}