/* Padding top per pagina */
body {
  padding-top: 75px !important;
}

@media (max-width: 991px) {
  body {
    padding-top: 75px !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 65px !important;
  }
}

/* Stili specifici per la pagina Servizi con Icone */

:root {
  --orange-primary: #F28C2A;
  --orange-accent: #f3bc86ff;
  --orange-hover: #FF9933;
  --blue-primary: #0b3c8c;
  --blue-hover: #0052A3;
}

/* ===== SECTION SPACER ===== */
.section-spacer {
  background: linear-gradient(180deg, #fff 0%, #f3bc86ff 100%);
  min-height: 80px;
  position: relative;
}

.section-spacer-reverse {
  background: linear-gradient(180deg, #fff 0%, #f3bc86ff 100%);
  min-height: 120px;
  position: relative;
}

/* ===== VANTAGGI SECTION ===== */
#vantaggi-section {
  background: #fff;
  padding: 60px 0 80px 0;
  position: relative;
}

#vantaggi-section .section-title {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw + .3rem, 2.8rem);
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -.005em;
  text-align: center;
}

#vantaggi-section .section-subtitle {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  margin: 0 0 3rem 0;
  text-align: center;
  font-weight: 500;
}

/* Category Headers */
.vantaggio-category-header {
  text-align: center;
  margin: 50px 0 35px 0;
}

.vantaggio-category-header:first-child {
  margin-top: 0;
}

.vantaggio-category-title {
  color: var(--orange-primary);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.vantaggio-category-title.blue {
  color: var(--blue-primary);
}

.vantaggio-category-description {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

/* ===== VANTAGGIO ICON CARDS ===== */
.vantaggio-icon-card {
  text-align: center;
  padding: 25px 15px;
  transition: none;
  border-radius: 12px;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}

.vantaggio-icon-card:hover {
  transform: translateY(-5px);
  background: rgba(242, 140, 42, 0.05);
}

.vantaggio-icon-card.blue-category:hover {
  background: rgba(11, 60, 140, 0.05);
}

.vantaggio-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  box-shadow: 0 8px 25px rgba(242, 140, 42, 0.25);
}

.vantaggio-icon-card:hover .vantaggio-icon-wrapper {

  transform: scale(1.08);

  box-shadow: 0 12px 35px rgba(242, 140, 42, 0.35);

}

.vantaggio-icon-wrapper.blue {

  background: var(--blue-primary);

  box-shadow: 0 8px 25px rgba(11, 60, 140, 0.25);

}

.vantaggio-icon-card:hover .vantaggio-icon-wrapper.blue {

  box-shadow: 0 12px 35px rgba(11, 60, 140, 0.35);

}

.vantaggio-icon-wrapper i {

  font-size: 50px;

  color: #fff;

}

.vantaggio-icon-title {

  color: var(--blue-primary);

  font-size: 0.95rem;

  font-weight: 700;

  margin: 0;

  line-height: 1.4;

  min-height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}

/* ===== VANTAGGIO BOXES (like original page) ===== */

.vantaggio-box {

  background: #fff;

  border-radius: 20px;

  margin-bottom: 32px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: none;

  position: relative;

  cursor: pointer;

  min-height: 200px;

  display: flex;

  flex-direction: column;

}

.vantaggio-box:hover {

  box-shadow: 0 12px 35px rgba(11, 60, 140, 0.15);

  transform: translateY(-4px);

}

/* Background images for cards */

.vantaggio-box::before {

  content: '';

  position: absolute;

  inset: 0;

  z-index: 0;

  background-image: url('<?php echo esc_url("$theme_uri/assets/images/table4.png"); ?>');

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  border-radius: 20px;

  opacity: 1;

}

.vantaggio-box.blue::before {

  background-image: url('<?php echo esc_url("$theme_uri/assets/images/table5.png"); ?>');

}

/* Header of the card */

.vantaggio-box-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 36px 32px;

  cursor: pointer;

  position: relative;

  z-index: 2;

  min-height: 200px;

}

.vantaggio-box-info {

  flex: 1;

  position: relative;

  z-index: 2;

}

