/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.6) 0%, #ffffff 100%);
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* HERO */
.contact-hero-card {
  border-radius: 22px;
  overflow: hidden;
}

/* KICKER */
.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #d39b18;
  margin-bottom: 0.8rem;
}

/* HOST CARD */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.contact-avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe082 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #9c6a00;
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.18);
}

/* HOST CONTACT LIST */
.contact-list {
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-list i {
  margin-right: 8px;
  color: #ffc107;
}

.contact-list a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #c98900;
  text-decoration: none;
}

/* FORM CARD */
.contact-form-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

/* LABELS */
.contact-form-card label {
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #444;
  display: inline-block;
}

/* FORM FIELDS */
.contact-form-card input,
.contact-form-card textarea {
  border-radius: 10px;
  border: 1px solid #dddddd;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #9a9a9a;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.18);
  outline: none;
}

/* SUBMIT BUTTON */
.contact-btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 28px;
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.30);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 193, 7, 0.35);
}

/* =========================
   BUSINESS SOCIAL SECTION
========================= */

.contact-social-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.contact-social-large {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-social-large a {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-social-large a i {
  transition: transform 0.3s ease;
}

.contact-social-large a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  filter: brightness(1.03);
}

.contact-social-large a:hover i {
  transform: scale(1.15);
}

/* BRAND COLORS */
.contact-social-large a.whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-social-large a.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
}

.contact-social-large a.facebook {
  background: #1877F2;
  color: #fff;
}

/* WHATSAPP CTA BUTTON */
.whatsapp-btn {
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.30);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.35);
}

/* OPTIONAL: small helper text under social/cta */
.contact-social-card p,
.contact-form-card p {
  color: #6c757d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .contact-card,
  .contact-form-card,
  .contact-social-card {
    padding: 1.6rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-card,
  .contact-form-card,
  .contact-social-card {
    border-radius: 18px;
    padding: 1.4rem;
  }

  .contact-avatar {
    width: 62px;
    height: 62px;
    font-size: 1.7rem;
  }

  .contact-social-large a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .contact-btn,
  .whatsapp-btn {
    width: 100%;
    max-width: 320px;
  }

  .contact-social-large {
    gap: 10px;
  }
}

/* =========================
   AVATAR
========================= */

.contact-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;   /* rende l'immagine tonda */
    object-fit: cover;    /* evita deformazioni */
    border: 2px solid #eee;
}