/* =========================================================
   AURA VERONA — Luxury Parrucchiere Stylesheet
   ========================================================= */

/* ---- Design Tokens ---- */
:root {
  --ivory: #FDFBF7;
  --cream: #F8F3EC;
  --beige: #F0E6D8;
  --beige-dark: #E6D9C6;
  --taupe: #B8A99A;
  --espresso: #2C2420;
  --espresso-light: #5C4F46;
  --espresso-lighter: #8A7B70;
  --gold: #C9A96E;
  --gold-dark: #A8874F;
  --gold-light: #E8D5B5;
  --gold-lightest: #F5ECD8;
  --white: #FFFFFF;
  --black: #1A1412;
  --overlay: rgba(26, 20, 18, 0.65);
  --error: #D4544E;
  --success: #7BAF6E;
  --whatsapp: #25D366;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 80px;
  --container: 1200px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);

  --ease-fast: 0.2s ease;
  --ease: 0.3s ease;
  --ease-slow: 0.5s ease;
  --ease-cubic: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--espresso); background: var(--ivory); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; color: var(--espresso); }

/* ---- Layout Utilities ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--cream); }
.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-size: 2.8rem; font-weight: 500; margin-bottom: 16px; line-height: 1.15; }
.section-subtitle { font-size: 1.05rem; color: var(--espresso-light); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light)); margin: 24px auto; border: none; display: block; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--r-full); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: all var(--ease); white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,169,110,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1ead53; transform: translateY(-2px); }
.btn-dark { background: var(--espresso); color: var(--white); }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ======================
   HEADER
   ====================== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: all var(--ease); height: var(--header-h); }
.header.scrolled { background: rgba(253,251,247,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.header-logo { display: flex; align-items: center; gap: 12px; z-index: 1001; text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.25); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--gold); transition: all var(--ease); }
.header.scrolled .logo-icon { background: var(--gold); color: var(--white); border-color: transparent; }
.header-logo-text { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px; transition: color var(--ease); }
.header.scrolled .header-logo-text { color: var(--espresso); }

.header-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.85); letter-spacing: 0.3px; transition: color var(--ease); position: relative; cursor: pointer; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width var(--ease); }
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.header.scrolled .nav-link { color: var(--espresso); }
.header.scrolled .nav-link:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 16px; }
.lang-selector { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.1); border-radius: var(--r-full); padding: 4px; transition: background var(--ease); }
.header.scrolled .lang-selector { background: var(--cream); }
.lang-btn { padding: 4px 10px; font-size: 0.75rem; font-weight: 500; border-radius: var(--r-full); color: rgba(255,255,255,0.7); transition: all var(--ease); cursor: pointer; }
.header.scrolled .lang-btn { color: var(--espresso-lighter); }
.lang-btn.active { background: var(--gold); color: var(--white); }
.header-cta { padding: 10px 24px; font-size: 0.82rem; }

/* Mobile Menu Button */
#mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; cursor: pointer; }
#mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--ease); }
.header.scrolled #mobile-menu-btn span { background: var(--espresso); }
#mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
#mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
#mobile-menu { position: fixed; inset: 0; background: rgba(26,20,18,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--ease-slow); z-index: 999; }
#mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav-links .nav-link { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); opacity: 0; transform: translateY(20px); transition: all var(--ease-slow); }
#mobile-menu.active .mobile-nav-links .nav-link { opacity: 1; transform: translateY(0); }
.mobile-nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links .nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-links .nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-links .nav-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav-links .btn { margin-top: 16px; opacity: 0; transform: translateY(20px); transition: all var(--ease-slow); transition-delay: 0.45s; }
#mobile-menu.active .mobile-nav-links .btn { opacity: 1; transform: translateY(0); }
.mobile-lang-selector { margin-top: 32px; opacity: 0; transform: translateY(20px); transition: all var(--ease-slow); transition-delay: 0.5s; }
#mobile-menu.active .mobile-lang-selector { opacity: 1; transform: translateY(0); }

/* ======================
   HERO
   ====================== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('images/hero.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 8s ease; }
#hero:hover .hero-bg { transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,20,18,0.4) 0%, rgba(26,20,18,0.55) 50%, rgba(26,20,18,0.8) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-content > * { opacity: 0; animation: heroFadeIn 0.9s ease forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content > *:nth-child(5) { animation-delay: 1.1s; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.hero-title { font-family: var(--font-heading); font-size: 4rem; font-weight: 400; color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.trust-badge svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ======================
   SERVICES / TRATTAMENTI
   ====================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; box-shadow: var(--shadow-card); transition: all var(--ease); display: flex; flex-direction: column; border: 1px solid transparent; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light)); opacity: 0; transition: opacity var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; background: var(--gold-lightest); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--gold); }
.service-icon svg { width: 28px; height: 28px; }
.service-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--espresso-light); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.service-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
.service-btn { align-self: flex-start; }

/* ======================
   BOOKING / PRENOTA
   ====================== */