.vantaggio-box-title {

  color: #fff;

  font-size: 1.3rem;

  font-weight: 800;

  margin: 0 0 12px 0;

  letter-spacing: 0.02em;

  position: relative;

  z-index: 2;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);

}

.vantaggio-box-subtitle {

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.95rem;

  margin: 0;

  font-weight: 500;

  position: relative;

  z-index: 2;

  line-height: 1.5;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);

}

/* Plus icon to open popup */

.vantaggio-toggle {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: none;

  border: 2px solid rgba(255, 255, 255, 0.3);

  flex-shrink: 0;

  position: relative;

  z-index: 2;

}

.vantaggio-toggle:hover {

  background: rgba(255, 255, 255, 0.35);

  border-color: rgba(255, 255, 255, 0.5);

  transform: scale(1.1);

}

.vantaggio-toggle i {

  color: #fff;

  font-size: 20px;

}

/* ===== POPUP MODALE ===== */

.vantaggio-modal {

  display: none;

  position: fixed;

  inset: 0;

  z-index: 9999;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(4px);

  align-items: center;

  justify-content: center;

  padding: 20px;

  animation: fadeIn 0.3s ease;

}

.vantaggio-modal.active {

  display: flex;

}

@keyframes fadeIn {

  from {

    opacity: 0;

  }

  to {

    opacity: 1;

  }

}

