/* ===========================
   CITY SERVICE PAGES
   Shared Styling
=========================== */
/* 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: relative;
  z-index: 1000;
}

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

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

.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;
}

/* HERO */
.city-hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url("../images/pool-hero.jpg") center/cover no-repeat;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

.city-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.city-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 1.1rem;
}

/* SECTIONS */
.city-section {
  padding: 70px 20px;
}

.city-container {
  max-width: 1100px;
  margin: auto;
}

.city-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #003e5c;
}

.city-section p {
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.city-services li {
  background: #eef3f7;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
}

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

.city-neighborhoods li {
  background: #f8fafc;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-neighborhoods i {
  color: #004b6f;
}

/* CTA */
.city-cta {
  background: #004b6f;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.city-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.city-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: #004b6f;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s ease;
}

.city-cta a:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .city-hero h1 {
    font-size: 2.1rem;
  }

  .city-section h2 {
    font-size: 1.7rem;
  }
}
/* CTA BANNER */
.cta-banner {
  background: white;
  color: #003b6f;
  padding: 50px 20px;
  text-align: center;   
}
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #003b6f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-banner .cta-btn:hover {
  background-color: #062c47;
}

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

.more-areas {
  margin-top: 25px;
  text-align: center;
}

.more-areas summary {
  cursor: pointer;
  font-weight: 600;
  color: #004b6f;
}

/* =========================
   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: -40px;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: 100px;
    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);
}
