/* =========================================================
   KiReyZen – Centro Olistico | Main Stylesheet
   Tema: Viola/Metafisico | Author: KiReyZen
   ========================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --violet-deepest: #0d0015;
  --violet-deep:    #1a0030;
  --violet-dark:    #2d0050;
  --violet-mid:     #4a0080;
  --violet-main:    #6b00b5;
  --violet-bright:  #8b00e8;
  --violet-light:   #a855f7;
  --violet-pale:    #c084fc;
  --violet-mist:    #e9d5ff;
  --gold:           #d4af37;
  --gold-light:     #f0d060;
  --white:          #ffffff;
  --white-alpha-80: rgba(255,255,255,0.80);
  --white-alpha-60: rgba(255,255,255,0.60);
  --white-alpha-20: rgba(255,255,255,0.20);
  --white-alpha-10: rgba(255,255,255,0.10);
  --text-dark:      #1a0030;
  --text-light:     #f3e8ff;
  --gradient-main:  linear-gradient(135deg, #0d0015 0%, #2d0050 40%, #4a0080 70%, #6b00b5 100%);
  --gradient-card:  linear-gradient(145deg, rgba(107,0,181,0.15) 0%, rgba(26,0,48,0.95) 100%);
  --gradient-hero:  linear-gradient(180deg, rgba(13,0,21,0.3) 0%, rgba(45,0,80,0.6) 60%, rgba(13,0,21,0.85) 100%);
  --shadow-violet:  0 8px 40px rgba(107,0,181,0.4);
  --shadow-gold:    0 4px 20px rgba(212,175,55,0.3);
  --shadow-card:    0 20px 60px rgba(0,0,0,0.5);
  --border-violet:  1px solid rgba(107,0,181,0.3);
  --border-gold:    1px solid rgba(212,175,55,0.4);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --font-heading:   'Cinzel Decorative', serif;
  --font-body:      'Raleway', sans-serif;
  --font-text:      'Lato', sans-serif;
  --transition:     all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast:all 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--violet-deepest);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding { padding: 100px 0; }
.accent { color: var(--violet-pale); }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-eyebrow,
.section-header.light .section-title,
.section-header.light .title-ornament,
.section-header.light .section-subtitle { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--violet-pale);
  margin-bottom: 12px;
  padding: 6px 20px;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 50px;
  background: rgba(107,0,181,0.1);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(168,85,247,0.5);
}

.title-ornament {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--white-alpha-60);
  font-size: 1.05rem;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(26,0,48,0.97), rgba(45,0,80,0.97));
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--violet-bright);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 -10px 40px rgba(107,0,181,0.5);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.cookie-text { flex: 1; font-size: 0.9rem; color: var(--white-alpha-80); }
.cookie-text a { color: var(--violet-pale); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--violet-bright);
  transition: var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: var(--shadow-violet); }
.btn-cookie-reject {
  padding: 10px 24px;
  background: transparent;
  color: var(--white-alpha-60);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--white-alpha-20);
  transition: var(--transition);
}
.btn-cookie-reject:hover { border-color: var(--white-alpha-60); color: white; }

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(13,0,21,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(107,0,181,0.3);
  border-bottom: 1px solid rgba(107,0,181,0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(168,85,247,0.8);
}
.logo-symbol { color: var(--gold); font-size: 1rem; animation: pulse-gold 2s infinite; }
.logo-text { letter-spacing: 0.05em; }
.logo-accent { color: var(--violet-pale); }

@keyframes pulse-gold {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--gold); }
  50% { opacity: 0.7; text-shadow: 0 0 20px var(--gold-light); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-alpha-80);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(107,0,181,0.3);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--violet-pale);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 60%; }

.nav-cta {
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(107,0,181,0.4);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,0,181,0.6);
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-main)) !important;
}
.nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,0,21,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
  animation: dropDown 0.25s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-alpha-80);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.dropdown-menu li a:hover {
  background: rgba(107,0,181,0.3);
  color: white;
  padding-left: 22px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.2) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 120px 2rem 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  background: rgba(212,175,55,0.1);
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.5s both;
}
.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: white;
  text-shadow: 0 0 60px rgba(168,85,247,0.8), 0 0 120px rgba(107,0,181,0.4);
  letter-spacing: 0.05em;
}
.hero-title-main .accent { color: var(--violet-pale); }
.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--violet-pale);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.7s both;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--white-alpha-80);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInDown 1s ease 0.9s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 1.1s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(107,0,181,0.5), 0 0 0 1px rgba(107,0,181,0.3);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(107,0,181,0.7);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.5);
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.5s both;
}
.hero-scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--white-alpha-60);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--violet-pale);
  border-bottom: 2px solid var(--violet-pale);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* =========================================================
   INTRO STRIP
   ========================================================= */
