/* ===================================
   SEO ENHANCEMENTS CSS – Villa Sionne
   Stili aggiuntivi per le nuove pagine SEO
=================================== */

/* Trust Bar */
.trust-bar {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Intro Section */
.intro-section {
  padding: 3rem 2rem;
}

.intro-section .container {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  color: white;
}

.intro-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.intro-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #2d5a0e;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Zona Grid */
.zona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.zona-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.2s ease;
}

.zona-card:hover {
  transform: translateY(-3px);
}

.zona-distance {
  display: inline-block;
  background: #7CB342;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.zona-card h3 {
  font-size: 1.2rem;
  color: #2d5a0e;
  margin-bottom: 0.5rem;
}

.zona-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary {
  display: inline-block;
  background: #2d5a0e;
  color: white !important;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
  background: #1a3a08;
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: white !important;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid white;
  transition: background 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.4);
}

.cta-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white !important;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section .container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(45,90,14,0.85);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: white;
}

.cta-section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Map Section */
.map-section {
  padding: 3rem 2rem;
}

.map-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.map-intro {
  background: rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: white;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #7CB342;
  margin: 0;
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card footer {
  color:#fff;
  font-size: 0.9rem;
}

/* FAQ */
.faq-section {
  padding: 3rem 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary h3 {
  font-size: 1rem;
  color: #2d5a0e;
  margin: 0;
  font-weight: 600;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #7CB342;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.2rem;
  color: #444;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* Contact Links */
.contact-link {
  color: #2d5a0e;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Footer NAP */
.footer-nap address {
  font-style: normal;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 2rem;
  background: rgba(0,0,0,0.15);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Section Title */
.section-title {
  text-align: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0,0,0,0.4);
}

.intro-section h2 {
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0,0,0,0.4);
}

.cta-section h2 {
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0,0,0,0.5);
}

.hero-content h1 {
  text-shadow: 3px 4px 14px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0,0,0,0.6);
}

.hero-content p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.65);
}

/* Zona card image */
.zona-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0.5rem 0 0.75rem;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-bar {
    gap: 1rem;
  }
  .intro-section h2 {
    font-size: 1.2rem;
  }
  .intro-section p {
    font-size: 0.9rem;
  }
  .cta-section h2 {
    font-size: 1.2rem;
  }
  .cta-section p {
    font-size: 0.9rem;
  }
  .zona-card h3,
  .service-card h3 {
    font-size: 1rem;
  }
  .zona-card p,
  .service-card p {
    font-size: 0.88rem;
  }
  .zona-card-img {
    height: 140px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .intro-section h2 {
    font-size: 1rem;
  }
  .intro-section p {
    font-size: 0.85rem;
  }
  .cta-section h2 {
    font-size: 1rem;
  }
  .cta-section p {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .zona-card h3,
  .service-card h3 {
    font-size: 0.95rem;
  }
  .zona-card p,
  .service-card p {
    font-size: 0.83rem;
  }
  .zona-distance {
    font-size: 0.75rem;
  }
  .zona-card-img {
    height: 120px;
  }
  .faq-item summary h3 {
    font-size: 0.9rem;
  }
  .faq-item p {
    font-size: 0.85rem;
  }
  .breadcrumb a,
  .breadcrumb span {
    font-size: 0.8rem;
  }
}
