/* =========================
   GENERAL RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* =========================
   HEADER
========================== */
.header {
  background-color: #005A9C; /* Dodgers Dark Blue */
  color: #fff;
  padding: 15px 0;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   HERO
========================== */
.hero {
  background-color: #005A9C; /* Dodgers Dark Blue */
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background-color: #e6b800;
}

/* =========================
   SECTIONS
========================== */
.section {
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================
   SERVICES GRID
========================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-box {
  flex: 1 1 250px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.service-box img {
  max-width: 100%;
  border-radius: 5px;
}

/* =========================
   CONTACT INFO CARD
========================== */
.contact-info-card {
  background-color: #f0f8ff;
  border: 2px solid #005A9C;
  padding: 25px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
  color: #005A9C;
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-info-card p {
  font-size: 18px;
  margin: 8px 0;
}

/* =========================
   CONTACT FORM
========================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: center;
  padding: 12px 25px;
  background-color: #ffcc00;
  color: #333;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #e6b800;
}

.honeypot {
  display: none;
}

/* =========================
   CLIENTS GRID
========================== */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.client-logo {
  flex: 1 1 200px;
  text-align: center;
}

.client-logo img {
  max-width: 100%;
}

/* =========================
   FOOTER
========================== */
.footer {
  background-color: #005A9C; /* Dodgers Dark Blue */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    position: fixed;
    top: 70px; /* header height */
    left: 0;
    width: 100%;
    background-color: #005A9C;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .nav ul.active {
    max-height: 1000px; /* big enough to show all links */
  }

  .nav a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}


/* ==========================
   GOOGLE MAP FIX (isolated)
========================== */
.map-outer-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.map-inner-wrapper {
    width: 100%;
    max-width: 900px; /* adjust max width for desktop */
}

.map-inner-wrapper iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0;
    display: block;
    border-radius: 6px;
}

/* ==========================
   CONTACT FORM + MAP FLEX
========================== */
.contact-map-flex {
  display: flex;
  gap: 40px; /* space between form and map */
  justify-content: space-between;
  flex-wrap: wrap; /* allows stacking on mobile */
  margin-top: 30px;
}

/* Form column */
.contact-form-column {
  flex: 1 1 400px; /* min 400px, grows/shrinks */
}

/* Map column */
.map-column {
  flex: 1 1 400px;
}

.map-column iframe {
  width: 100% !important;
  height: 450px !important;
  border: 0;
  display: block;
  border-radius: 6px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .contact-map-flex {
    flex-direction: column;
    gap: 30px;
  }

  .map-column iframe {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  .map-column iframe {
    height: 250px !important;
  }
}
/* =========================
   GALLERY GRID (Safe Add-On)
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #ddd;
  transition: transform 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* =========================
   LIGHTBOX (Pure CSS)
=========================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
}

.lightbox img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

/* Show lightbox when targeted */
.lightbox:target {
  display: block;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;



