/* ==========================================================================
   NOOR BEAUTY BAR - LUXURY STYLESHEET
   Colors: Primary #ffdce0 | Text & Dark Accent #471617
   Fonts: Poppins, Daydream/Playfair Display, Brittany/Alex Brush
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. IMPORTS & FONT FACES
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Pinyon+Script&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #ffdce0;
  --bg-secondary: #fff2f4;
  --bg-card: #ffffff;
  --text-primary: #471617;
  --text-muted: #783537;
  --text-light: #a35d60;
  
  --accent-burgundy: #471617;
  --accent-burgundy-light: #6e2729;
  --accent-rose: #f7b2b9;
  --accent-pink-soft: #ffe8eb;
  --accent-gold: #d4af37;

  --border-light: rgba(71, 22, 23, 0.12);
  --border-medium: rgba(71, 22, 23, 0.25);
  
  --shadow-sm: 0 4px 15px rgba(71, 22, 23, 0.05);
  --shadow-md: 0 10px 30px rgba(71, 22, 23, 0.08);
  --shadow-lg: 0 20px 45px rgba(71, 22, 23, 0.12);

  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Daydream', 'Cormorant Garamond', 'Playfair Display', serif;
  --font-script: 'Brittany', 'Alex Brush', 'Pinyon Script', 'Great Vibes', cursive;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fallback Font definition for Brittany & Daydream if available locally */
@font-face {
  font-family: 'Brittany';
  src: local('Brittany Signature'), local('Brittany'), url('https://fonts.cdnfonts.com/s/72895/BrittanySignature.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Daydream';
  src: local('Daydream'), local('Daydream-Regular');
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Common */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  position: relative;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0.5rem auto 0;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent-burgundy);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--accent-burgundy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-burgundy);
  border: 1.5px solid var(--accent-burgundy);
}

.btn-outline:hover {
  background-color: var(--accent-burgundy);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #471617 0%, #6e2729 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(71, 22, 23, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(71, 22, 23, 0.35);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
}

.header.scrolled {
  background: rgba(255, 220, 224, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(71, 22, 23, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-burgundy);
  transition: var(--transition);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 85vh;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(247, 178, 185, 0.3) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-badge-icon {
  color: var(--accent-burgundy);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
}

.hero-title span.highlight {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 3.0rem;
  display: block;
  color: var(--accent-burgundy);
  margin-top: -0.3rem;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  width: 270px;
  height: 360px;
  border-radius: 130px 130px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.6);
  position: relative;
  transition: var(--transition);
}

.hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  left: -5%;
}

.hero-floating-card.card-2 {
  bottom: 12%;
  right: -5%;
  animation-delay: 2s;
}

.floating-icon {
  width: 42px;
  height: 42px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-burgundy);
  font-size: 1.2rem;
}

.floating-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   5. ABOUT ME SECTION (EXACT MATCH OF IMAGE REFERENCE input_file_0.png)
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-primary);
  padding: 3rem 0 4rem;
  position: relative;
}

.about-card-container {
  max-width: 940px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  max-width: 290px;
  height: auto;
  object-fit: contain;
}

.about-content-column {
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-header-small {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}

.about-main-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 0.9;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-transform: lowercase;
}

.about-founder-name {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

.about-founder-name strong {
  font-weight: 700;
}

.about-paragraph {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.about-divider-line {
  width: 24px;
  height: 2px;
  background-color: var(--accent-burgundy);
  margin: 1rem 0 1.2rem 0;
}

.about-tagline-quote {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 1.8rem;
}

.about-tagline-quote strong {
  font-weight: 700;
}

.about-footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.about-monogram {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
}

.about-brand-sub {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Top watermark header matching image */
.about-top-watermark {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. SERVICES & PRICING SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  margin: 1.5rem auto;
  padding: 3.5rem 0;
  box-shadow: var(--shadow-sm);
}

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

.service-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.service-card.popular {
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-burgundy);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-burgundy);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-header {
  margin-bottom: 0.8rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-meta i {
  color: var(--accent-burgundy);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.8rem 0;
}

.service-price span {
  font-size: 0.85rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-muted);
}

.service-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.4rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--accent-burgundy);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   7. POLICY SECTION (MA POLITIQUE)
   -------------------------------------------------------------------------- */
.policy-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 220, 224, 0.5) 100%);
  overflow: visible;
}