.intro-strip {
  background: linear-gradient(135deg, rgba(107,0,181,0.3), rgba(45,0,80,0.5));
  border-top: 1px solid rgba(107,0,181,0.3);
  border-bottom: 1px solid rgba(107,0,181,0.3);
  padding: 40px 0;
  backdrop-filter: blur(10px);
}
.intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 50px;
  text-align: center;
}
.stat-item i {
  font-size: 1.5rem;
  color: var(--violet-pale);
  margin-bottom: 4px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white-alpha-60);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(107,0,181,0.4);
}

/* =========================================================
   CHI SIAMO
   ========================================================= */
.chi-siamo {
  background: var(--violet-deepest);
  position: relative;
  overflow: hidden;
}
.chi-siamo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,0,181,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.chi-siamo-text .intro-text {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.8;
}
.chi-siamo-text p {
  color: var(--white-alpha-80);
  margin-bottom: 16px;
  line-height: 1.8;
}
.chi-siamo-text em { color: var(--violet-pale); font-style: italic; }
.chi-siamo-text strong { color: var(--violet-pale); }

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(107,0,181,0.15);
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: var(--radius-md);
  color: white;
  font-weight: 600;
  transition: var(--transition);
}
.contact-item i { color: var(--violet-pale); font-size: 1.1rem; }
.contact-item:hover { background: rgba(107,0,181,0.3); transform: translateX(5px); }

.chi-siamo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Mandala Animation */
.mandala-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107,0,181,0.4);
}
.ring-1 { width: 200px; height: 200px; animation: spin 20s linear infinite; border-color: rgba(168,85,247,0.3); border-style: dashed; }
.ring-2 { width: 150px; height: 150px; animation: spin 15s linear infinite reverse; border-color: rgba(212,175,55,0.3); }
.ring-3 { width: 100px; height: 100px; animation: spin 10s linear infinite; border-color: rgba(168,85,247,0.5); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.mandala-center {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(107,0,181,0.8);
  z-index: 1;
}
.kreo-initial {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}

.chi-siamo-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(107,0,181,0.15);
  border: 1px solid rgba(107,0,181,0.25);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--violet-mist);
  transition: var(--transition);
}
.value-item i { color: var(--gold); }
.value-item:hover { background: rgba(107,0,181,0.3); transform: translateY(-3px); }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.servizi {
  background: linear-gradient(180deg, var(--violet-deepest) 0%, var(--violet-deep) 50%, var(--violet-deepest) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(107,0,181,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168,85,247,0.5);
  box-shadow: var(--shadow-card), 0 0 30px rgba(107,0,181,0.3);
}
.service-card:hover .card-glow { opacity: 1; }

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-bright), var(--gold), var(--violet-bright), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card-icon {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(1.2) brightness(0.8);
}
.service-card:hover .card-icon img { transform: scale(1.1); filter: saturate(1.4) brightness(0.7); }

.icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(13,0,21,0.2), rgba(26,0,48,0.8));
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 20px rgba(107,0,181,0.8);
  transition: var(--transition);
}
.service-card:hover .icon-overlay { background: linear-gradient(to bottom, rgba(13,0,21,0.1), rgba(107,0,181,0.7)); }

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--white-alpha-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--violet-pale);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.card-link:hover { color: var(--gold); gap: 14px; }

.service-card--featured {
  border-color: rgba(212,175,55,0.3);
  background: linear-gradient(145deg, rgba(107,0,181,0.2) 0%, rgba(26,0,48,0.95) 100%);
}
.service-card--featured .card-glow { opacity: 0.5; }
.service-card--featured h3 { color: var(--gold-light); }

