/* ==========================================================================
   DESIGN SYSTEM - LA RIVIERA VERSAILLES (REPRISE CHARTE ROSE PREMIUM)
   ========================================================================== */

:root {
  /* Curated Premium Rose Palette (Inspired by their current site + Luxury Refonte) */
  --rose-bg: #FFB0AB;            /* Signature Rose Background */
  --rose-deep: #C74150;          /* Luxurious Deep Raspberry Rose */
  --rose-medium: #E27B88;        /* Mid Tone Floral Rose */
  --rose-light: #FFF0EF;         /* Delicate Blush Ivory Cream */
  --gold: #D4AF37;               /* Champagne Gold */
  --gold-light: #F3E5AB;         /* Pale Gold highlights */
  --gold-dark: #AA7C11;          /* Antique Gold */
  --rose-dark: #2A1114;          /* Ultra Deep Warm Rose-Dark (High Contrast Text) */
  --pure-white: #FFFFFF;
  --text-muted: #8E7A7C;
  --shadow-color: rgba(42, 17, 20, 0.08);

  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing & Borders */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max: 1200px;
}

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

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

body {
  background-color: var(--rose-bg);
  color: var(--rose-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--gold);
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== FIXED NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(42, 17, 20, 0.85); /* Deep rose-dark for contrast */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.nav-w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--rose-light);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-medium);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--rose-light);
}

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

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

.nav-phone {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--rose-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-phone:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* ===== HERO SECTION WITH DYNAMIC ESTIMATOR ===== */
.hero {
  min-height: 100vh;
  padding: 12rem 0 5rem;
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-deep) 100%);
  color: var(--rose-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background overlay elements */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.8;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(226, 123, 136, 0.3) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-w {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--rose-medium);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--rose-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

/* ESTIMATION CARD */
.estim-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.estim-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-medium), var(--gold), var(--rose-light));
}

.estim-head {
  margin-bottom: 1.5rem;
}

.estim-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--rose-light);
}

.estim-sub {
  font-size: 0.75rem;
  color: var(--rose-medium);
  margin-top: 0.3rem;
}

.estim-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.estim-form input, .estim-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(42, 17, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--rose-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.estim-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  cursor: pointer;
}

.estim-form input:focus, .estim-form select:focus {
  border-color: var(--gold);
  background: rgba(42, 17, 20, 0.85);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit-estim {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--rose-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-submit-estim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.estim-secure {
  text-align: center;
  font-size: 0.65rem;
  color: var(--rose-medium);
  margin-top: 0.5rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--rose-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
  color: var(--rose-light);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background-color: rgba(212, 175, 55, 0.15);
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

.trust-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-top: 0.5rem;
}

/* ===== URGENCY TICKER ===== */
.urgency-ticker {
  background: var(--rose-light);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-wrap {
  display: flex;
  white-space: nowrap;
  gap: 4rem;
  animation: ticker-scroll 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--rose-deep);
  border-radius: 50%;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
section {
  padding: 8rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--rose-dark);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--rose-bg); /* Harmonious match to current background */
}

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

.service-card {
  background: var(--pure-white);
  border: 1px solid rgba(42, 17, 20, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(42, 17, 20, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.2rem;
}

.card-badge {
  background: var(--rose-light);
  color: var(--rose-deep);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--rose-dark);
}

.service-card .card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: auto;
}

.card-features li {
  font-size: 0.8rem;
  color: var(--rose-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(42, 17, 20, 0.05);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.card-features li::before {
  content: '✦';
  color: var(--rose-deep);
  font-size: 0.8rem;
}

.card-cta-link {
  margin-top: 1.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .card-cta-link {
  gap: 0.8rem;
  color: var(--gold-dark);
}

/* ===== INTERACTIVE VIRTUAL FLOWER WORKSHOP ===== */
.workshop-section {
  background-color: var(--rose-light);
  background-image: linear-gradient(180deg, var(--rose-light) 0%, var(--rose-bg) 100%);
}

.workshop-w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.workshop-interactive {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 45px var(--shadow-color);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.workshop-display {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-deep) 100%);
  border-radius: var(--radius-md);
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.bouquet-preview {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bouquet base SVG styling */
.vase-svg {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 70px;
  z-index: 2;
}

.flowers-container {
  position: absolute;
  top: 10px;
  width: 140px;
  height: 120px;
  z-index: 3;
}

.flower-dot {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.flower-dot.active {
  transform: scale(1);
}

.workshop-controls {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.control-group h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.opt-btn {
  background: var(--rose-light);
  border: 1px solid rgba(42, 17, 20, 0.1);
  padding: 0.6rem 0.3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  color: var(--rose-dark);
}

.opt-btn:hover {
  border-color: var(--rose-deep);
  background: var(--rose-bg);
}

.opt-btn.active {
  background: var(--rose-deep);
  color: var(--pure-white);
  border-color: var(--rose-deep);
}

.workshop-price-panel {
  border-top: 1px solid rgba(42, 17, 20, 0.08);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose-dark);
}

/* ===== TESTIMONIALS & FAQ ===== */
.social-faq-section {
  background-color: var(--pure-white);
}

.social-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.testi-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testi-card {
  background: var(--rose-light);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 25px var(--shadow-color);
  position: relative;
}

.testi-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.testi-text {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  color: var(--rose-dark);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-bg);
  border: 1px solid var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--rose-dark);
}

.author-info h5 {
  font-size: 0.8rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--rose-light);
  border: 1px solid rgba(42, 17, 20, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--rose-deep);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.faq-question {
  padding: 1.2rem 1.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--rose-dark);
  user-select: none;
}

.faq-item.active .faq-question {
  color: var(--rose-deep);
}

.faq-trigger {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(42, 17, 20, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-trigger {
  transform: rotate(45deg);
  background: var(--rose-deep);
  color: var(--pure-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.4rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-deep) 100%);
  color: var(--rose-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1rem;
  color: var(--rose-medium);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--rose-dark);
  color: var(--rose-light);
  border-top: 2px solid var(--gold);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--rose-medium);
  padding-left: 0.3rem;
}

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-hours-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.footer-hours-list li.special {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-info a, .footer-contact-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.footer-contact-info a:hover {
  color: var(--rose-medium);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--rose-medium);
}

/* ===== ANIMATION CLASSES (JS INTERSECTION OBSERVER) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .hero-w {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .estim-card {
    max-width: 550px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-w {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .social-faq-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-right {
    display: none;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
