.banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.breadcrumb span {
  color: var(--accent-gold);
  margin-left: 5px;
}

/* Contact Section */
.contact-section {
  background: var(--light-color);
  padding: 80px 0;
  position: relative;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-map-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 30px;
}


.map-container {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-control {
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 15px 20px 15px 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(218, 18, 18, 0.25);
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 16px;
  z-index: 2;
}



/* Responsive Design */
@media (max-width: 992px) {
  .contact-form-container{
    padding: 30px;
  }
  
  
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .form-control {
    padding: 12px 15px 12px 45px;
  }
  
}