/* Hamilton Location Page – Beyond Limits Marketing */

.bl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.bl-hero {
  text-align: center;
  padding: 120px 20px 100px;
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: #fff;
}

.bl-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.bl-hero-sub {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #ccc;
}

.bl-btn-primary {
  display: inline-block;
  background: #f4a640;
  color: #fff !important;
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.bl-btn-primary:hover {
  background: #d88c2d;
  color: #fff !important;
}

.bl-section {
  padding: 100px 0;
}

.bl-light-bg {
  background: #f8f9fb;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.bl-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bl-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.bl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.bl-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.bl-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.bl-card a {
  color: #f4a640;
  font-weight: 600;
  text-decoration: none;
}

.bl-industry {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
}

.bl-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.bl-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.bl-cta p {
  margin-bottom: 40px;
  color: #ccc;
}

.bl-nearby-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.bl-nearby-list a {
  color: #f4a640;
  font-weight: 600;
  text-decoration: none;
}

.bl-nearby-list a:hover {
  text-decoration: underline;
}

.bl-db-content {
  line-height: 1.7;
}

.bl-db-content h2 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}

.bl-db-content h3 {
  margin-top: 1.25em;
  margin-bottom: 0.4em;
  font-size: 1.2rem;
}

.bl-db-content p {
  margin-bottom: 1em;
}

.bl-db-content a {
  color: #f4a640;
  font-weight: 600;
  text-decoration: none;
}

.bl-db-content a:hover {
  text-decoration: underline;
}

.bl-faq-item {
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.bl-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  background: #f8f9fb;
}

.bl-faq-item summary:hover {
  background: #f1f3f5;
}

.bl-faq-item[open] summary {
  border-bottom: 1px solid #e5e7eb;
}

.bl-faq-item p {
  padding: 16px 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .bl-hero h1 {
    font-size: 32px;
  }
  .bl-hero-sub {
    font-size: 16px;
  }
  .bl-section {
    padding: 60px 0;
  }
  .bl-container {
    padding: 40px 20px;
  }
}