@keyframes slideUp {

  from {

    opacity: 0;

    transform: translateY(30px) scale(0.95);

  }

  to {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}

.vantaggio-modal-content {

  background: #fff;

  border-radius: 12px;

  max-width: 1000px;

  width: 100%;

  max-height: 90vh;

  overflow-y: auto;

  position: relative;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  animation: slideUp 0.4s ease;

  display: flex;

  flex-direction: column;

}

/* Pulsante chiusura X */

.modal-close {

  position: absolute;

  top: 20px;

  right: 20px;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);

  border: 2px solid rgba(0, 0, 0, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: none;

  z-index: 10;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.modal-close:hover {

  background: #fff;

  border-color: var(--blue-primary);

  transform: rotate(90deg);

}

.modal-close i {

  font-size: 20px;

  color: #333;

}

.modal-close:hover i {

  color: var(--blue-primary);

}

/* Header del modal */

.modal-header {

  position: relative;

  padding: 28px 40px 22px 40px;

  background: linear-gradient(135deg, var(--orange-primary) 0%, #FFAA55 100%);

  border-radius: 12px 12px 0 0;

  flex-shrink: 0;

}

.modal-header.blue {

  background: linear-gradient(135deg, var(--blue-primary) 0%, #3399FF 100%);

}

.modal-title {

  color: #fff;

  font-size: 1.5rem;

  font-weight: 800;

  margin: 0 0 8px 0;

  letter-spacing: 0.02em;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  padding-right: 50px;

  line-height: 1.3;

}

.modal-subtitle {

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.92rem;

  margin: 0;

  font-weight: 500;

  line-height: 1.4;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);

}

/* Body del modal */

.modal-body {

  padding: 28px 40px;

  flex: 1;

  overflow-y: auto;

}

/* Modal Icon Cards */

.modal-vantaggio-icon-card {

  text-align: center;

  padding: 20px 10px;

  margin-bottom: 20px;

}

.modal-vantaggio-icon-wrapper {

  width: 80px;

  height: 80px;

  margin: 0 auto 12px auto;

  border-radius: 50%;

  background: var(--orange-primary);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 6px 20px rgba(242, 140, 42, 0.25);

}

.modal-vantaggio-icon-wrapper.blue {

  background: var(--blue-primary);

  box-shadow: 0 6px 20px rgba(11, 60, 140, 0.25);

}

.modal-vantaggio-icon-wrapper i {

  font-size: 36px;

  color: #fff;

}

.modal-vantaggio-icon-title {

  color: var(--blue-primary);

  font-size: 0.85rem;

  font-weight: 700;

  margin: 0;

  line-height: 1.3;

  min-height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}

/* Responsive */

@media (max-width: 768px) {

  #servizi-section {

    padding: 40px 0 60px 0;

  }

  .unified-main-box {

    margin-bottom: 15px;

  }

  .unified-box-header {

    padding: 24px 20px;

    min-height: 160px;

  }

  .unified-box-title {

    font-size: 1.1rem;

  }

  .unified-box-subtitle {

    font-size: 0.88rem;

  }

  .vantaggio-modal-content,

  .service-modal-content {

    max-width: 95%;

    max-height: 92vh;

    border-radius: 8px;

  }

  .modal-header {

    padding: 22px 20px 18px 20px;

    border-radius: 8px 8px 0 0;

  }

  .modal-title {

    font-size: 1.25rem;

    margin-bottom: 6px;

  }

  .modal-subtitle {

    font-size: 0.85rem;

  }

  .modal-body {

    padding: 20px;

  }

  .modal-service-icon-card,

  .modal-vantaggio-icon-card {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 14px;

    margin-bottom: 14px;

    background: rgba(242, 140, 42, 0.08);

    border-radius: 10px;

    border-left: 3px solid var(--orange-primary);

    box-shadow: 0 3px 10px rgba(242, 140, 42, 0.15);

  }

  .modal-service-icon-card:hover,

  .modal-vantaggio-icon-card:hover {

    box-shadow: 0 6px 16px rgba(242, 140, 42, 0.25);

  }

  .modal-service-icon-card.blue-category,

  .modal-vantaggio-icon-card.blue-category {

    background: rgba(11, 60, 140, 0.08);

    border-left-color: var(--blue-primary);

    box-shadow: 0 3px 10px rgba(11, 60, 140, 0.15);

  }

  .modal-service-icon-card.blue-category:hover,

  .modal-vantaggio-icon-card.blue-category:hover {

    box-shadow: 0 6px 16px rgba(11, 60, 140, 0.25);

  }

  .modal-service-icon-wrapper,

  .modal-vantaggio-icon-wrapper {

    width: 56px;

    height: 56px;

    min-width: 56px;

    margin: 0;

    border-radius: 50%;

    flex-shrink: 0;

  }

  .modal-service-icon-wrapper i,

  .modal-vantaggio-icon-wrapper i {

    font-size: 28px;

  }

  .modal-service-icon-title,

  .modal-vantaggio-icon-title {

    font-size: 0.78rem;

    text-align: left;

    flex: 1;

    line-height: 1.25;

  }

  .modal-close {

    top: 12px;

    right: 12px;

    width: 34px;

    height: 34px;

  }

  .modal-close i {

    font-size: 16px;

  }

  #servizi-section .section-title {

    font-size: 1.8rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 576px) {

  .vantaggio-icon-wrapper {

    width: 90px;

    height: 90px;

  }

  .vantaggio-icon-wrapper i {

    font-size: 38px;

  }

}

/* ===== SERVICES SECTION ===== */

#servizi-section {

  background: #fff;

  padding: 60px 0 80px 0;

  position: relative;

}

#servizi-section .section-title {

  color: var(--brand-primary);

  font-weight: 700;

  font-size: clamp(1.8rem, 3vw + .3rem, 2.8rem);

  line-height: 1.2;

  margin: 0 0 1rem 0;

  letter-spacing: -.005em;

  text-align: center;

}

#servizi-section .section-subtitle {

  color: #475569;

  font-size: clamp(1rem, 2vw, 1.2rem);

  line-height: 1.5;

  margin: 0 0 3rem 0;

  text-align: center;

  font-weight: 500;

}

/* Category Headers */

.service-category-header {

  text-align: center;

  margin: 50px 0 35px 0;

}

.service-category-header:first-child {

  margin-top: 0;

}

.service-category-title {

  color: var(--orange-primary);

  font-weight: 800;

  font-size: clamp(1.5rem, 2.5vw, 2rem);

  margin-bottom: 8px;

  letter-spacing: 0.01em;

}

.service-category-title.blue {

  color: var(--blue-primary);

}

.service-category-description {

  color: #64748b;

  font-size: 1rem;

  font-weight: 500;

}

/* ===== SERVICE ICON CARDS ===== */

.service-icon-card {

  text-align: center;

  padding: 25px 15px;

  transition: none;

  border-radius: 12px;

  margin-bottom: 30px;

  position: relative;

  cursor: pointer;

}

.service-icon-card:hover {

  transform: translateY(-5px);

  background: rgba(242, 140, 42, 0.05);

}

