/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header.double-line {
    padding: 110px 0 30px;
}  

.page-header h1 {
    position: relative; /* Fondamentale */
    display: inline-block;
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.page-header.large-header p {
    max-width: 1100px;
}

.page-badge {
    position: absolute;        /* Sgancialo dal flusso del testo */
    top: 130px;                /* Sposta in ALTO (valori negativi salgono) */
    right: 240px;              /* Sposta a DESTRA (fuori dal testo) */
    
    /* Il tuo stile visivo preferito */
    font-size: 0.3em;
    background-color: #e6f7ed; 
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;       /* Mai a capo */
}

/* MOBILE (Mantiene il comportamento che ti piaceva: sotto e centrato) */
@media (max-width: 768px) {
    .page-header h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;           /* Su mobile occupa tutto */
    }

    .page-badge {
        position: static;      /* Resetta absolute -> torna nel flusso */
        margin-top: 10px;      /* Spazio dal titolo */
        margin-left: 0;
        right: auto;           /* Resetta right */
        top: auto;             /* Resetta top */
    }
}

/* Ottimizzazione Mobile */
@media (max-width: 600px) {
    .page-header h1 {
        display: flex;             /* Passiamo a Flex su mobile per gestire il wrap */
        flex-direction: column;    /* Badge SOTTO il titolo */
        align-items: center;       /* Tutto centrato */
        gap: 8px;
    }

    .page-badge {
        margin-left: 0;           /* Togli margine sinistro (perché ora è sotto) */
        transform: none;          /* Reset dello spostamento verticale */
        font-size: 0.4em;         /* Leggermente più grande su mobile per leggibilità */
    }
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background: #f0fdf4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #16a34a;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-box {
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #22c55e;
}

.services-cta {
    text-align: center;
}

/* Additional Services */
.additional-services {
    padding: 60px 0;
    background: white;
}