#prenota { background: var(--cream); }
.booking-container { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); padding: 48px 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--beige); }

/* Step Indicators */
.step-indicators { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 48px; position: relative; }
.step-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; flex: 1; }
.step-number { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--beige-dark); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: var(--espresso-lighter); background: var(--white); position: relative; z-index: 2; transition: all var(--ease); }
.step-indicator.active .step-number { border-color: var(--gold); color: var(--gold); background: var(--gold-lightest); }
.step-indicator.completed .step-number { border-color: var(--gold); background: var(--gold); color: var(--white); }
.step-label { font-size: 0.75rem; color: var(--espresso-lighter); font-weight: 500; transition: color var(--ease); text-align: center; }
.step-indicator.active .step-label, .step-indicator.completed .step-label { color: var(--gold-dark); }
.step-connector { position: absolute; top: 22px; left: calc(50% + 26px); width: calc(100% - 52px); height: 2px; background: var(--beige-dark); z-index: 1; transition: background var(--ease); }
.step-connector.active { background: var(--gold); }
.step-indicator:last-child .step-connector { display: none; }

/* Booking Steps */
.booking-step { display: none; }
.booking-step.active { display: block; animation: stepFadeIn 0.4s ease; }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 24px; text-align: center; }

/* Treatments */
.treatments-grid { display: grid; gap: 12px; }
.treatment-option { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1.5px solid var(--beige); border-radius: var(--r-md); cursor: pointer; transition: all var(--ease); user-select: none; }
.treatment-option:hover { border-color: var(--gold-light); background: rgba(245,236,216,0.4); }
.treatment-option.selected { border-color: var(--gold); background: var(--gold-lightest); }
.treatment-checkbox { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border: 2px solid var(--beige-dark); border-radius: 6px; cursor: pointer; position: relative; flex-shrink: 0; transition: all var(--ease); }
.treatment-checkbox:checked { background: var(--gold); border-color: var(--gold); }
.treatment-checkbox:checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--white); font-size: 0.75rem; font-weight: bold; }
.treatment-label { display: flex; align-items: center; justify-content: space-between; flex-grow: 1; cursor: pointer; }
.treatment-name { font-size: 0.95rem; font-weight: 500; }
.treatment-price-tag { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.booking-total { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--cream); border-radius: var(--r-md); margin-top: 24px; }
.booking-total-label { font-weight: 500; font-size: 0.95rem; }
.booking-total-amount { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold); }

/* Stylists */
.stylists-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stylist-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 20px; border: 1.5px solid var(--beige); border-radius: var(--r-lg); cursor: pointer; transition: all var(--ease); text-align: center; }
.stylist-card:hover { border-color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stylist-card.selected { border-color: var(--gold); background: var(--gold-lightest); box-shadow: var(--shadow-gold); }
.stylist-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--white); transition: transform var(--ease); }
.stylist-card:hover .stylist-avatar { transform: scale(1.05); }
.stylist-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }
.stylist-role { font-size: 0.8rem; color: var(--espresso-lighter); }

/* Booking Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--espresso-light); margin-bottom: 8px; }
.form-input, .form-select, textarea.form-input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--beige); border-radius: var(--r-md); background: var(--ivory); color: var(--espresso); font-size: 0.9rem; transition: border-color var(--ease), box-shadow var(--ease); }
.form-input:focus, .form-select:focus, textarea.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.form-input::placeholder { color: var(--taupe); }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8A99A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

/* Booking Navigation */
.booking-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; gap: 16px; }
.booking-nav .btn { min-width: 140px; }
.booking-nav-right { margin-left: auto; }
.validation-msg { color: var(--error); font-size: 0.82rem; margin-top: 8px; text-align: center; display: none; }
.validation-msg.show { display: block; animation: stepFadeIn 0.3s ease; }

/* ======================
   GALLERY / GALLERIA
   ====================== */
.gallery-filters { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.gallery-filter-btn { padding: 8px 20px; font-size: 0.82rem; font-weight: 500; border-radius: var(--r-full); border: 1.5px solid var(--beige); color: var(--espresso-light); transition: all var(--ease); cursor: pointer; background: transparent; }
.gallery-filter-btn:hover { border-color: var(--gold-light); color: var(--gold); }
.gallery-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; aspect-ratio: 4/5; }
.gallery-item.hidden { display: none; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-slow); }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,20,18,0.7) 100%); opacity: 0; transition: opacity var(--ease); display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; }

