/* ============================================
   CONTATTI PAGE - CSS SEPARATO
   ============================================ */

/* Contatti Hero */
body .contatti-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  padding: 8rem 2rem 6rem;
}

body .contatti-hero-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

body .contatti-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a7897e !important;
  font-weight: 600;
  margin-bottom: 2rem;
}

body .contatti-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.1;
  color: #FFFFFF !important;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

body .contatti-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: #d4d4d4 !important;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Contatti Info Section */
.contatti-info-section {
  padding: 8rem clamp(1.5rem, 4vw, 5rem);
  background: #FFFFFF;
}

.contatti-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contatti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.info-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(167, 137, 126, 0.15);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #a7897e;
  box-shadow: 0 2px 12px rgba(167, 137, 126, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.info-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 300;
  margin: 0;
}

.info-card a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #a7897e;
}

/* Map Section */
.contatti-map-section {
  padding: 8rem clamp(1.5rem, 4vw, 5rem);
  background: #faf8f6;
}

.map-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.map-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 200;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.map-divider {
  width: 50px;
  height: 1px;
  background: #a7897e;
  margin: 0 auto 2rem;
}

.map-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 300;
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border: 1px solid rgba(167, 137, 126, 0.2);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Form Section */
.contatti-form-section {
  padding: 8rem clamp(1.5rem, 4vw, 5rem);
  background: #FFFFFF;
}

.form-content {
  max-width: 800px;
  margin: 0 auto;
}

.form-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 200;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.form-divider {
  width: 50px;
  height: 1px;
  background: #a7897e;
  margin: 0 auto 2rem;
}

.form-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(167, 137, 126, 0.3);
  background: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a7897e;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 2rem 0;
}

.form-privacy input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-privacy label {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: 300;
}

.form-submit {
  background: #a7897e;
  color: #FFFFFF;
  border: 2px solid #a7897e;
  padding: 1rem 3rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}

.form-submit:hover {
  background: transparent;
  color: #a7897e;
}

/* CTA Prenotazione */
.contatti-cta {
  padding: 8rem 2rem;
  background: #2a2a2a;
  text-align: center;
}

.contatti-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.contatti-cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 200;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contatti-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d4d4d4;
  font-weight: 300;
  margin-bottom: 3rem;
}

.cta-button-primary {
  background: #a7897e;
  color: #FFFFFF;
  border: 2px solid #a7897e;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.cta-button-primary:hover {
  background: transparent;
  color: #a7897e;
}

/* Responsive */
@media (max-width: 1024px) {
  .contatti-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contatti-hero {
    padding: 6rem 1.5rem 4rem;
    min-height: 50vh;
  }

  .contatti-info-section,
  .contatti-map-section,
  .contatti-form-section {
    padding: 5rem 1.5rem;
  }

  .contatti-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-wrapper {
    height: 400px;
  }

  .contatti-cta {
    padding: 5rem 1.5rem;
  }

  .cta-button-primary {
    width: 100%;
    text-align: center;
  }
}