.service-icon-card.blue-category:hover {

  background: rgba(11, 60, 140, 0.05);

}

.service-icon-wrapper {

  width: 120px;

  height: 120px;

  margin: 0 auto 20px auto;

  border-radius: 50%;

  background: var(--orange-primary);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: none;

  box-shadow: 0 8px 25px rgba(242, 140, 42, 0.25);

}

.service-icon-card:hover .service-icon-wrapper {

  transform: scale(1.08);

  box-shadow: 0 12px 35px rgba(242, 140, 42, 0.35);

}

.service-icon-wrapper.blue {

  background: var(--blue-primary);

  box-shadow: 0 8px 25px rgba(11, 60, 140, 0.25);

}

.service-icon-card:hover .service-icon-wrapper.blue {

  box-shadow: 0 12px 35px rgba(11, 60, 140, 0.35);

}

.service-icon-wrapper i {

  font-size: 50px;

  color: #fff;

}

.service-icon-title {

  color: var(--blue-primary);

  font-size: 0.95rem;

  font-weight: 700;

  margin: 0;

  line-height: 1.4;

  min-height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

}

/* ===== SERVICE BOXES (like original page) ===== */

.service-box {

  background: #fff;

  border-radius: 20px;

  margin-bottom: 32px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: none;

  position: relative;

  cursor: pointer;

  min-height: 200px;

  display: flex;

  flex-direction: column;

}

.service-box:hover {

  box-shadow: 0 12px 35px rgba(11, 60, 140, 0.15);

  transform: translateY(-4px);

}

/* Background images for cards */

.service-box::before {

  content: '';

  position: absolute;

  inset: 0;

  z-index: 0;

  background-image: url('<?php echo esc_url("$theme_uri/assets/images/table4.png"); ?>');

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  border-radius: 20px;

  opacity: 1;

}

.service-box.blue::before {

  background-image: url('<?php echo esc_url("$theme_uri/assets/images/table5.png"); ?>');

}

/* Header of the card */

.service-box-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 36px 32px;

  cursor: pointer;

  position: relative;

  z-index: 2;

  min-height: 200px;

}

.service-box-info {

  flex: 1;

  position: relative;

  z-index: 2;

}

.service-box-title {

  color: #fff;

  font-size: 1.3rem;

  font-weight: 800;

  margin: 0 0 12px 0;

  letter-spacing: 0.02em;

  position: relative;

  z-index: 2;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);

}

.service-box-subtitle {

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.95rem;

  margin: 0;

  font-weight: 500;

  position: relative;

  z-index: 2;

  line-height: 1.5;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);

}

/* Plus icon to open popup */

.service-toggle {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: none;

  border: 2px solid rgba(255, 255, 255, 0.3);

  flex-shrink: 0;

  position: relative;

  z-index: 2;

}

.service-toggle:hover {

  background: rgba(255, 255, 255, 0.35);

  border-color: rgba(255, 255, 255, 0.5);

  transform: scale(1.1);

}

.service-toggle i {

  color: #fff;

  font-size: 20px;

}

/* ===== UNIFIED MAIN BOXES (Services + Advantages) ===== */

.unified-main-box {

  background: transparent;

  border-radius: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: none;

  position: relative;

  cursor: pointer;

  min-height: 200px;

  display: flex;

  flex-direction: column;

}

.unified-main-box:hover {

  box-shadow: 0 12px 35px rgba(242, 140, 42, 0.15);

  transform: translateY(-4px);

}

/* Background images for cards */

.unified-main-box::before {

  content: '';

  position: absolute;

  inset: 0;

  z-index: 0;

  background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-primary) 100%);

  border-radius: 20px;

  opacity: 1;

}

.unified-main-box.blue::before {

  background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-primary) 100%);

}

/* Header of the card */

.unified-box-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 36px 32px;

  cursor: pointer;

  position: relative;

  z-index: 2;

  min-height: 200px;

}

.unified-box-info {

  flex: 1;

  position: relative;

  z-index: 2;

}

.unified-box-title {

  color: #fff;

  font-size: 1.3rem;

  font-weight: 800;

  margin: 0 0 12px 0;

  letter-spacing: 0.02em;

  position: relative;

  z-index: 2;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);

}