.policy-rules-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.policy-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.policy-rule-item:first-child {
  border-top: 1px solid var(--border-light);
}

.policy-rule-item:hover .policy-rule-num {
  color: var(--accent-burgundy);
  transform: scale(1.05);
}

.policy-rule-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 60px;
  flex-shrink: 0;
}

.policy-rule-num {
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-light);
  transition: var(--transition);
}

.policy-rule-icon {
  color: var(--accent-burgundy);
  font-size: 1.1rem;
  opacity: 0.7;
}

.policy-rule-body {
  flex: 1;
  padding-top: 0.3rem;
}

.policy-rule-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.policy-rule-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 576px) {
  .policy-rule-item {
    gap: 1.2rem;
  }
  .policy-rule-left {
    min-width: 44px;
  }
  .policy-rule-num {
    font-size: 1.7rem;
  }
}

/* --------------------------------------------------------------------------
   8. PREPARATION CHECKLIST SECTION (POUR VOTRE RDV)
   -------------------------------------------------------------------------- */
.prep-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 900px;
  margin: 0 auto;
}

.prep-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.prep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prep-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-burgundy);
  box-shadow: var(--shadow-sm);
}

.prep-card-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.prep-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
}

.prep-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   9. GALLERY & PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 3.5rem 0;
}

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

/* RECTANGULAR gallery frames */
.gallery-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 6px 20px rgba(71, 22, 23, 0.12);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--accent-burgundy);
  box-shadow: 0 14px 38px rgba(71, 22, 23, 0.22);
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* Shimmer sweep on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  z-index: 3;
  transition: left 0.65s ease;
}

.gallery-item:hover::before {
  left: 150%;
}

/* Corner accent bracket */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-top: 2px solid rgba(255, 220, 224, 0.85);
  border-left: 2px solid rgba(255, 220, 224, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(71, 22, 23, 0.82) 0%, rgba(71, 22, 23, 0.08) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.5rem;
  color: #ffffff;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
  transform: translateY(0);
}

.gallery-overlay p {
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.07s, transform 0.4s ease 0.07s;
}

.gallery-item:hover .gallery-overlay p {
  opacity: 0.9;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 3.5rem 0;
  background-color: rgba(255, 255, 255, 0.6);
}

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

.testimonial-card {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.stars {
  color: #d4af37;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.client-info h5 {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.client-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   11. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 3.5rem 0;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

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

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

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

.faq-icon {
  transition: var(--transition);
  color: var(--accent-burgundy);
}

/* --------------------------------------------------------------------------
   12. CONTACT & BOOKING SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 3.5rem 0;
  background-color: var(--bg-primary);
}

.contact-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-col h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.contact-info-col p.lead {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-burgundy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.booking-form-col {
  background-color: var(--bg-secondary);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  background-color: #ffffff;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-burgundy);
  box-shadow: 0 0 0 3px rgba(71, 22, 23, 0.1);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--accent-burgundy);
  color: #ffffff;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   14. MODAL & LIGHTBOX
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .about-content-column {
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .about-divider-line {
    margin: 0.8rem auto 1rem auto;
  }

  .about-footer-branding {
    align-items: center;
  }

  .about-main-title {
    font-size: 2.8rem;
  }

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

  .contact-card-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem 1.2rem;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1000;
  }

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

  .hero-title span.highlight {
    font-size: 2.5rem;
  }

  .about-main-title {
    font-size: 2.5rem;
  }

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

  .hero-main-card {
    width: 220px;
    height: 300px;
  }
}

/* ==========================================================================
   16. SCROLL-REVEAL ANIMATIONS (Entrance Effects)
   ========================================================================== */

/* --- Base state: elements are invisible before animation --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Directional variants */
.reveal-up    { transform: translateY(40px); }
.reveal-down  { transform: translateY(-30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }

/* --- Visible state (added by JS IntersectionObserver) --- */
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered children delay */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }

/* ==========================================================================
   17. CONTINUOUS KEYFRAME ANIMATIONS
   ========================================================================== */

/* Pulse glow — buttons and key accents */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(71, 22, 23, 0.28); }
  50%       { box-shadow: 0 0 0 10px rgba(71, 22, 23, 0); }
}