/* CTA Section */
.cta-section {
    background: #16a34a;
    color: white;
    padding: 40px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BMI Info */
.bmi-info {
    margin-top: 3rem;
}

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

.bmi-categories {
    margin: 2rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.category-item {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.category-item.underweight {
    background: #e0f2fe;
    border-left-color: #0284c7;
}

.category-item.normal {
    background: #dcfce7;
    border-left-color: #16a34a;
}

.category-item.overweight {
    background: #fef3c7;
    border-left-color: #d97706;
}

.category-item.obese {
    background: #fee2e2;
    border-left-color: #dc2626;
}

.category-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.bmi-disclaimer {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #16a34a;
    margin-top: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bmi-disclaimer a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bmi-disclaimer a:hover {
    color: #15803d;
    text-decoration: underline;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
}

.blog-category {
    background: #16a34a;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: auto;
}

/* Newsletter */
.newsletter-section {
    background: #f0fdf4;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-content h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #16a34a;
}

/* Active Navigation Link */
.nav-link.active {
    color: #16a34a;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta.active {
    background: #16a34a;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(17 24 39);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #16a34a;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.navbar.notready {
    opacity: 0;
    transition: opacity 0.15s;
    min-height: 80px;
}

.navbar.ready {
    opacity: 1;
    min-height: 0;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

.logo-text h3 {
    color: #16a34a;
    margin: 0;
    margin-bottom: -5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-text span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
        text-align: left;
        width: 100%;
        display: block;
    }
    
    .nav-cta {
        margin: 1rem 2rem;
        text-align: center;
        display: block;
        width: calc(100% - 4rem);
    }
}

.nav-link {
    text-decoration: none;
    color: rgb(55 65 81);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.75rem;
}

.nav-link:hover {
    color: #16a34a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #22c55e;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    background: none;
    border: none;
    padding: 5px;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #16a34a;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: #16a34a !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.hero-text p a {
    color: #16a34a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-text p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-text .hero-small {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-landing-image img {
    width: 500px;
    height: 680px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-weight: 500;
}

.hero-link-locations {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
}

.hero-link-locations::before {
  content: "→ ";
  font-size: 1rem;
}

.hero-link-locations:hover {
  color: #15803d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-primary-light {
    background: #22c55e;
    color: white;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary-light:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #16a34a;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: white;
    transform: none !important;
}

/* CTA section buttons */

.cta-section .btn-primary {
    background: #22c55e;
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    background: #0b923c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.cta-section .btn-secondary {
    background: #22c55e;
    color: white;
    border: none;
}

.cta-section .btn-secondary:hover {
    background: #0b923c;
    color: white;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline {
    background: transparent;
    color: #16a34a;
    border: 2px solid #22c55e;
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: #22c55e;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Locations Section */

.locations-section {
  background: #ffffff;
  padding: 40px 0;
}

.locations-section .locations-title,
.locations-section .locations-intro {
  text-align: center;
}

.locations-section .locations-intro {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.locations-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.locations-links a {
  color: #16a34a;
  font-weight: 500;
  text-decoration: none;
}

.locations-links a:hover {
  text-decoration: underline;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.location-card {
  display: block;
  padding: 1.5rem;
  border-radius: 16px;
  background: #ffffff;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
}

.locations-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.locations-article-content p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.locations-article-content p a:hover {
    color: #15803d;
    text-decoration: underline;
}

/* Scroll anchor link */

html {
    scroll-padding-top: 60px;
}

/* Dropdown menu */

.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  text-decoration: none;
  color: rgb(55 65 81);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
}

.dropdown-toggle:hover {
  color: #16a34a;
}

.dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 10px;
}

.dropdown-arrow svg {
  display: block;
}

.nav-item-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  margin-top: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(22, 163, 74, 0.1);
}

@media (min-width: 992px) {
  .nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item-dropdown:hover .dropdown-arrow,
  .nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Dropdown Items */
.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
  color: #16a34a;
  border-left-color: #22c55e;
  padding-left: 20px;
}

.dropdown-item:active {
  background: rgba(22, 163, 74, 0.12);
}

/* Dropdown Divider */
.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
  margin: 6px 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f0 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #A7C957;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card:nth-child(2) {
    border-left-color: #FF8C42;
}

.stat-card:nth-child(3) {
    border-left-color: #A7C957;
}

.stat-card:nth-child(4) {
    border-left-color: #FF8C42;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6A994E;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(2) .stat-number {
    color: #FF8C42;
}

.stat-card:nth-child(4) .stat-number {
    color: #FF8C42;
}

.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.stats-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.stats-action {
    font-size: 1.2rem;
    color: #6A994E;
    margin-bottom: 1.5rem;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Stats Section Green */
.stats-section-green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    padding: 36px 0;
    overflow-x: hidden;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.stats-text h2 {
    color: white;
    font-size: 2.25rem;
    line-height: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    hyphens: auto;
}

.stats-highlight {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(220 252 231);
    margin-bottom: 0rem;
    word-wrap: break-word;
}

.stats-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    word-wrap: break-word;
}

.stats-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    word-wrap: break-word;
}

.stats-visual {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item-clean {
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 90px;
}

.stat-item-clean:hover {
    transform: translateY(-3px);
}

.stat-item-clean .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.stat-item-clean .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    line-height: 1.2;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item-clean .stat-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    word-wrap: break-word;
}

/* Services Section */

.services-section.bg-bianco {
    background-color: #ffffff;
    padding: 50px 0 50px 0;
}

.services-section.bg-verdino {
    background-color: #f0fdf4;
    padding: 50px 0 50px 0;
}

.services-section.bg-verdino p:last-of-type {
    margin-bottom: 2rem; 
}

.services-section p {
    max-width: 1150px;
    font-size: 1rem;
    margin: 0 auto;
    line-height: 1.6;
    color: #666;
    text-align: left;
    padding-bottom: 1rem;
}

.services-section h3 {
    color: #16a34a;
    margin: -1.5rem 0 0.6rem 0;
    font-size: 2.2rem;
    text-align: center;
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #16a34a;
    transition: all 0.3s ease;
}

.service-item a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item a:hover {
    color: #15803d;
    text-decoration: underline;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: #16a34a;
    margin: 0;
    font-size: 1.3rem;
}

.service-price {
    background: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-item ul {
    list-style: none;
    margin: 1rem 0;
}

.service-item li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #666;
}

.service-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.service-duration {
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-duration a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-duration a:hover {
    color: #15803d;
    text-decoration: underline;
}

.services-cta-spaced {
    text-align: center;
    margin-top: 3rem;
}

.services-cta-spaced p {
    text-align: center;
    padding-bottom: 0rem;
}


/* About Section */
.about-section {
    background: white;
    padding: 50px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-article-section {
    background: white;
    padding: 10px 0;
}

.about-article-content {
    max-width: 1160px;
    margin: 0 auto;
}

.about-article-content p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-article-content p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text .philosophy-section:last-child {
    margin-bottom: 0;
}

.about-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem; 
}

.about-cta p {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-cta p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.about-buttons {
    display: flex;
    gap:1.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.philosophy-box {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #16a34a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.specializations {
    margin: 1.5rem 0;
}

.specializations-section {
    padding: 0px 0;
    margin: 2rem 0;
}

.specializations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.specializations-column {
    flex: 1;
}

.specializations-list {
    list-style: none;
    margin-top: 1rem;
}

.specializations-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.specializations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.credentials {
    font-style: italic;
    color: #16a34a;
    font-weight: 500;
    margin: 1.5rem 0;
    margin-top: 0;
}

.credentials-footer {
    font-style: italic;
    color: #16a34a;
    font-weight: 500;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Services Detailed */
.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #16a34a;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-price {
    background: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-item ul {
    list-style: none;
    margin-top: 1rem;
}

.service-item li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #666;
}

.service-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.process-steps a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.process-steps a:hover {
    color: #15803d;
    text-decoration: underline;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.tools-section {
    background: #f8fffe;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Specific Services Section */

.specific-section {
    background: white;
    padding: 50px 0;
}

.specific-content {
    display: grid;
    gap: 4rem;
    align-items: stretch;
}

.specific-article-section {
    background: white;
    padding: 10px 0;
}

.specific-article-content {
    max-width: 1160px;
    margin: 0 auto;
}

.specific-article-content p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.specific-article-content p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.specific-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
}

.specific-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.specific-text {
    display: flex;
    flex-direction: column;
}

.specific-text .philosophy-section:last-child {
    margin-bottom: 0;
}

.specific-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem; 
}

.specific-cta p {
    max-width: 800px;
    margin: 0 auto;
}

.specific-cta p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.specific-cta p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.specific-buttons {
    display: flex;
    gap:1.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.philosophy-box {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #16a34a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.specializations {
    margin: 1.5rem 0;
}

.specializations-section {
    padding: 0px 0;
    margin: 2rem 0;
}

.specializations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.specializations-column {
    flex: 1;
}

.specializations-list {
    list-style: none;
    margin-top: 1rem;
}

.specializations-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.specializations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* FAQ Styles */
.faq-section {
    margin-top: 3rem;
    padding-top: 0;
}

.faq-items {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #16a34a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e3feec;
}

.faq-question h4 {
    margin: 0;
    color: #16a34a;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #16a34a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #15803d;
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 1.5rem 1.5rem;
    max-height: 600px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* FAQ Landing */
.landing-faq-section {
    background-color: #f0fdf4;
    padding: 4rem 0;
    margin-top: 0;
}

.landing-faq-section .faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #16a34a;
    margin-bottom: 0rem;
}

.landing-faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.landing-faq-item.active .faq-answer {
    padding: 1.5rem 1.5rem 1.5rem;
    max-height: 600px;
}

.landing-faq-section .faq-question:hover {
    background-color: #e3feec;
}


/* Transformations Styles */
.transformations-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f0f0f0;
}

.transformations-section h3 {
    text-align: center;
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.transformations-section p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

.transformation-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.before-after-container {
    position: relative;
    margin-bottom: 1rem;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.image-label {
    position: absolute;
    top: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.before-image .image-label {
    right: 10px;
}

.after-image .image-label {
    left: 10px;
}

.slider {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.transformation-card p {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
}

.transformation-card strong {
    color: #6A994E;
    font-size: 1rem;
}

/* BMI Calculator Styles */
.bmi-section {
    background: #f0fdf4;
    padding: 50px 0;
}

.bmi-calculator {
    max-width: 800px;
    margin: 0 auto;
}

.bmi-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.bmi-button-container {
    text-align: center;
    margin-top: 2rem;
}

.bmi-result {
    margin-top: 2rem;
}

.result-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    border-left: 4px solid #16a34a;
}

.result-box.normal {
    border-left-color: #28a745;
}

.result-box.normal .bmi-value,
.result-box.normal .bmi-status {
    color: #28a745;
}

.result-box.overweight {
    border-left-color: #ffc107;
}

.result-box.overweight .bmi-value,
.result-box.overweight .bmi-status {
    color: #ffc107;
}

.result-box.obese {
    border-left-color: #dc3545;
}

.result-box.obese .bmi-value,
.result-box.obese .bmi-status {
    color: #dc3545;
}

.result-box.obese-1 {
    border-left-color: #f59e0b;
}

.result-box.obese-1 .bmi-value,
.result-box.obese-1 .bmi-status {
    color: #d97706;
}

.result-box.obese-2 {
    border-left-color: #dc2626;
}

.result-box.obese-2 .bmi-value,
.result-box.obese-2 .bmi-status {
    color: #dc2626;
}

.result-box.obese-3 {
    background: #7f1d1d;
    border-left-color: #450a0a;
}

.result-box.obese-3 .bmi-value,
.result-box.obese-3 .bmi-status {
    color: #fca5a5;
}

.result-box.obese-3 .bmi-description {
    color: #f3f4f6;
}

.result-box.underweight {
    border-left-color: #17a2b8;
}

.result-box.underweight .bmi-value,
.result-box.underweight .bmi-status {
    color: #17a2b8;
}

.bmi-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #16a34a;
}

.bmi-status {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #16a34a;
}

.bmi-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bmi-cta {
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.success-message h4 {
    margin-bottom: 0.5rem;
    color: #155724;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label > span,
.checkbox-label > div {
    flex: 1;
}

.checkbox-label a {
    color: #6A994E;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #A7C957;
}

/* Calendly Section */
.calendly-section {
    background: rgba(167, 201, 87, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.calendly-section h3 {
    color: #6A994E;
    margin-bottom: 1rem;
}

.calendly-section p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Reviews */
.reviews-section {
    background: #f0fdf4;
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-author {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.review-author strong {
    color: #16a34a;
    font-size: 1.1rem;
}

.review-author span {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 0;
    color: #666;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    position: relative; 
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.blog-card:hover .blog-link {
    color: #22c55e;
}

.blog-card:hover .blog-link::after { 
    transform: translateX(3px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.blog-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-link::after {
    content: '→';
    transition: transform 0.3s ease;
}


/* Blog Article */

.blog-article-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-article-content ul, .blog-article-content ul.list-disc {
    padding-left: 1.5rem;
    margin-left: 0;
}

.blog-article-content ul {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.blog-article-content li {
    margin-bottom: 0.7rem;
    color: #555;
}

.blog-article-content h2 {
  margin-bottom: 1.2rem;
}

.info-box {
    background: #d1fae5;
    border-left: 6px solid #22c55e;
    border-radius: 6px;
    padding: 1em 1.5em;
    margin: 2em 0;
    color: #065f46;
    font-style: italic;
}

.blog-article-content blockquote {
    border-left: 4px solid #16a34a;
    padding-left: 1rem;
    margin: 2em 0;
    font-style: italic;
    color: #166534;
}

.blog-article-content img {
    max-width: 100%;
     border-radius: 12px;
    display: block;
    margin: 2em auto;
    box-shadow: 0 6px 18px rgba(16,179,50,0.08);
}

/* Blog Pagination */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s;
}

.page-link:hover {
    background-color: #f0fdf4;
    border-color: #22c55e;
    color: #15803d;
}

.page-link.active {
    background-color: #22c55e;
    color: white;
    border-color: #22c55e;
}

.page-dots {
    padding: 8px 12px;
    color: #666;
    font-weight: bold;
}


/* --- Paginazione Base --- */
.page-link .mobile-arrow {
    display: none;
}

.page-link .desktop-text {
    display: inline; 
}

/* Share article buttons */

.share-buttons {
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.share-buttons p {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #555;
}

.btn-share {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-share:hover {
    opacity: 0.8;
}

.btn-fb { background-color: #1877f2; }
.btn-li { background-color: #0077b5; }
.btn-wa { background-color: #25d366; }

/* Locations */

.locations-article-content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.locations-article-content ul, .locations-article-content ul.list-disc {
    padding-left: 1.5rem;
    margin-left: 0;
    list-style-position: inside;
}

.locations-article-content ul li {
    margin-bottom: 0.7em;
}

.locations-article-content h2 {
  margin-bottom: 1.2rem;
}

.location-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem; 
}

.location-cta p {
    max-width: 800px;
    margin: 0 auto;
}

.location-cta p a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-cta p a:hover {
    color: #15803d;
    text-decoration: underline;
}

.location-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Booking & Contact */
.booking-section {
    background: #16a34a;
    color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.booking-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.info-icon {
    color: white;
    font-size: 1.2rem;
    min-width: 24px;
}

.info-item strong {
    color: white;
    min-width: 80px;
}

.info-item span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.calendly-title {
    color: white !important;
}

.booking-note {
    font-style: italic;
    color: #22c55e;
    margin-top: 2rem;
}

.booking-form {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #16a34a;
}

.booking-form p {
    text-align: center;
}

/* Carosello recensioni booking form--- */
.booking-trust {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.5rem; 
    padding-bottom: 0rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-carousel {
    position: relative;
    height: 110px;
    overflow: hidden;
}

.trust-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeSlide 12s infinite; /* Durata totale slide */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

/* Ritardi slide */
.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 4s; }
.slide-3 { animation-delay: 8s; }

.booking-trust .trust-quote {
    font-style: italic;
    color: #166534; 
    font-size: 1rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    padding: 0 0.5rem;
}

.booking-trust .trust-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
}

.booking-trust .trust-author {
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 5px;
}

.booking-trust .trust-footer {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #444;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.8rem;
    margin-bottom: 0;
    padding-bottom: 0.7rem;
}

/* Animazione */
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(10px); }
    5% { opacity: 1; transform: translateY(0); }
    33% { opacity: 1; transform: translateY(0); }
    38% { opacity: 0; transform: translateY(-5px); }
    100% { opacity: 0; transform: translateY(-5px); }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 15px;
    border-left: 4px solid #16a34a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-item a {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #15803d;
    text-decoration: underline;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.map-section h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.map-section .map-container {
    margin-top: 1.5rem;
}

.map-section .map-container iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Forms */
.contact-form {
    display: grid;
    gap: 1rem;
}

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

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

/* Full width form row */
.form-row.full-width {
    grid-template-columns: 1fr !important;
}

.form-section {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #16a34a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #16a34a;
}

label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 2px solid #16a34a;
    border-color: #16a34a;
    box-shadow: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.footer-description,
.footer-credentials {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    margin-left: 60px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Colore specifico per link nel footer-description */
.footer-description a {
    border-bottom: 1px solid currentColor;
    padding-bottom: 0,5px;
}

.footer-section a:hover {
    color: #22c55e;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 2rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Legal Pages Styles */
.privacy-section,
.cookie-section,
.terms-section {
    padding: 60px 0;
    background: white;
}

.privacy-content,
.cookie-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro,
.cookie-intro,
.terms-intro {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #16a34a;
    margin-bottom: 3rem;
}

.privacy-section-item,
.cookie-section-item,
.terms-section-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.privacy-section-item:last-child,
.cookie-section-item:last-child,
.terms-section-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-section-item h3,
.cookie-section-item h3,
.terms-section-item h3 {
    color: #16a34a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-section-item h4,
.cookie-section-item h4,
.terms-section-item h4 {
    color: #16a34a;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.1rem;
}

.privacy-section-item ul,
.cookie-section-item ul,
.terms-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section-item li,
.cookie-section-item li,
.terms-section-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section-item a,
.cookie-section-item a,
.terms-section-item a {
    color: #16a34a;
    text-decoration: underline;
}

.privacy-section-item a:hover,
.cookie-section-item a:hover,
.terms-section-item a:hover {
    color: #22c55e;
}

.privacy-section-item strong,
.cookie-section-item strong,
.terms-section-item strong {
    color: #333;
    font-weight: 600;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Remove focus outline for buttons and links */
button:focus,
a:focus,
.nav-link:focus,
.nav-cta:focus {
    outline: none;
    box-shadow: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0;
}
.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.back-to-top:hover {
    background: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Whatsapp button */
.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 25px;
  left: 27px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: whatsappBounce 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}

@keyframes whatsappBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}


/* ============================================
   COOKIE CONSENT BANNER - GDPR COMPLIANT
   ============================================ */

/* Cookie Banner Base */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: #16a34a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.90rem;
}

.cookie-text a {
    color: #16a34a;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-buttons button:not(.cookie-settings) {
    border: none;
}

.cookie-accept {
    background: #16a34a;
    color: white;
}

.cookie-accept:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.cookie-settings {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.cookie-settings:hover {
    background: #16a34a;
    color: white;
}

.cookie-reject {
    background: #e5e5e5;
    color: #333;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

/* Cookie Modal - BASE OTTIMIZZATO */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 20px;
    margin: 0;
    color: #2c3e50;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f5f5f5;
    color: #333;
}

.cookie-modal-body {
    padding: 20px 24px 12px 24px;
}

.cookie-category {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.cookie-category-title h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: #2c3e50;
}

.cookie-category p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cookie-modal-footer {
    padding: 16px 24px 20px 24px;
    border-top: 1px solid #eee;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider-switch {
    background-color: #16a34a;
}

input:checked + .slider-switch:before {
    transform: translateX(24px);
}

input:disabled + .slider-switch {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Badges */
.badge-required,
.badge-optional {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-required {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-optional {
    background: #f5f5f5;
    color: #777;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-save-prefs {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-save-prefs:hover {
    background: #16a34a;
    color: white;
}

.btn-accept-all-modal {
    background: #16a34a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept-all-modal:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-necessary-only-modal {
  background: #e5e5e5;
  color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-necessary-only-modal:hover {
  background: #d0d0d0;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer button {
        width: 100%;
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer button {
        width: 100%;
    }
}

