/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --color-bg: #0c0b0b;
  /* Deep Warm Black */
  --color-bg-alt: #1c1917;
  /* Warm Dark Grey */
  --color-text: #fafaf9;
  --color-text-muted: #a8a29e;
  --color-accent: #d4af37;
  /* Classic Gold */
  --color-accent-hover: #b5952f;
  /* Darker Gold */

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 8rem;
  --container-width: 1200px;

  --glass-bg: rgba(255, 248, 240, 0.03);
  /* Warmer glass tint */
  --glass-border: 1px solid rgba(212, 175, 55, 0.15);
  /* Subtle gold border */
  --glass-blur: blur(10px);
}

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

html {
  scroll-behavior: smooth;
}

/* Modern Animated Background */
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background: radial-gradient(circle at 10% 20%, rgb(12, 11, 11) 0%, rgb(28, 25, 23) 90%);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    radial-gradient(circle, rgba(251, 191, 36, 0.03) 100%, transparent 40%);
  z-index: -1;
  animation: bgPulse 20s infinite alternate;
}

@keyframes bgPulse {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-2%, -2%);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1.2;
}

h1,
h2,
.logo {
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-lg) 0;
  /* Removed block animation for more granular content reveals */
}



.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-accent);
  color: #000;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.1s ease-out;
  /* Added fast transform */
}

.btn:hover {
  background-color: transparent;
  color: var(--color-accent);
}

.btn-outline {
  display: inline-block;
  /* Fixes magnetic effect */
  background-color: transparent;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.1s ease-out;
}

.btn-outline:hover {
  background-color: transparent;
  /* No yellow fill */
  color: #fff;
  text-shadow: 0 0 10px var(--color-accent);
  /* Glow effect */
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

header.scrolled {
  background: rgba(2, 6, 23, 0.85);
  /* Darker, modern blur */
  padding: 1rem 0;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  /* Logo gradient applied broadly above */
}

.logo span {
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
  /* Override gradient for span if needed, or let it inherit */
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

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

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

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
#hero {
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.3), rgba(2, 6, 23, 0.9)), url('assets/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.9));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
  display: block;
  text-align: center;
  width: 100%;
}

.hero-content span {
  color: var(--color-accent);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #e2e8f0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.price-highlight {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-accent);
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-badge {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 800;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  display: inline-block;
  animation: promoPulse 1.5s infinite ease-in-out;
  border: 2px solid #fff;
  margin-bottom: 0.5rem;
}

@keyframes promoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
}

.hero-content .btn {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  margin-top: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Initial State for Scroll Reveal */
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
  /* Keep hover transitions separate and fast */
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  opacity: 1;
  /* Ensure it stays visible on hover if generic transition issues occur */
}

.card-img {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(2, 6, 23, 0.8) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.card-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
  background: linear-gradient(90deg, #fff, #94a3b8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--glass-bg) 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.pricing-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.pricing-features i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #000;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #fff;
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(90deg, #fff 0%, var(--color-accent) 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ... */

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--color-accent);
  z-index: 10;
}

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

/* Optional Overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Video Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--color-accent);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(28, 25, 23, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-placeholder::before {
  opacity: 1;
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.video-item:hover .video-placeholder i {
  transform: scale(1.2);
  color: #fff;
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-heading);
}

.video-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video iframe/video tag styles (for when real videos are added) */
.video-item iframe,
.video-item video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-instructions h3 {
  font-family: var(--font-body);
  background: none;
  -webkit-text-fill-color: var(--color-accent);
}

/* Contact */
#contact {
  background-color: var(--color-bg-alt);
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-accent);
}

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

input,
textarea {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-body);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background-color: #000;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 90vh;
    padding: 140px 1rem 4rem 1rem;
    /* Espace sécurisé en haut pour le header */
    background-attachment: scroll;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .new-year-badge {
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
  }

  .price-highlight {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: inline-block;
  }

  .hero-content .btn {
    margin-bottom: 3rem;
    /* Espace en bas pour éviter qu'il colle au bord */
    width: 80%;
    /* Plus large pour être facilement cliquable */
    max-width: 300px;
    display: inline-block;
    /* Assure qu'il respecte les margins */
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .menu-toggle {
    display: block;
    color: var(--color-accent);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-bg-alt);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: 0.3s ease;
    z-index: 999;
  }

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-accent);
}

.stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card h4 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.event-type {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.faq-item {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-body);
  background: none;
  -webkit-text-fill-color: var(--color-text);
}

.faq-question i {
  color: var(--color-accent);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

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

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
}

