/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 26 2025 | 09:30:50 */
/**********************************************
 *  FONT & TIPOGRAFIA BASE
 **********************************************/
html, body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #222;
}

p, li {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
}

/**********************************************
 *  TITOLI – SOLO LE SEZIONI SONO CENTRATE
 **********************************************/
h1, h2, h4 {
  font-weight: 700;
  color: #222;
   
}

.vscn-section-title,
.vscn-reviews-title,
.vscn-location-header h2,
.vscn-form-title {
  text-align: center;
  margin-bottom: 20px;
}

/**********************************************
 *  CTA GLOBALI (UGUALI OVUNQUE)
 **********************************************/
.vscn-btn,
.vscn-footer-btn,
.vscn-footer-btn-outline,
.vscn-form-wrapper input[type="submit"] {
  display: inline-block;
  background: #FF7A30;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
  text-align: center;
}

.vscn-btn:hover,
.vscn-footer-btn:hover,
.vscn-form-wrapper input[type="submit"]:hover {
  background: #d46222;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* CTA Outline */
.vscn-footer-btn-outline {
  background: transparent;
  border: 2px solid #FF7A30 !important;
  color: #FF7A30 !important;
}
.vscn-footer-btn-outline:hover {
  background: rgba(255,122,48,0.15);
}

/**********************************************
 *  PUNTI DI FORZA (CARD ICONICHE)
 **********************************************/
.vscn-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 50px 0;
}

.vscn-item {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vscn-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/**********************************************
 *  SCACCHIERA 4 SERVIZI (ALTERNATA)
 **********************************************/
.vscn-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px 0;
}

.vscn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Alternanza desktop */
.vscn-row:not(.invert) {
  grid-template-areas: "text img";
}

.vscn-row.invert {
  grid-template-areas: "img text";
}

.vscn-text {
  grid-area: text;
}

.vscn-img {
  grid-area: img;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Liste */
.vscn-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  color: #222;
}
.vscn-list li:before {
  content: "•";
  color: #FF7A30;
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* Mobile: immagine sopra, testo sotto */
@media (max-width: 900px) {
  .vscn-row,
  .vscn-row.invert,
  .vscn-row:not(.invert) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "text";
  }
}

/**********************************************
 *  DOVE OPERIAMO (CARD GRIGLIA)
 **********************************************/
.vscn-location {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  margin: 60px 0;
  text-align: center;
}

.vscn-location-list li {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 500;
  transition: 0.25s ease;
}

.vscn-location-list li:hover {
  background: #FFE4D2;
  border-color: #FF7A30;
}

/**********************************************
 *  CAROSELLO RECENSIONI (AUTOPLAY + CARD)
 **********************************************/
.vscn-reviews-carousel {
  display: flex;
  gap: 26px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.vscn-review {
  min-width: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  transition: .25s ease;
}

.vscn-review:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/**********************************************
 *  FORM (TITOLO CENTRATO, CAMPI A SINISTRA)
 **********************************************/
.vscn-form-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 50px;
  margin: 70px 0;
  text-align: center;
}

.vscn-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  text-align: left; /* 🔥 CAMPi NON CENTRATI */
}

.vscn-form-wrapper input,
.vscn-form-wrapper textarea,
.vscn-form-wrapper select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #222;
}

/**********************************************
 *  FOOTER
 **********************************************/
.vscn-footer {
  background: #2F3237;
  color: #fff;
  padding: 60px 20px 0;
  margin-top: 70px;
}

.vscn-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.vscn-footer-col li {
  color: #e8e8e8;
  padding-left: 14px;
  position: relative;
}
.vscn-footer-col li:before {
  content: "•";
  color: #FF7A30;
  left: 0;
  top: 0;
  position: absolute;
}

.vscn-footer-bottom {
  background: #24272B;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  color: #bbb;
}
.footer-link a {
	color: #fff;
}
.footer-link h4 {
	color: #fff;
}
/* Rimuove i bullet sbagliati generati da Elementor */
.vscn-location ul,
.vscn-location ul > li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
/* ============================================
   🔥 ANTI-BULLET GLOBAL FIX
   Rimuove QUALSIASI bullet automatico di Elementor
   ovunque, tranne nelle liste personalizzate VSCN
============================================ */

/* Rimuove bullet da TUTTE le UL default */
ul:not(.vscn-list):not(.vscn-location-list) {
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Rimuove bullet anche dai LI non gestiti */
ul:not(.vscn-list):not(.vscn-location-list) > li {
  list-style: none !important;
  position: relative;
  padding-left: 0 !important;
}

/* ============================================
   Ripristino bullet arancioni SOLO per 
   le liste stile Vascainn
============================================ */
.vscn-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.vscn-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.vscn-list li::before {
  content: "•";
  color: #FF7A30;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* ============================================
   Regione “Dove Operiamo”
============================================ */
.vscn-location-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.vscn-location-list li {
  list-style: none !important;
  padding-left: 0 !important;
}
