/* Scoped CSS prefixed with location- */

/* Page Header */
.location-page-header {
  background-image: url('/mudra-laravel/public/images/Location_banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 185px 0; /* Increased height */
  color: white;
  text-align: center;
  position: relative;
}

.location-page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* black overlay with 50% opacity */
  z-index: 0;
}

.location-page-header .location-container {
  position: relative;
  z-index: 1; /* above the overlay */
}

.location-page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.location-page-header p {
  font-size: 1.2rem;
  color: #ddd; /* lighter text for better contrast */
}

/* Container */
.location-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.location-nav-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #e91e63; /* Rich Indigo Blue background */
  padding: 0px 0;
  border-radius: 8px;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4); /* subtle shadow */
}

.location-nav-link {
  text-decoration: none;
  color: #ffffff; /* white text */
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.location-nav-link:hover {
  background-color: #3B82F6; /* lighter blue hover */
  color: #fff;
}

.location-nav-link.active {
  background-color: #2563EB; /* bright blue active */
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 8px #2563EB;
}

/* Services Section */
.location-services-section {
  padding: 60px 0;
  background-color: #fff;
}

.location-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.location-service-card:hover {
  transform: translateY(-5px);
}

.location-service-image img {
  width: 100%;
  height: auto;
}

.location-service-content {
  padding: 20px;
   text-align: center;
}

.location-service-content h3 {
  color: #e52e71;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: center;
}

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

.location-service-features li {
  font-size: 0.95rem;
  padding: 6px 0;
  color: #444;
}

/* Map Section */
.location-map-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.location-map-header {
  text-align: center;
  margin-bottom: 20px;
}

.location-map-container {
  background-color: #ddd;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-map-placeholder p {
  color: #555;
  font-size: 1rem;
}

/* CTA Section */
/* .location-cta-section {
  background-color: #e52e71;
  color: #fff;
  padding: 60px 0;
  text-align: center;
} */

.location-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.location-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.location-btn {
  background-color: #fff;
  color: #e52e71;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.location-btn:hover {
  background-color: #f8f8f8;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .location-nav-menu {
    gap: 1rem;
    padding: 15px 0;
  }

  .location-nav-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .location-page-header h1 {
    font-size: 2rem;
  }

  .location-page-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .location-services-grid {
    grid-template-columns: 1fr;
  }
}



.location-enquiry-btn-wrapper {
  text-align: center;
  margin: 30px 0;
}

.location-enquiry-btn {
  display: inline-block;
  background-color: #e52e71;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.location-enquiry-btn:hover {
  background-color: #bf255e;
}

/* 
.location-enquiry-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #e52e71; 
  background-color: rgb(30, 58, 138);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
} */

.location-enquiry-btn:hover {
  background-color: #007bff;
}


.location-enquiry-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  /* background-color: #ff6f61; Your brand color */
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* .location-enquiry-btn:hover {
  background-color: #e65550;
} */


.location-service-content h3 a {
  color: #e91e63;
  text-decoration: none; /* removes underline */
}


.location-service-content h3 a:hover {
  text-decoration: none; /* no underline even on hover */
}


.location-enquiry-btn.more-btn {
  float: right;
  background: #007bff;
}


.location-service-actions {
  display: flex;
  justify-content: space-between; /* Left + Right */
  align-items: center;
  margin-top: 15px;
}

.location-service-actions .location-enquiry-btn {
  flex: 0 0 auto;
}

.location-enquiry-btn.more-btn {
  background: #007bff; /* Blue button for contrast */
}

.location-enquiry-btn.more-btn:hover {
  background: #e52e71;
}


@media (max-width: 768px) {
  .location-service-actions {
    flex-direction: column;
    gap: 10px;
  }
}