.faq-answer ul li {
  padding: 0.3rem 0;
}

.faq-answer strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float i {
  color: #fff;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

/* Trust Badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.badge-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.badge-item:hover .badge-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scale(1.1);
}

.badge-icon i {
  font-size: 2rem;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.badge-item:hover .badge-icon i {
  color: #000;
}

.badge-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  background: none;
  -webkit-text-fill-color: var(--color-text);
}

.badge-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Social Media Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-links a i {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-links a:hover i {
  color: #000;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #000;
}

/* Form Messages */
#form-message {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
}

#form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

#form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badges-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .badge-item {
    padding: 1.5rem 0.75rem;
  }

  .badge-icon {
    width: 60px;
    height: 60px;
  }

  .badge-icon i {
    font-size: 1.5rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links a i {
    font-size: 1.1rem;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Stats Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.stat-item:hover .stat-icon i {
  color: #000;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Service Area Section */
.service-area-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.area-map {
  position: relative;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  padding: 2rem;
  border-radius: 24px;
}

.map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.map-region {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(212, 175, 55, 0.2);
  stroke-width: 1.5;
  transition: all 0.5s ease;
}

.area-map:hover .map-region {
  fill: rgba(212, 175, 55, 0.05);
  stroke: rgba(212, 175, 55, 0.4);
}

.city-group {
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-pin {
  fill: var(--color-accent);
  stroke: #fff;
  stroke-width: 1.5;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-pulse {
  fill: var(--color-accent);
  opacity: 0.5;
  transform-origin: center;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.city-label {
  fill: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.city-group:hover .map-pin {
  fill: #fff;
  stroke: var(--color-accent);
  transform: scale(1.3);
}

.city-group:hover .city-label {
  opacity: 1;
  fill: var(--color-accent);
  font-size: 12px;
}

.map-overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatOverlay 3s ease-in-out infinite;
}

@keyframes floatOverlay {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.area-details h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.department-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.department-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.department-item i {
  color: var(--color-accent);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-area-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .area-map {
    padding: 1rem;
  }

  .city-label {
    display: none;
    /* Cache les labels sur mobile pour éviter la surcharge */
  }

  .city-group:hover .city-label {
    display: block;
    font-size: 10px;
  }

  /* Slider Mobile pour le matériel */
  .equipment-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 1rem 3rem;
    margin-left: -1rem;
    margin-right: -1rem;
    scrollbar-width: none;
    /* Firefox */
  }

  .equipment-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .equipment-item {
    flex: 0 0 260px;
    scroll-snap-align: center;
    padding: 2rem 1.5rem;
  }

  /* Indicateur de scroll pour le slider */
  .equipment-grid::after {
    content: '← Glissez pour voir plus →';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-accent);
    opacity: 0.6;
    animation: pulseAlpha 2s infinite;
  }
}

@keyframes pulseAlpha {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* Equipment Section */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.equipment-item {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.equipment-item:hover {
  transform: translateY(-15px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.equipment-image {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.equipment-item:hover .equipment-image {
  background: var(--color-accent);
  transform: rotateY(180deg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.equipment-image i {
  font-size: 3rem;
  color: var(--color-accent);
  transition: all 0.4s ease;
}

.equipment-item:hover .equipment-image i {
  color: #000;
  transform: rotateY(-180deg);
}


.equipment-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.equipment-item p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Me Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scale(1.1);
}

.why-icon i {
  font-size: 2.5rem;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.why-item:hover .why-icon i {
  color: #000;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.why-item p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Gallery Placeholders */
.gallery-placeholder {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(28, 25, 23, 0.9) 100%);
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.gallery-placeholder:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(28, 25, 23, 0.95) 100%);
}

.gallery-placeholder i {
  font-size: 3rem;
  color: var(--color-accent);
}

.gallery-placeholder p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Google Reviews Section */
.google-reviews-container {
  display: flex;
  justify-content: center;
}

.google-widget {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  transition: all 0.3s ease;
}

.google-widget:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-header h3 {
  font-family: var(--font-heading);
  background: none;
  -webkit-text-fill-color: var(--color-accent);
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1rem;
}

.google-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  color: #fff !important;
}

/* Responsive for new sections */
@media (max-width: 768px) {

  .equipment-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .equipment-image {
    width: 80px;
    height: 80px;
  }

  .equipment-image i {
    font-size: 2.5rem;
  }

  .why-icon {
    width: 70px;
    height: 70px;
  }

  .why-icon i {
    font-size: 2rem;
  }

  .google-widget {
    padding: 2rem 1.5rem;
  }
}

/* Enhanced Booking Form Styles */
select {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

select:focus {
  outline: none;
  border-color: var(--color-accent);
}

select option {
  background: var(--color-bg-alt);
  color: #fff;
  padding: 0.5rem;
}

input[type="date"] {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  /* Ensure similar height to text inputs */
  color-scheme: dark;
  /* Force dark calendar popup */
}

input[type="date"]:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Date input color scheme & alignment */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

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

.floating-label {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  background: var(--color-bg-alt);
  padding: 0 0.5rem;
  font-size: 0.75rem;
  color: var(--color-accent);
  pointer-events: none;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-notice i {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-notice span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Guarantees Section */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guarantee-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.guarantee-card:hover::before {
  transform: scaleX(1);
}

.guarantee-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.guarantee-card:hover .guarantee-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.guarantee-icon i {
  font-size: 2.8rem;
  color: var(--color-accent);
  transition: all 0.4s ease;
}

.guarantee-card:hover .guarantee-icon i {
  color: #000;
  transform: scale(1.1);
}

.guarantee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.guarantee-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-badge {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.guarantee-badge i {
  color: var(--color-accent);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.guarantee-card:hover .guarantee-badge i {
  color: #000;
}

.guarantee-badge span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.guarantee-card:hover .guarantee-badge span {
  color: #000;
}

/* Responsive for enhanced form and guarantees */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantee-icon {
    width: 75px;
    height: 75px;
  }

  .guarantee-icon i {
    font-size: 2.2rem;
  }

  .guarantee-card {
    padding: 2rem 1.5rem;
  }
}


/* Social Guestbook Styles */
.social-guestbook {
  gap: 2.5rem;
  margin-top: 4rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.social-user h4 {
  font-size: 1rem;
  margin: 0;
  color: #fff;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}

.social-user .status {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  display: block;
}

.social-header i {
  font-size: 1.3rem;
}

.whatsapp .social-header i {
  color: #25D366;
}

.instagram .social-header i {
  color: #E1306C;
}

.messenger .social-header i {
  color: #0084FF;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0 15px 15px 15px;
  position: relative;
}

.chat-bubble p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.chat-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

.chat-meta i {
  color: #34B7F1;
}

/* Interactive Map Styles */
.area-map {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: auto;
  max-height: 450px;
}

.map-region {
  fill: rgba(212, 175, 55, 0.05);
  stroke: rgba(212, 175, 55, 0.3);
  stroke-width: 1;
  transition: all 0.3s ease;
}

.map-pin {
  fill: var(--color-accent);
  stroke: #000;
  stroke-width: 0.5;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pin-group:hover .map-pin {
  transform: scale(1.5);
  fill: #fff;
  filter: drop-shadow(0 0 8px var(--color-accent));
}

.pin-group text {
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.pin-group:hover text {
  opacity: 1;
  font-size: 12px;
}

.map-pulse {
  fill: var(--color-accent);
  opacity: 0.3;
  animation: mapPulse 2s infinite;
  transform-origin: center;
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .social-guestbook {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0 !important;
  }
}

/* --- PRESTIGE FINISHES --- */

/* 1. Custom Selection */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* 2. Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-accent), #a38128);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a38128;
}

/* 3. Prestige Loader */
#prestige-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#prestige-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.8) translate3d(0, 0, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  perspective: 1000px;
  animation: loaderLogo 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.15s both;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto;
  will-change: width;
  animation: loaderLine 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s both;
}

@keyframes loaderLogo {
  0% {
    opacity: 0;
    transform: scale(0.8) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

@keyframes loaderLine {
  to {
    width: 150px;
  }
}

/* 4. Magnetic Hover Effect on Buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/* 5. Smooth Section Reveal */
/* This rule is now redundant as .section is no longer animated as a block.
   Individual elements within sections will be animated instead. */
/*
.section {
  opacity: 0 !important;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
  opacity: 1 !important;
  transform: translateY(0);
}
*/

/* --- AGENCY FINISHES --- */

/* Cleaned up remnant */

/* 7. Lightbox & Gallery Enhancements */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  background: var(--color-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.5) blur(2px);
}

/* Luxury Magnifying Glass */
.gallery-item::after {
  content: '\f002';
  /* Search icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

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

.lightbox {
  display: none;
  position: fixed;
  z-index: 11000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

/* Photo Gold Flash Effect */
.flash-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-accent) 0%, rgba(255, 184, 0, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 12000;
  pointer-events: none;
  opacity: 0;
  animation: flashAnim 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes flashAnim {
  0% {
    opacity: 0.8;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  object-fit: contain;
  background-color: #000;
  animation: ultraReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Luxury Border Drawing Effect (Removed) */

@keyframes ultraReveal {
  0% {
    transform: scale(0.9) translateY(20px);
    filter: blur(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* Shimmer Highlight Effect on Lightbox Content */
.lightbox-content::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.2) 50%, transparent 55%);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 11002;
}

.close-lightbox:hover {
  color: var(--color-accent);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 8. Extra Aération (Agency Standard) */
.section {
  padding: 8rem 0;
  /* Removed !important as per instruction's implied reset */
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0 !important;
  }
}

/* 9. Luxury Hover Effects for Service Cards (L'Art de Recevoir) */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-card .card-img {
  overflow: hidden;
  position: relative;
}

.service-card .card-img img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .card-img img {
  transform: scale(1.1);
}

/* Luxury Light Beam Reveal */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover::before {
  left: 150%;
}

/* Gold Border Accent on Hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-accent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 3;
}

.service-card:hover::after {
  opacity: 0.5;
}

/* --- NEW YEAR THEME --- */
.new-year-title {
  position: relative;
  z-index: 10;
}

.gradient-text {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.countdown-segment {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  min-width: 100px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.countdown-segment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: scan 2s infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  font-family: var(--font-heading);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

@media (max-width: 768px) {
  .countdown-segment {
    min-width: 70px;
    padding: 0.8rem 0.5rem;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.6rem;
  }
}

/* --- TIMELINE STYLES --- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  width: 2px;
  background: rgba(212, 175, 55, 0.3);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.timeline-item {
  padding: 1rem 3rem;
  position: relative;
  background: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.timeline-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -50px;
  /* Position for left items */
  top: 20px;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.timeline-item.right .timeline-icon {
  left: -50px;
  right: auto;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
    /* Move line slightly right */
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    /* More space for the icon */
    padding-right: 0;
    text-align: left;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left {
    text-align: left;
  }

  /* Reset icon position for mobile to sit on the line */
  .timeline-icon {
    left: -65px !important;
    /* Position correctly on the line outside content */
    right: auto;
    top: 20px;
    transform: none;
    /* Center vertically */
    margin-top: 0;
  }

  /* Reset specific right-side adjustments */
  .timeline-item.right .timeline-icon {
    left: -65px !important;
  }

  .timeline-content {
    padding: 1.5rem;
    /* Ensure padding remains */
  }
}

/* --- 3D TILT EFFECT --- */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.tilt-content {
  transform: translateZ(20px);
}

/* About Section Refined */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-text h2 {
  margin-bottom: 0.5rem;
}

.about-label {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  display: block;
}

@media (max-width: 1024px) {
  .about-container {
    display: block !important;
    text-align: center;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* Force image container to fit */
  .about-image {
    display: block !important;
    margin: 0 auto 2rem auto !important;
    width: 100% !important;
    max-width: 90vw !important;
    height: auto !important;
    box-shadow: none !important;
    float: none !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
    margin: 0 auto;
  }

  /* Force text container to fit */
  .about-text {
    display: block !important;
    width: 100% !important;
    max-width: 90vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .about-text h2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal !important;
    width: 100%;
  }

  .about-label {
    display: block !important;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    white-space: normal !important;
    word-break: break-word;
  }

  .contact-info,
  .contact-form {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .contact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }



  .about-text {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* --- PREMIUM SCROLL REVEALS --- */
/* Base hidden state for granular content */
.gallery-item,
.equipment-item,
.contact-item,
.video-item,
.timeline-item,
.faq-item,
.social-card,
.badge-item,
.about-image,
.about-text,
.footer-col,
.contact-form,
.text-center,
/* Section Headers */
.service-area-content,
.why-item,
.hero-content,
.footer-bottom {
  opacity: 0;
  will-change: opacity, transform;
}

/* Keyframe Animation for Entrance */
@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Apply Animation when Visible */
.gallery-item.visible,
.equipment-item.visible,
.contact-item.visible,
.video-item.visible,
.timeline-item.visible,
.faq-item.visible,
.social-card.visible,
.badge-item.visible,
.about-image.visible,
.about-text.visible,
.footer-col.visible,
.contact-form.visible,
.text-center.visible,
.service-area-content.visible,
.why-item.visible,
.hero-content.visible,
.footer-bottom.visible {
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}