.btn-primary, .btn-gold {
  animation: pulse-glow 3s ease infinite;
}

/* Floating decoration on hero card */
@keyframes hero-card-breathe {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-6px) rotate(0.5deg); }
}

.hero-main-card {
  animation: hero-card-breathe 5s ease-in-out infinite;
}

/* Gradient shimmer background pan on hero badge */
@keyframes badge-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-badge {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.65) 0%,
    rgba(255,255,255,0.95) 40%,
    rgba(255,255,255,0.65) 80%
  );
  background-size: 200% auto;
  animation: badge-shimmer 4s linear infinite;
}

/* Policy & prep cards — subtle lift on page load */
@keyframes card-pop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Section tags — typewriter-like fade in */
@keyframes tag-appear {
  from { opacity: 0; letter-spacing: 4px; }
  to   { opacity: 1; letter-spacing: 0.5px; }
}

.section-tag {
  animation: tag-appear 0.8s ease forwards;
}

/* About monogram spin-in */
@keyframes monogram-in {
  from { opacity: 0; transform: scale(0.5) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.about-monogram {
  display: inline-block;
  animation: monogram-in 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-play-state: paused;
}

.about-monogram.visible {
  animation-play-state: running;
}

/* Floating dots decorative element (background ambient) */
@keyframes float-dot {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.25; }
  33%       { transform: translateY(-12px) translateX(5px); opacity: 0.45; }
  66%       { transform: translateY(5px) translateX(-4px); opacity: 0.3; }
}

/* Subtle pulsing divider line on About section */
.about-divider-line {
  animation: divider-grow 1s ease forwards;
  animation-play-state: paused;
  transform-origin: left;
}

@keyframes divider-grow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.about-divider-line.visible {
  animation-play-state: running;
}

/* ==========================================================================
   18. MICRO-INTERACTION ENHANCEMENTS
   ========================================================================== */

/* Nav link hover — smooth color fill sweep */
.nav-link {
  background: linear-gradient(to right, var(--accent-burgundy) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-primary);
  transition: background-position 0.35s ease, -webkit-text-fill-color 0.2s ease;
}

.nav-link:hover {
  background-position: left bottom;
  -webkit-text-fill-color: var(--accent-burgundy);
}

/* Policy card — colored top border slides in on hover */
.policy-card {
  border-top: 3px solid transparent;
  transition: var(--transition), border-top-color 0.35s ease;
}

.policy-card:hover {
  border-top-color: var(--accent-burgundy);
}

/* Prep card — glow ring on hover */
.prep-card:hover .prep-icon {
  box-shadow: 0 0 0 6px rgba(71, 22, 23, 0.1), var(--shadow-sm);
  transition: box-shadow 0.35s ease;
}

/* Form focus label lift */
.form-group:focus-within .form-label {
  color: var(--accent-burgundy);
  transition: color 0.25s ease;
}

/* Testimonial card — elegant left accent bar */
.testimonial-card {
  border-left: 3px solid transparent;
  transition: var(--transition), border-left-color 0.3s ease;
}

.testimonial-card:hover {
  border-left-color: var(--accent-burgundy);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.preloader-logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.preloader-logo {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  animation: preloaderPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 6px 18px rgba(71, 22, 23, 0.15));
}

.preloader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(71, 22, 23, 0.08);
  border-top-color: var(--accent-burgundy);
  border-right-color: var(--accent-rose);
  border-radius: 50%;
  animation: preloaderSpin 1.4s linear infinite;
}