/* =========================================================
   VIAGGIO NEL BENESSERE
   ========================================================= */
.viaggio {
  position: relative;
  overflow: hidden;
}
.viaggio-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0030, #0d0015, #2d0050);
}
.viaggio-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b00b5' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.journey-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.journey-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(107,0,181,0.2);
  line-height: 1;
  margin-bottom: -10px;
  position: relative;
  z-index: 0;
}
.step-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(107,0,181,0.5);
}
.journey-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 12px;
}
.journey-step p {
  font-size: 0.85rem;
  color: var(--white-alpha-60);
  line-height: 1.7;
}
.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(107,0,181,0.4);
  font-size: 1.2rem;
  padding-top: 100px;
  flex-shrink: 0;
}

/* =========================================================
   PRENOTAZIONE CALL
   ========================================================= */
.prenota {
  background: var(--violet-deepest);
  position: relative;
  overflow: hidden;
}
.prenota::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,0,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.prenota-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.prenota-info .section-eyebrow { text-align: left; }
.prenota-info .section-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.prenota-info .title-ornament { text-align: left; }
.prenota-info p {
  color: var(--white-alpha-80);
  line-height: 1.8;
  margin-bottom: 30px;
}

.prenota-benefits {
  margin-bottom: 40px;
}
.prenota-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--white-alpha-80);
  border-bottom: 1px solid rgba(107,0,181,0.15);
}
.prenota-benefits li:last-child { border-bottom: none; }
.prenota-benefits i { color: var(--gold); font-size: 1.1rem; }

.prenota-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(107,0,181,0.15);
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: var(--radius-md);
  color: white;
  transition: var(--transition);
}
.contact-btn i {
  font-size: 1.3rem;
  color: var(--violet-pale);
  width: 30px;
  text-align: center;
}
.contact-btn small {
  display: block;
  font-size: 0.75rem;
  color: var(--white-alpha-60);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-btn strong { display: block; font-size: 1rem; }
.contact-btn:hover { background: rgba(107,0,181,0.3); transform: translateX(5px); }

/* Form Card */
.form-card {
  background: linear-gradient(145deg, rgba(26,0,48,0.9), rgba(45,0,80,0.8));
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}
.form-header {
  text-align: center;
  margin-bottom: 32px;
}
.form-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 8px 25px rgba(107,0,181,0.5);
}
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 8px;
}
.form-header p {
  font-size: 0.85rem;
  color: var(--white-alpha-60);
}

.booking-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-pale);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet-bright);
  background: rgba(107,0,181,0.1);
  box-shadow: 0 0 0 3px rgba(107,0,181,0.2);
}
.form-group select option { background: #1a0030; color: white; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-privacy { font-size: 0.82rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--white-alpha-60);
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--violet-bright);
  flex-shrink: 0;
}
.checkbox-label a { color: var(--violet-pale); text-decoration: underline; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(107,0,181,0.4);
  letter-spacing: 0.03em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(107,0,181,0.6);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(107,0,181,0.2);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: var(--radius-md);
  color: var(--violet-mist);
  font-weight: 600;
}
.form-success i { color: var(--gold); font-size: 1.5rem; }

/* =========================================================
   TESTIMONIANZE
   ========================================================= */
