.elementor-5694 .elementor-element.elementor-element-547022e{--display:flex;}.elementor-5694 .elementor-element.elementor-element-978f8ae{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-978f8ae */.hero {
    background: linear-gradient(135deg, #0092ff 0%, #1b5e7f 100%);
    color: #ffffff;
    min-height: 100vh;       /* makes hero fill screen vertically */
    width: 100vw;            /* span full width */
    display: flex;
    align-items: center;     /* vertically center content */
    margin-left: calc(-50vw + 50%); /* break out of container */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: center;
    max-width: 100%;       /* wider than typical container */
    margin: 0 auto;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffffff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    column-gap: 1rem;
}

.btn-primary {
    background: #000000;
    color: #ffffffff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0092ff;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0092ff;
    color: #ffffff;
}

.locator-card {
    background: #ffffff;
    color: #0092ff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.locator-card h3 {
    margin-bottom: 1rem;
    color: #0092ff;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input {
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
}

.btn-location {
    background: #0092ff;
    color: #ffffff;
    padding: 1rem;
    border: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-location:hover {
    background: #000000;
}

 .hero-keywords {
            margin: 20px 0;
        }
        
        .keyword-tag {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 5px;
            font-size: 14px;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .popular-locations {
            margin-top: 15px;
            font-size: 14px;
        }
        
        .popular-locations a {
            color: #4a90e2;
            text-decoration: none;
        }
        /* ========================
   Responsive Hero Section
   ======================== */

/* Tablet breakpoint */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;   /* stack instead of side by side */
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .locator-card {
    margin-top: 2rem;
  }
}

/* Mobile breakpoint */
@media (max-width: 600px) {
  .hero {
    min-height: auto;          /* let content decide height */
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    display: block;
    width: 100%;               /* full-width buttons on mobile */
    padding: 0.9rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-input,
  .btn-location {
    width: 100%;
  }
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Primary CTA - Strong Black */
.btn-primary {
  background: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #0092ff; /* brand blue */
  transform: translateY(-2px);
  color: #ffffff;
}

/* Secondary CTA - Outlined White */
.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #0092ff; /* brand blue hover */
  border-color: #0092ff;
  color: #ffffff;
}/* End custom CSS */