/* ============================================================
   CONTATTI · pagina dedicata al form di contatto
   Eredita da style.css (form, btn-primary, faq, header).
   Aggiunge: hero pagina, layout 2 colonne form+sidebar.
   ============================================================ */


/* ============================================ */
/* HERO PAGINA CONTATTI                         */
/* ============================================ */
.contact-page-hero {
  background: var(--omni-darker);
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
.contact-page-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.contact-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--omni-olive-2);
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, gap 0.2s ease;
}
.contact-back-link:hover {
  color: var(--omni-lime);
  gap: 10px;
}
.contact-page-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--omni-orange-2);
  margin-bottom: 24px;
}
.contact-page-title {
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--omni-white);
}
.contact-page-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--omni-olive-2);
  margin: 0;
  max-width: 760px;
}


/* ============================================ */
/* MAIN: form + sidebar                         */
/* ============================================ */
.contact-main {
  background: var(--omni-deepest);
  padding: 80px 5% 100px;
}
.contact-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}


/* ============================================ */
/* COLONNA FORM (sx)                            */
/* ============================================ */
.contact-form-block {
  background: var(--omni-darker);
  padding: 48px 48px 40px;
  position: relative;
}
.contact-form-block .form-card-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--omni-lime);
  margin-bottom: 12px;
}
.contact-form-block .form-card-title {
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--omni-white);
  margin: 0 0 32px;
}

/* Select stile coerente con input (eredita da style.css ma forza i bordi/colori) */
.contact-form-block select {
  width: 100%;
  background: var(--omni-deepest);
  color: var(--omni-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C8E066' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  transition: background-color 0.2s ease;
}
.contact-form-block select:hover {
  background-color: var(--omni-dark);
}
.contact-form-block select:focus {
  background-color: var(--omni-dark);
}
.contact-form-block select option {
  background: var(--omni-darker);
  color: var(--omni-white);
}

/* Consent checkbox row */
.form-row-consent {
  margin-bottom: 8px;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--omni-olive-2);
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--omni-lime);
  cursor: pointer;
}
.form-link {
  color: var(--omni-lime);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(200, 224, 102, 0.4);
  transition: text-decoration-color 0.2s ease;
}
.form-link:hover {
  text-decoration-color: var(--omni-lime);
}


/* ============================================ */
/* COLONNA SIDEBAR (dx)                         */
/* ============================================ */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.contact-side-block {
  background: var(--omni-darker);
  padding: 32px 32px;
}
.contact-side-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--omni-white);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-side-title::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--omni-lime);
}

/* Step list */
.contact-side-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-side-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--omni-lime);
  color: var(--omni-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px;
}
.step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.4;
}
.step-text strong {
  color: var(--omni-white);
  font-weight: 700;
  font-size: 14px;
}
.step-text span {
  color: var(--omni-olive-2);
  font-size: 13px;
}

/* Channels */
.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-channels li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.channel-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--omni-deepest);
  color: var(--omni-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--omni-olive-2);
}
.channel-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--omni-white);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
a.channel-value:hover {
  color: var(--omni-lime);
}

/* Trust box */
.contact-trust-box {
  background: var(--omni-lime);
  color: var(--omni-dark);
}
.contact-trust-box .contact-side-title {
  display: none;
}
.trust-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.trust-stat-value {
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--omni-dark);
}
.trust-stat-unit {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--omni-dark);
}
.trust-stat-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(31, 31, 31, 0.78);
  margin: 0;
}
.trust-stat-text strong {
  color: var(--omni-dark);
  font-weight: 700;
}


/* ============================================ */
/* FAQ CONTATTI · stesso accordion delle altre  */
/* ============================================ */
.contact-faq-inner {
  max-width: 880px;
}
.faq-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--omni-deepest);
  padding: 0;
  overflow: hidden;
  transition: background .25s ease;
}
.faq-item:hover {
  background: var(--omni-darker);
}
.faq-item[open] {
  background: var(--omni-darker);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--omni-white);
  letter-spacing: -0.005em;
  user-select: none;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--omni-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), background .25s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--omni-lime);
  color: var(--omni-dark);
}
.faq-body {
  padding: 0 28px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--omni-olive-2);
}


/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1100px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-side {
    position: static;
  }
}

@media (max-width: 700px) {
  .contact-page-hero { padding: 60px 5% 56px; }
  .contact-page-title { font-size: clamp(36px, 10vw, 56px); }
  .contact-page-lead { font-size: 16px; }

  .contact-main { padding: 56px 5% 72px; }
  .contact-form-block { padding: 32px 24px 28px; }
  .contact-form-block .form-card-title { font-size: 26px; margin-bottom: 24px; }
  .contact-side-block { padding: 24px; }

  .trust-stat-value { font-size: 44px; }

  .faq-item summary { padding: 20px; font-size: 16px; gap: 14px; }
  .faq-body { padding: 0 20px 20px; font-size: 14px; }
}