.preloader-bar-container {
  width: 150px;
  height: 3px;
  background: rgba(71, 22, 23, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-burgundy), var(--accent-rose), var(--accent-burgundy));
  background-size: 200% 100%;
  animation: preloaderBar 1.5s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.9;
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderBar {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* --------------------------------------------------------------------------
   BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--accent-burgundy);
  color: #ffffff;
  border: 1px solid rgba(255, 220, 224, 0.3);
  box-shadow: 0 10px 25px rgba(71, 22, 23, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background-color: var(--accent-burgundy-light);
  color: var(--accent-rose);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 14px 32px rgba(71, 22, 23, 0.38);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.96);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   19. MARQUEE BANNER & PARALLAX LUXURY ENHANCEMENTS
   ========================================================================== */

/* --- GENERAL SECTION PARALLAX BACKGROUND CONTAINERS --- */
/* Note: policy-section and contact-section excluded - no background image */
.hero, .prep-section, .testimonials-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  overflow: hidden;
}

.parallax-bg-image {
  width: 100%;
  height: 130%; /* Taller than container to allow vertical movement */
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: brightness(1.05) contrast(1.06) saturate(1.1);
  transform: translateY(-10%); /* Start slightly above, JS will animate */
  transition: none; /* JS handles smooth animation */
}

.parallax-light-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 220, 224, 0.35) 0%, rgba(255, 242, 244, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure content cards sit above background parallax layers */
.hero .container,
.prep-section .container,
.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* Policy & Contact have no parallax bg, keep simple */
.policy-section .container,
.contact-section .container {
  position: relative;
  z-index: 1;
}

/* --- GLASSMORPHISM CARDS FOR PERFECT CONTRAST --- */
.policy-card,
.prep-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(71, 22, 23, 0.12);
  box-shadow: 0 14px 35px rgba(71, 22, 23, 0.09);
}

.contact-card-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(71, 22, 23, 0.14);
  box-shadow: 0 25px 50px rgba(71, 22, 23, 0.12);
}

/* --- MARQUEE TICKER BANNER (Bande Défilante Infinie) --- */
.marquee-banner {
  width: 100%;
  overflow: hidden;
  user-select: none;
  background: linear-gradient(90deg, #471617 0%, #6e2729 50%, #471617 100%);
  color: #ffffff;
  padding: 1.1rem 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(71, 22, 23, 0.22);
  border-top: 1px solid rgba(255, 220, 224, 0.25);
  border-bottom: 1px solid rgba(255, 220, 224, 0.25);
  z-index: 10;
}

.marquee-banner-gold {
  background: linear-gradient(90deg, #6e2729 0%, #471617 50%, #6e2729 100%);
  color: #f7b2b9;
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(71, 22, 23, 0.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.marquee-track-reverse {
  animation: marqueeScrollReverse 28s linear infinite;
}

.marquee-banner:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.marquee-content i {
  color: #d4af37;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}


/* --- PARALLAX BANNER SECTION (Expérience Écrin) --- */
.parallax-banner-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 3.5rem 0;
  background-color: var(--accent-burgundy);
}

.parallax-bg-layer {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.08) saturate(1.15); /* HIGH CLARITY, NO DARK VEIL */
  transform: scale(1.02);
  transition: transform 0.5s ease-out;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(71, 22, 23, 0.25) 0%, rgba(71, 22, 23, 0.55) 100%),
              linear-gradient(180deg, rgba(71, 22, 23, 0.2) 0%, rgba(71, 22, 23, 0.5) 100%);
  z-index: 2;
}

.parallax-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3.5rem 1.25rem;
}

.parallax-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.parallax-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.parallax-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.2rem;
}