.testimonianze {
  background: linear-gradient(180deg, var(--violet-deepest), var(--violet-deep));
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(107,0,181,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.4);
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.2em;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-alpha-80);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(107,0,181,0.3);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: white; }
.testimonial-author span { font-size: 0.8rem; color: var(--violet-pale); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--violet-deepest);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(107,0,181,0.08);
  border: 1px solid rgba(107,0,181,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(168,85,247,0.4);
  background: rgba(107,0,181,0.15);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white-alpha-80);
  transition: var(--transition-fast);
}
.faq-question span { flex: 1; }
.faq-question i {
  color: var(--violet-pale);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question { color: white; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 24px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--white-alpha-60);
  line-height: 1.8;
  padding-top: 4px;
  border-top: 1px solid rgba(107,0,181,0.15);
  padding-top: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--violet-deep), var(--violet-deepest));
  border-top: 1px solid rgba(107,0,181,0.25);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(107,0,181,0.2);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-alpha-60);
  line-height: 1.8;
  margin: 20px 0;
}
.footer-logo { margin-bottom: 16px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(107,0,181,0.2);
  border: 1px solid rgba(107,0,181,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white-alpha-60);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--violet-main);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107,0,181,0.4);
}
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,0,181,0.2);
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--white-alpha-60);
  transition: var(--transition-fast);
}
.footer-links ul li a:hover { color: var(--violet-pale); padding-left: 6px; }

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,0,181,0.2);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--white-alpha-60);
}
.footer-contact-item i { color: var(--violet-pale); width: 16px; }
.footer-contact-item a { color: var(--white-alpha-60); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--violet-pale); }

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(107,0,181,0.3);
}
.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,0,181,0.5);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--white-alpha-60);
}
.footer-disclaimer { font-style: italic; font-size: 0.75rem; }
.footer-policy-link { color: var(--violet-pale); text-decoration: underline; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PAGE HERO (per pagine interne)
   ========================================================= */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet-deepest), var(--violet-dark));
  padding: 140px 20px 80px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,0,181,0.2) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .hero-badge { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: white;
  text-shadow: 0 0 40px rgba(168,85,247,0.6);
  margin-bottom: 16px;
}
.page-hero .hero-tagline { margin-bottom: 20px; }
.page-hero p.page-hero-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--white-alpha-80);
  font-size: 1.05rem;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--white-alpha-60);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--violet-pale); }
.breadcrumb span { color: var(--white-alpha-40); }

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.service-detail { background: var(--violet-deepest); }
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
  margin-top: 40px;
}
.service-text h2:first-child { margin-top: 0; }
.service-text p {
  color: var(--white-alpha-80);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.service-text ul {
  list-style: none;
  margin-bottom: 20px;
}
.service-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(107,0,181,0.1);
  color: var(--white-alpha-80);
  font-size: 0.95rem;
}
.service-text ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--gradient-card);
  border: 1px solid rgba(107,0,181,0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,0,181,0.2);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* =========================================================
   COOKIE POLICY PAGE
   ========================================================= */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid rgba(107,0,181,0.25);
  border-radius: var(--radius-xl);
  padding: 60px;
}
.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--violet-pale);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,0,181,0.2);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--white-alpha-80);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.policy-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.policy-content ul li {
  color: var(--white-alpha-80);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.85rem;
}
.policy-table th {
  background: rgba(107,0,181,0.3);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border: 1px solid rgba(107,0,181,0.2);
}
.policy-table td {
  padding: 10px 16px;
  color: var(--white-alpha-80);
  border: 1px solid rgba(107,0,181,0.15);
  vertical-align: top;
}
.policy-table tr:hover td { background: rgba(107,0,181,0.05); }

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--violet-main), var(--violet-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(107,0,181,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  cursor: pointer;
  border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(107,0,181,0.7); }

/* =========================================================
   WHATSAPP FLOAT BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 500;
  animation: float-wa 3s ease-in-out infinite;
}
@keyframes float-wa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* =========================================================
   PARTICLES
   ========================================================= */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
  opacity: 0.6;
}
@keyframes particle-float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* =========================================================
   RESPONSIVE – TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .chi-siamo-grid { grid-template-columns: 1fr; gap: 40px; }
  .prenota-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .journey-connector { display: none; }
}

/* =========================================================
   RESPONSIVE – MOBILE
   ========================================================= */
@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .navbar { padding: 16px 1.5rem; }

  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,0,21,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    max-height: 400px;
    display: block;
  }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .intro-stats { flex-direction: column; gap: 10px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 30px 20px; }
  .form-card { padding: 24px; }
  .prenota-info .section-title { font-size: 2rem; }
  .journey-steps { flex-direction: column; align-items: center; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 80px; right: 16px; }
  .back-to-top { right: 16px; bottom: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title-main { font-size: 3rem; }
  .navbar { padding: 14px 1rem; }
  .logo { font-size: 1.2rem; }
  .chi-siamo-values { grid-template-columns: 1fr; }
}