/* Lightbox */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all var(--ease); cursor: pointer; padding: 24px; }
#lightbox.active { opacity: 1; visibility: visible; }
#lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-md); object-fit: contain; cursor: default; }
#lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--ease); border: none; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
#lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ======================
   ABOUT / CHI SIAMO
   ====================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text { font-size: 1.05rem; color: var(--espresso-light); line-height: 1.8; margin-bottom: 40px; }
.about-features { display: grid; gap: 20px; }
.feature-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--cream); border-radius: var(--r-md); transition: all var(--ease); }
.feature-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.feature-icon { width: 48px; height: 48px; background: var(--gold-lightest); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; }
.feature-desc { font-size: 0.85rem; color: var(--espresso-lighter); line-height: 1.5; }
.about-image-container { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.about-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.about-image-accent { position: absolute; bottom: -12px; right: -12px; width: 45%; height: 45%; border: 3px solid var(--gold); border-radius: var(--r-lg); pointer-events: none; }

/* ======================
   REVIEWS / RECENSIONI
   ====================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 48px; }
.review-card { background: var(--white); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-card); transition: all var(--ease); border: 1px solid transparent; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-heading); font-size: 4rem; color: var(--gold-lightest); line-height: 1; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--gold); font-size: 0.95rem; }
.review-text { font-size: 0.95rem; color: var(--espresso-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--espresso); display: flex; align-items: center; gap: 10px; }
.review-author::before { content: ''; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }
.reviews-cta { text-align: center; }

/* ======================
   B2B LINEA BIO
   ====================== */
.b2b-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.b2b-text { font-size: 1.05rem; color: var(--espresso-light); line-height: 1.8; margin-bottom: 32px; }
.b2b-benefits { display: grid; gap: 16px; margin-bottom: 32px; }
.b2b-benefit { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: all var(--ease); }
.b2b-benefit:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 44px; height: 44px; background: var(--gold-lightest); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-title { font-weight: 600; font-size: 0.95rem; }
.b2b-image-container { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.b2b-image { width: 100%; height: 100%; object-fit: cover; }

/* ======================
   CONTACT / CONTATTI
   ====================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--gold-lightest); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 0.78rem; color: var(--espresso-lighter); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.contact-value { font-weight: 500; font-size: 0.95rem; line-height: 1.5; }
.contact-buttons { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.map-container { margin-top: 32px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--beige); height: 220px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-form-container { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-card); border: 1px solid var(--beige); }
.contact-form-title { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-subtitle { font-size: 0.88rem; color: var(--espresso-lighter); margin-bottom: 28px; }

/* ======================
   FOOTER
   ====================== */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: var(--gold); color: var(--white); border: none; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--ease); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--ease); }
.footer-legal a:hover { color: var(--gold); }

/* ======================
   FLOATING BUTTONS
   ====================== */
#whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 900; transition: all var(--ease); animation: pulseWA 2s infinite; text-decoration: none; }
#whatsapp-float svg { width: 30px; height: 30px; }
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulseWA { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); } }

#back-to-top { position: fixed; bottom: 96px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--espresso); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-md); z-index: 900; opacity: 0; visibility: hidden; transition: all var(--ease); cursor: pointer; border: 1px solid var(--beige); }
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }

/* Mobile Bottom CTA */
#mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: rgba(253,251,247,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 -2px 20px rgba(0,0,0,0.08); z-index: 800; }
#mobile-cta-bar .btn { width: 100%; padding: 14px; font-size: 0.95rem; }

/* ======================
   SCROLL ANIMATIONS
   ====================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .lang-selector { display: none; }
  #mobile-menu-btn { display: flex; }

  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 3rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-container { max-width: 500px; margin: 0 auto; }
  .b2b-container { grid-template-columns: 1fr; gap: 40px; }
  .b2b-image-container { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 1.9rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-label { font-size: 0.7rem; letter-spacing: 3px; }

  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .booking-container { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  #mobile-cta-bar { display: block; }
  #whatsapp-float { bottom: 80px; }
  #back-to-top { bottom: 152px; }

  .trust-badges { gap: 16px; }
  .trust-badge { font-size: 0.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  body { padding-bottom: 68px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .booking-nav { flex-direction: column; }
  .booking-nav .btn { width: 100%; }
}