.parallax-tag i {
  font-size: 0.9rem;
}

.parallax-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.parallax-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.parallax-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--accent-burgundy);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* --- HERO AMBIENT PARALLAX DECOR --- */
.hero-bg-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(247, 178, 185, 0.6);
  top: -100px;
  right: -50px;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(255, 220, 224, 0.8);
  bottom: -50px;
  left: -80px;
  animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  100% { transform: scale(1.25) translate(30px, 20px); opacity: 0.55; }
}

.sparkle {
  position: absolute;
  color: var(--accent-gold);
  font-size: 1.2rem;
  opacity: 0.6;
  animation: sparkleTwinkle 4s ease-in-out infinite alternate;
}

.sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 70%; right: 15%; animation-delay: 1.5s; font-size: 0.9rem; }
.sparkle-3 { top: 35%; right: 45%; animation-delay: 2.8s; font-size: 1rem; }

@keyframes sparkleTwinkle {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.2; }
  50% { transform: scale(1.3) rotate(45deg); opacity: 0.85; filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8)); }
  100% { transform: scale(0.9) rotate(90deg); opacity: 0.3; }
}

/* --- 3D TILT CARD STYLING --- */
.tilt-element {
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-element:hover {
  box-shadow: 0 30px 60px rgba(71, 22, 23, 0.22);
}

/* --- RESPONSIVE MEDIA QUERIES FOR LUXURY ADDITIONS --- */
@media (max-width: 992px) {
  .parallax-banner-section {
    min-height: 440px;
  }

  .parallax-card {
    padding: 2.5rem 1.8rem;
  }

  .parallax-title {
    font-size: 1.8rem;
  }

  .parallax-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .marquee-content span {
    font-size: 0.82rem;
    letter-spacing: 1.8px;
  }

  .marquee-banner {
    padding: 0.85rem 0;
  }

  .parallax-title {
    font-size: 1.45rem;
  }

  .parallax-card {
    padding: 2rem 1.2rem;
  }
}

/* ==========================================================================
   PWA UI COMPONENTS (NAV BUTTON, INSTALL TOAST, NETWORK STATUS)
   ========================================================================== */

/* Nav PWA Button */
.btn-pwa-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(71, 22, 23, 0.08);
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);

  &:hover {
    background: var(--accent-burgundy);
    color: #ffffff;
    border-color: var(--accent-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(71, 22, 23, 0.2);
  }
}

/* Floating Install Toast */
.pwa-install-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9995;
  width: calc(100% - 50px);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(71, 22, 23, 0.18);
  border-radius: 20px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 15px 35px rgba(71, 22, 23, 0.18);
  animation: pwaSlideUp 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pwaSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pwa-toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pwa-toast-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(71, 22, 23, 0.2);
  flex-shrink: 0;
}

.pwa-toast-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pwa-toast-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

.pwa-toast-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.btn-pwa-dismiss {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);

  &:hover {
    background: rgba(71, 22, 23, 0.05);
    color: var(--text-primary);
  }
}

.btn-pwa-install {
  background: var(--accent-burgundy);
  border: 1px solid var(--accent-burgundy);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(71, 22, 23, 0.25);

  &:hover {
    background: var(--accent-burgundy-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(71, 22, 23, 0.35);
  }
}

/* Offline Status Toast */
.pwa-status-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9994;
  background: var(--accent-burgundy);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-size: 0.83rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(71, 22, 23, 0.3);
  animation: pwaFadeIn 0.4s ease-out;
}

.pwa-status-toast i {
  color: var(--accent-gold);
}

@keyframes pwaFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .pwa-install-toast {
    bottom: 15px;
    right: 15px;
    left: 15px;
    width: auto;
  }

  .pwa-status-toast {
    bottom: 15px;
    left: 15px;
    right: 15px;
    text-align: center;
    justify-content: center;
  }
}





