/* Stili per la pagina Contatti */

/* Hero Banner */
.page-banner {
  position: relative;
  background-color: #f5f9ff;
  background-image: url('../../images/about/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #2196f3;
}

.page-banner-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.page-banner h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-banner p {
  color: #fff;
  font-size: 18px;
  max-width: 600px;
}

/* Box Prenotazione */
.booking-section {
  padding: 60px 0;
  background-color: #f9fbfd;
}

.booking-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 60px;
}

.booking-header {
  background: #2196f3;
  color: white;
  padding: 24px 30px;
}

.booking-header h2 {
  margin: 0;
  font-size: 26px;
}

.booking-header p {
  margin: 8px 0 0;
  font-size: 16px;
  opacity: 0.9;
}

.booking-form {
  padding: 30px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.booking-form-group {
  margin-bottom: 20px;
}

.booking-form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
  outline: none;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.booking-option-item {
  background: #f5f9ff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.booking-option-item:hover {
  border-color: #2196f3;
  transform: translateY(-3px);
}

.booking-option-item.active {
  border-color: #2196f3;
  background-color: rgba(33, 150, 243, 0.1);
}

.booking-option-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  color: #2196f3;
}

.booking-option-item h4 {
  margin: 0 0 5px;
  font-size: 16px;
}

.booking-option-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.booking-submit {
  text-align: center;
  margin-top: 30px;
}

.booking-btn {
  background: #2196f3;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.booking-btn:hover {
  background: #0d83e0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

/* Contatto Generale */
.contact-form-section {
  padding: 60px 0;
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: #f5f9ff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2196f3;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.contact-info-card p {
  color: #666;
  margin: 0 0 15px;
  font-size: 15px;
}

.contact-link {
  color: #2196f3;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #0d83e0;
  text-decoration: underline;
}

.contact-form-container {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
  outline: none;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: #2196f3;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.submit-btn:hover {
  background: #0d83e0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

/* Mappa e Orari */
.map-hours-section {
  padding: 60px 0;
  background-color: #f9fbfd;
}

.map-hours-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-container,
.hours-container {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container h3,
.hours-container h3 {
  margin: 0 0 20px;
  font-size: 22px;
  position: relative;
  padding-bottom: 10px;
}

.map-container h3:after,
.hours-container h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #2196f3;
}

.map-wrapper {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.map-directions {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.map-directions i {
  color: #2196f3;
  margin-right: 5px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
}

.hours {
  color: #555;
}

.emergency-contact {
  margin-top: 30px;
  background: #f5f9ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #2196f3;
}

.emergency-contact h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #2196f3;
}

.emergency-contact p {
  margin: 0 0 10px;
  font-size: 15px;
}

.emergency-phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.emergency-phone i {
  color: #2196f3;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .map-hours-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .page-banner h1 {
    font-size: 36px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .booking-form {
    padding: 20px;
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