.unified-box-subtitle {

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.95rem;

  margin: 0;

  font-weight: 500;

  position: relative;

  z-index: 2;

  line-height: 1.5;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);

}

/* Plus icon to open popup */

.unified-toggle {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: none;

  border: 2px solid rgba(255, 255, 255, 0.3);

  flex-shrink: 0;

  position: relative;

  z-index: 2;

}

.unified-toggle:hover {

  background: rgba(255, 255, 255, 0.35);

  border-color: rgba(255, 255, 255, 0.5);

  transform: scale(1.1);

}

.unified-toggle i {

  color: #fff;

  font-size: 20px;

}

/* ===== POPUP MODALE ===== */

.vantaggio-modal,

.service-modal {

  display: none;

  position: fixed;

  inset: 0;

  z-index: 9999;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(4px);

  align-items: center;

  justify-content: center;

  padding: 20px;

  animation: fadeIn 0.3s ease;

}

.vantaggio-modal.active,

.service-modal.active {

  display: flex;

}

@keyframes fadeIn {

  from {

    opacity: 0;

  }

  to {

    opacity: 1;

  }

}

@keyframes slideUp {

  from {

    opacity: 0;

    transform: translateY(30px) scale(0.95);

  }

  to {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}

.vantaggio-modal-content,

.service-modal-content {

  background: #fff;

  border-radius: 12px;

  max-width: 1000px;

  width: 100%;

  max-height: 90vh;

  overflow-y: auto;

  position: relative;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  animation: slideUp 0.4s ease;

  display: flex;

  flex-direction: column;

}

/* Pulsante chiusura X */

.modal-close {

  position: absolute;

  top: 20px;

  right: 20px;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);

  border: 2px solid rgba(0, 0, 0, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: none;

  z-index: 10;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.modal-close:hover {

  background: #fff;

  border-color: var(--blue-primary);

  transform: rotate(90deg);

}

.modal-close i {

  font-size: 20px;

  color: #333;

}

.modal-close:hover i {

  color: var(--blue-primary);

}

/* Header del modal */

.modal-header {

  position: relative;

  padding: 28px 40px 22px 40px;

  background: linear-gradient(135deg, var(--orange-primary) 0%, #FFAA55 100%);

  border-radius: 12px 12px 0 0;

  flex-shrink: 0;

}

.modal-header.blue {

  background: linear-gradient(135deg, var(--blue-primary) 0%, #3399FF 100%);

}

.modal-title {

  color: #fff;

  font-size: 1.5rem;

  font-weight: 800;

  margin: 0 0 8px 0;

  letter-spacing: 0.02em;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  padding-right: 50px;

  line-height: 1.3;

}

.modal-subtitle {

  color: rgba(255, 255, 255, 0.95);

  font-size: 0.92rem;

  margin: 0;

  font-weight: 500;

  line-height: 1.4;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);

}

/* Body del modal */

.modal-body {

  padding: 28px 40px;

  flex: 1;

  overflow-y: auto;

}

/* Modal Icon Cards - Unified style */

.modal-service-icon-card,

.modal-vantaggio-icon-card {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 16px;

  margin-bottom: 16px;

  background: rgba(242, 140, 42, 0.08);

  border-radius: 12px;

  border-left: 4px solid var(--orange-primary);

  transition: none;

  box-shadow: 0 4px 12px rgba(242, 140, 42, 0.2);

}

.modal-service-icon-card:hover,

.modal-vantaggio-icon-card:hover {

  background: rgba(242, 140, 42, 0.12);

  transform: translateX(4px);

  box-shadow: 0 8px 20px rgba(242, 140, 42, 0.3);

}

.modal-service-icon-card.blue-category,

.modal-vantaggio-icon-card.blue-category {

  background: rgba(11, 60, 140, 0.08);

  border-left-color: var(--blue-primary);

  box-shadow: 0 4px 12px rgba(11, 60, 140, 0.2);

}

.modal-service-icon-card.blue-category:hover,

.modal-vantaggio-icon-card.blue-category:hover {

  background: rgba(11, 60, 140, 0.12);

  box-shadow: 0 8px 20px rgba(11, 60, 140, 0.3);

}

.modal-service-icon-wrapper,

.modal-vantaggio-icon-wrapper {

  width: 60px;

  height: 60px;

  min-width: 60px;

  border-radius: 50%;

  background: var(--orange-primary);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 6px 20px rgba(242, 140, 42, 0.25);

  flex-shrink: 0;

}

.modal-service-icon-wrapper.blue,

.modal-vantaggio-icon-wrapper.blue {

  background: var(--blue-primary);

  box-shadow: 0 6px 20px rgba(11, 60, 140, 0.25);

}

.modal-service-icon-wrapper i,

.modal-vantaggio-icon-wrapper i {

  font-size: 28px;

  color: #fff;

}

.modal-service-icon-title,

.modal-vantaggio-icon-title {

  color: var(--blue-primary);

  font-size: 0.85rem;

  font-weight: 700;

  margin: 0;

  line-height: 1.3;

  text-align: left;

  flex: 1;

}

/* Modal Icon Cards */

.modal-service-icon-card {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 16px;

  margin-bottom: 16px;

  background: rgba(242, 140, 42, 0.08);

  border-radius: 12px;

  border-left: 4px solid var(--orange-primary);

  transition: none;

  box-shadow: 0 4px 12px rgba(242, 140, 42, 0.2);

}

.modal-service-icon-card:hover {

  background: rgba(242, 140, 42, 0.12);

  transform: translateX(4px);

  box-shadow: 0 8px 20px rgba(242, 140, 42, 0.3);

}

.modal-service-icon-wrapper {

  width: 60px;

  height: 60px;

  min-width: 60px;

  border-radius: 50%;

  background: var(--orange-primary);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 6px 20px rgba(242, 140, 42, 0.25);

  flex-shrink: 0;

}

.modal-service-icon-wrapper.blue {

  background: var(--blue-primary);

  box-shadow: 0 6px 20px rgba(11, 60, 140, 0.25);

}

.modal-service-icon-wrapper i {

  font-size: 28px;

  color: #fff;

}

.modal-service-icon-title {

  color: var(--blue-primary);

  font-size: 0.85rem;

  font-weight: 700;

  margin: 0;

  line-height: 1.3;

  text-align: left;

  flex: 1;

}

/* Responsive */

@media (max-width: 768px) {

  #servizi-section {

    padding: 40px 0 60px 0;

  }

  .service-icon-wrapper {

    width: 100px;

    height: 100px;

    margin-bottom: 15px;

  }

  .service-icon-wrapper i {

    font-size: 42px;

  }

  .service-icon-title {

    font-size: 0.88rem;

    min-height: 38px;

  }

  .service-category-header {

    margin: 35px 0 25px 0;

  }

  .service-icon-card {

    margin-bottom: 20px;

    padding: 20px 10px;

  }

  .service-box {

    margin-bottom: 20px;

  }

  .service-box-header {

    padding: 24px 20px;

    min-height: 160px;

  }

  .service-box-title {

    font-size: 1.1rem;

  }

  .service-box-subtitle {

    font-size: 0.88rem;

  }

  .service-modal-content {

    max-width: 95%;

    max-height: 92vh;

    border-radius: 8px;

  }

  .modal-header {

    padding: 22px 20px 18px 20px;

    border-radius: 8px 8px 0 0;

  }

  .modal-title {

    font-size: 1.25rem;

    margin-bottom: 6px;

  }

  .modal-subtitle {

    font-size: 0.85rem;

  }

  .modal-body {

    padding: 20px;

  }

  .modal-service-icon-card {

    padding: 15px 8px;

    margin-bottom: 15px;

  }

  .modal-service-icon-wrapper {

    width: 70px;

    height: 70px;

    margin-bottom: 10px;

  }

  .modal-service-icon-wrapper i {

    font-size: 32px;

  }

  .modal-service-icon-title {

    font-size: 0.8rem;

    min-height: 32px;

  }

  .modal-close {

    top: 12px;

    right: 12px;

    width: 34px;

    height: 34px;

  }

  .modal-close i {

    font-size: 16px;

  }

}

@media (max-width: 576px) {

  .service-icon-wrapper {

    width: 90px;

    height: 90px;

  }

  .service-icon-wrapper i {

    font-size: 38px;

  }

}