/* ========== VARIABLES & BASE ========== */
:root {
  --primary-color: #ddb5ba;
  --primary-dark: #c89ca2;
  --secondary-color: #f8f4f1;
  --dark: #2c2c2c;
  --light: #ffffff;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
  color: var(--dark);
  overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ========== HERO ABOUT ========== */
.about-hero {
  margin-top: 70px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.3) 0%,
    rgba(248, 244, 241, 1) 100%
  );
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(221, 181, 186, 0.5) 35px,
    rgba(221, 181, 186, 0.5) 70px
  );
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(70px);
  }
}

.about-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: slideFromLeft 1s ease-out;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.hero-image {
  position: relative;
  animation: slideFromRight 1s ease-out;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-decoration {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========== STORY SECTION ========== */
.story-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.story-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.story-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.story-image.visible {
  opacity: 1;
  transform: scale(1);
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ========== TIMELINE ========== */
.timeline-section {
  padding: 2rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.timeline-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  opacity: 0.03;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ddb5ba" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 0rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
  left: 55%;
  padding-left: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  right: 5%;
  padding-right: 3rem;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.3);
  background: var(--primary-color);
}

.timeline-content {
  position: relative;
  width: 50%;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(221, 181, 186, 0.3);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.timeline-description {
  color: #666;
  line-height: 1.6;
}

/* ========== TEAM SECTION ========== */
.team-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  transition: all 0.6s ease;
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 181, 186, 0.3);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== VALUES SECTION ========== */
.values-section {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.1) 0%,
    rgba(248, 244, 241, 0.5) 100%
  );
}

.values-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(221, 181, 186, 0.3);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: rotate(360deg) scale(1.1);
}

.value-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.value-description {
  color: #666;
  line-height: 1.6;
}

/* ========== TESTIMONIALS SLIDER ========== */
.testimonials-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 2rem;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.author-event {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 30px;
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-white {
  background: white;
  color: var(--primary-color);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-hero-content {
    grid-template-columns: 1fr;
  }
  .story-content {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    margin-bottom: 2rem;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
    right: auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    text-align: left !important;
  }
  .timeline-dot {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
}

/* ========== HERO CONTACT ========== */
.contact-hero {
  margin-top: 70px;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.2) 0%,
    rgba(248, 244, 241, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient);
  top: 10%;
  right: 5%;
  animation: float-1 15s infinite ease-in-out;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  bottom: 10%;
  left: 10%;
  animation: float-2 20s infinite ease-in-out;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  top: 50%;
  right: 20%;
  animation: float-3 18s infinite ease-in-out;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(30px, 20px) rotate(240deg);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -30px) scale(1.2);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-20px, 20px);
  }
  75% {
    transform: translate(20px, -20px);
  }
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSlide 0.8s ease-out;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== CONTACT INFO CARDS ========== */
.contact-info {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 181, 186, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 181, 186, 0.3);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  transform: rotateY(360deg);
}

.info-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 600;
}

.info-text {
  color: #666;
  line-height: 1.6;
}

.info-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.info-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ========== CONTACT FORM & MAP SECTION ========== */
.contact-main {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ========== FORM SECTION ========== */
.form-section {
  padding: 3rem;
  background: white;
  position: relative;
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-description {
  color: #666;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  transition: var(--transition);
  background: #f9f9f9;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(221, 181, 186, 0.2);
}

.form-input:focus + .form-label {
  color: var(--primary-color);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-icon {
  position: absolute;
  right: 1rem;
  top: 2.8rem;
  color: #999;
  pointer-events: none;
  transition: color 0.3s;
}

.form-input:focus ~ .input-icon {
  color: var(--primary-color);
}

/* Honeypot field (anti-spam) */
.website-field {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.privacy-text {
  font-size: 0.8rem;
  color: #999;
}

.privacy-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.btn-submit {
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(221, 181, 186, 0.4);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit.loading span {
  visibility: hidden;
}

.btn-submit.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== MAP SECTION ========== */
.map-section {
  position: relative;
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  color: white;
}

.map-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.map-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.map-address {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.map-iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.1;
}

.map-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid white;
}

.map-circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation: pulse 3s infinite;
}

.map-circle-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation: pulse 3s infinite 1s;
}

.map-circle-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 30%;
  animation: pulse 3s infinite 2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

/* ========== HORAIRES SECTION ========== */
.hours-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hours-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hour-item {
  padding: 1.5rem;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.1) 0%,
    rgba(248, 244, 241, 0.5) 100%
  );
  transition: var(--transition);
}

.hour-item:hover {
  transform: scale(1.05);
  background: var(--gradient);
  color: white;
}

.hour-day {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.hour-time {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ========== SUCCESS MESSAGE ========== */
.success-message {
  display: none;
  position: fixed;
  top: 100px;
  right: 2rem;
  background: white;
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  animation: slideInRight 0.5s ease;
}

.success-message.show {
  display: block;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.success-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 50px;
  height: 50px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.success-text h3 {
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.success-text p {
  color: #666;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1050px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .map-section {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .contact-title {
    font-size: 2rem;
  }
  .form-section,
  .map-section {
    padding: 2rem;
  }
}

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

/* ========== HERO DÉCORATION ========== */
.decoration-hero {
  margin-top: 70px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: zoomOut 10s linear infinite;
}

@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.slide-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.indicator {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indicator.active {
  background: white;
}

.indicator::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: white;
  animation: progress 5s linear;
}

.indicator.active::after {
  animation: progress 5s linear;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

.service-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.3;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(221, 181, 186, 0.4);
}

.service-image {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.2);
}

.service-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover .service-content {
  color: white;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  background: white;
  color: var(--primary-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-card:hover .service-features li::before {
  color: white;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-card:hover .service-price {
  color: white;
}

/* ========== PROCESS SECTION ========== */
.process-section {
  padding: 5rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.process-decoration {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle at center,
    rgba(221, 181, 186, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 60s linear infinite;
}

.process-timeline {
  max-width: 1200px;
  margin: 3rem auto;
  position: relative;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.2s;
}

.process-step:nth-child(2) {
  animation-delay: 0.4s;
}

.process-step:nth-child(3) {
  animation-delay: 0.6s;
}

.process-step:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
  border-color: var(--primary-dark);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient);

  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  width: 200%;
  height: 200%;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: var(--primary-dark);
}

.filter-btn span {
  position: relative;
  z-index: 1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeScale 0.6s ease forwards;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-category {
  color: var(--primary-color);
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

/* ========== PACKAGES SECTION ========== */
.packages-section {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.1) 0%,
    rgba(248, 244, 241, 0.5) 100%
  );
}

.packages-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient);
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.package-card:hover::before {
  opacity: 1;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(221, 181, 186, 0.4);
}

.package-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-color);
}

.package-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-family: "Playfair Display", serif;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.package-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #999;
}

.package-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: #4caf50;
  font-size: 1.2rem;
}

.package-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.4);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  margin-top: 3rem;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 30px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
  from {
    transform: translateY(100vh) rotate(0deg);
  }
  to {
    transform: translateY(-100vh) rotate(360deg);
  }
}

.particle:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 30%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 25px;
  height: 25px;
  left: 50%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 10px;
  height: 10px;
  left: 70%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  width: 30px;
  height: 30px;
  left: 90%;
  animation-delay: 8s;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cta-white {
  background: white;
  color: var(--primary-color);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
    height: 350px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-line {
    display: none;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .cta-title {
    font-size: 2rem;
  }
}

/* ========== VARIABLES & RESET ========== */
:root {
  --primary-color: #ddb5ba;
  --primary-dark: #c89ca2;
  --secondary-color: #f8f4f1;
  --dark: #2c2c2c;
  --light: #ffffff;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
}

.loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primary-color) transparent transparent transparent;
}

.loader-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.loader-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.loader-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 300;
  letter-spacing: 2px;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.1) 0%,
    rgba(248, 244, 241, 0.5) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.floating-element:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.floating-element:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -10px) rotate(270deg);
  }
}

.hero-content {
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: heroEntry 1.2s ease-out;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(221, 181, 186, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 181, 186, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* ========== SERVICES PREVIEW ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(221, 181, 186, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.service-card-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.service-card-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.service-card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 1rem;
}

/* ========== CTA SECTION ========== */
.cta {
  background: var(--gradient);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 5rem 0;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: var(--primary-color);
  padding: 1rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: #e9e9e9;

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.bgrose {
  background-color: #ddb5ba;
  width: 100%;
  color: #f8f4f1;
}
.bgrose > .section-subtitle p {
  color: #f8f4f1;
}
.bgblanc {
  background-color: #fff;
  width: 100%;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1050px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .cta {
    padding: 2rem;
  }
}

/* ========== IMPORT STYLES DE BASE ========== */
:root {
  --primary-color: #ddb5ba;
  --primary-dark: #c89ca2;
  --secondary-color: #f8f4f1;
  --dark: #2c2c2c;
  --light: #ffffff;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--secondary-color);
  color: var(--dark);
  overflow-x: hidden;
}

/* ========== NAVIGATION (Répétée) ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

/* ========== PAGE HEADER ========== */
.page-header {
  margin-top: 70px;
  padding: 5rem 2rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.15) 0%,
    rgba(248, 244, 241, 0.7) 100%
  );
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.page-header-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== CATALOGUE SECTION ========== */
.catalog-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ========== FILTRES ========== */
.catalog-filters {
  background: white;
  border-radius: 20px;
  padding: 2rem 0.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(221, 181, 186, 0.1);
}

.search-box i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.sort-select {
  padding: 0.8rem 2rem 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: white;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.2rem;
}

.sort-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.filter-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 0.5rem;
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--dark);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.filter-btn:hover::before {
  width: 150%;
  height: 150%;
}

.filter-btn:hover {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ========== GRILLE DE PRODUITS ========== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  animation: fadeInUp 0.6s ease both;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(221, 181, 186, 0.3);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(
      45deg,
      #f0f0f0 25%,
      transparent 25%,
      transparent 75%,
      #f0f0f0 75%,
      #f0f0f0
    ),
    linear-gradient(
      45deg,
      #f0f0f0 25%,
      transparent 25%,
      transparent 75%,
      #f0f0f0 75%,
      #f0f0f0
    );
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.badge.featured {
  background: var(--gradient);
  color: white;
}

.badge.new {
  background: #4caf50;
  color: white;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.btn-quick-view {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-quick-view:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  width: 80%;
  padding-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.product-price small {
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
}
.product-footer button {
  position: absolute;
  right: 0;
}
.btn-add-quote {
  background: var(--gradient);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-quote:hover {
  transform: rotate(90deg) scale(1.1);
}

.btn-add-quote.added {
  animation: success 0.5s ease;
}

@keyframes success {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    background: #4caf50;
  }
  100% {
    transform: scale(1);
  }
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  padding: 0.8rem 1.2rem;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.pagination button:hover:not(.active):not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination button.active {
  background: var(--gradient);
  color: white;
  border-color: var(--primary-color);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== MODAL PRODUIT ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 900px;
  max-height: 90vh;
  overflow: auto;
  margin: 2rem;
  animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.product-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.product-modal-images {
  position: relative;
}

.product-modal-images .main-image {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.thumbnail {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
}

.product-modal-info {
  padding: 1rem;
}

.product-modal-info .category {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-modal-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-modal-info .price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-modal-info .description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-modal-info .actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: white;
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.4);
}

/* ========== LOADER CATALOGUE ========== */
.catalog-loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.catalog-loader::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .product-modal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .page-title {
    font-size: 2rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .filters-header {
    flex-direction: column;
  }
  .search-box {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    margin: 1rem;
  }
  .product-modal {
    padding: 1rem;
  }
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

@media (max-width: 1050px) {
  .hamburger {
    display: flex;
  }
}

/* ========== VARIABLES & BASE ========== */
:root {
  --primary-color: #ddb5ba;
  --primary-dark: #c89ca2;
  --secondary-color: #f8f4f1;
  --dark: #2c2c2c;
  --light: #ffffff;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== HERO PERSONNALISATION ========== */
.perso-hero {
  margin-top: 70px;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.pattern-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 50px 50px;
  animation: slide 10s linear infinite;
}

@keyframes slide {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease both;
}

.hero-feature:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-feature:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-feature:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-feature i {
  font-size: 1.5rem;
  color: #ffd700;
}

/* ========== CONFIGURATEUR SECTION ========== */
.configurator-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
}
.section-subtitleblanc {
  font-size: 1.2rem;
  color: #f8f4f1;
  text-align: center;

  font-weight: 300;
}

.configurator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.preview-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(
      135deg,
      #f5f5f5 25%,
      transparent 25%,
      transparent 75%,
      #f5f5f5 75%,
      #f5f5f5
    ),
    linear-gradient(
      135deg,
      #f5f5f5 25%,
      transparent 25%,
      transparent 75%,
      #f5f5f5 75%,
      #f5f5f5
    );
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-item {
  width: 80%;
  height: 80%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  padding: 2rem;
}

.preview-text {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1rem;
}

.preview-subtext {
  color: #666;
  font-size: 1rem;
}

.preview-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.decoration-element {
  position: absolute;
  opacity: 0.2;
}

.decoration-element.flower {
  width: 50px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='20' fill='%23ddb5ba'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}

.decoration-element.flower:nth-child(1) {
  top: 10%;
  left: 10%;
}

.decoration-element.flower:nth-child(2) {
  top: 10%;
  right: 10%;
}

.decoration-element.flower:nth-child(3) {
  bottom: 10%;
  left: 10%;
}

.decoration-element.flower:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

.options-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.option-group {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 1.5rem;
}

.option-label {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.option-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.option-choice {
  padding: 0.8rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.option-choice::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.option-choice:hover::before {
  width: 200%;
  height: 200%;
}

.option-choice:hover,
.option-choice.active {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.option-choice.active {
  background: var(--gradient);
  color: white;
}

.option-choice span {
  position: relative;
  z-index: 1;
}

.color-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 3px solid transparent;
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.active {
  border-color: var(--dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.color-option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

.text-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(221, 181, 186, 0.1);
}

.configurator-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-action {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-save {
  background: var(--gradient);
  color: white;
}

.btn-save:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.4);
}

.btn-reset {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-reset:hover {
  background: var(--primary-color);
  color: white;
}

/* ========== PRODUITS SECTION ========== */
.products-section {
  padding: 5rem 2rem;
  background: white;
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.5s ease;
  z-index: 0;
}

.tab-btn:hover::before,
.tab-btn.active::before {
  left: 0;
}

.tab-btn:hover,
.tab-btn.active {
  color: white;
  border-color: var(--primary-color);
}

.tab-btn span {
  position: relative;
  z-index: 1;
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  animation: cardEntry 0.6s ease forwards;
}

@keyframes cardEntry {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(221, 181, 186, 0.3);
}

.product-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-customizable {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #4caf50;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.product-options {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.option-tag {
  padding: 0.3rem 0.8rem;
  background: #f0f0f0;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.btn-customize {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.btn-customize:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(221, 181, 186, 0.4);
}

/* ========== SHOWCASE SECTION ========== */
.showcase-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 30px;
}

.showcase-track {
  display: flex;
  transition: transform 0.5s ease;
}

.showcase-item {
  min-width: 100%;
  position: relative;
  height: 500px;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 3rem;
  color: white;
}

.showcase-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.showcase-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  pointer-events: auto;
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

/* ========== PROCESS CARDS ========== */
.process-cards {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(221, 181, 186, 0.1) 0%,
    rgba(248, 244, 241, 0.5) 100%
  );
}

.cards-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.05;
  transition: transform 0.5s ease;
}

.process-card:hover::before {
  transform: rotate(45deg);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 181, 186, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: transform 0.5s ease;
}

.process-card:hover .process-icon {
  transform: rotate(360deg) scale(1.1);
}

.process-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.process-text {
  color: #666;
  line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 30px;
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn-cta {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .configurator-container {
    grid-template-columns: 1fr;
  }
  .preview-section {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* Styles pour le modal */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.product-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.gallery-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  transition: all 0.3s ease;
}

.gallery-nav button:hover {
  background: var(--primary-color);
  color: white;
}

.gallery-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--primary-color);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-title {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #333;
  margin: 0;
}

.modal-price {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 600;
}

.modal-price small {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.modal-section {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.modal-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.modal-section p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
}

.info-badge i {
  color: var(--primary-color);
}

.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-quote-modal {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.btn-quote-modal:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.bestseller-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .gallery-main {
    height: 300px;
  }

  .modal-title {
    font-size: 24px;
  }
}
/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1050px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .cta {
    padding: 2rem;
  }
}
/* Correction pour les boutons de filtre - s'assurer que le texte est visible */
.filter-btn {
  position: relative;
  z-index: 0;
}

.filter-btn::before {
  z-index: -1;
}

.filter-btn * {
  position: relative;
  z-index: 1;
}

/* ========== TESTIMONIALS CAROUSEL IMPROVEMENTS ========== */
.testimonials-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  position: relative;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
  min-height: 150px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.author-event {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Boutons de navigation */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(221, 181, 186, 0.3);
}

.testimonial-prev {
  left: 2%;
}

.testimonial-next {
  right: 2%;
}

.testimonial-nav {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot:hover {
  background: var(--primary-dark);
  transform: scale(1.2);
}

.nav-dot.active {
  background: var(--primary-color);
  width: 35px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonial-slide {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
    min-height: 200px;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonial-prev {
    left: -10px;
  }

  .testimonial-next {
    right: -10px;
  }

  .quote-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-prev {
    left: 5px;
  }

  .testimonial-next {
    right: 5px;
  }

  .testimonial-btn {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ========== MENTIONS LÉGALES PAGE ========== */
.legal-content {
  padding: 4rem 2rem;
  background: var(--secondary-color);
  min-height: 100vh;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-section {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.legal-section:hover {
  box-shadow: 0 10px 30px rgba(221, 181, 186, 0.2);
  transform: translateY(-2px);
}

.legal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
}

.legal-text {
  color: #555;
  line-height: 1.8;
}

.legal-text p {
  margin-bottom: 1rem;
}

.legal-text strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-text ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.legal-text ul li {
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.legal-text ul li::before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: -0.2rem;
}

.legal-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.legal-text a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Contact box spéciale */
.legal-contact {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 3rem;
}

.contact-box {
  max-width: 600px;
  margin: 0 auto;
}

.contact-box i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-box p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-box .btn {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1rem;
  }

  .legal-section {
    padding: 1.5rem;
  }

  .legal-title {
    font-size: 1.5rem;
  }

  .legal-text h3 {
    font-size: 1.2rem;
  }

  .legal-text {
    font-size: 0.95rem;
  }

  .legal-contact {
    padding: 2rem 1.5rem;
  }

  .contact-box i {
    font-size: 2.5rem;
  }

  .contact-box h3 {
    font-size: 1.5rem;
  }
}

/* ========== BOUTIQUE COMING SOON PAGE ========== */

/* Hero Section */
.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: white;
  animation: fadeInUp 1s ease;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

.coming-soon-badge i {
  color: #ffd700;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.coming-soon-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.coming-soon-description {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.coming-soon-icon {
  font-size: 5rem;
  margin-top: 3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shop Preview Section */
.shop-preview-section {
  padding: 6rem 2rem;
  background: var(--secondary-color);
}

.shop-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.preview-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.preview-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(221, 181, 186, 0.3);
}

.preview-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.preview-card:hover .preview-icon {
  transform: scale(1.1) rotate(5deg);
}

.preview-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.preview-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.preview-features {
  list-style: none;
  padding: 0;
}

.preview-features li {
  padding: 0.5rem 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-features i {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Why Section */
.shop-why-section {
  padding: 6rem 2rem;
  background: white;
}

.shop-why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-why-content {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  text-align: left;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.why-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.why-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(221, 181, 186, 0.3);
}

.why-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.why-text p {
  color: #666;
  line-height: 1.8;
}

/* Notification Section */
.notification-section {
  padding: 6rem 2rem;
  background: var(--gradient);
  color: white;
}

.notification-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.notification-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: swing 2s infinite;
}

@keyframes swing {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.notification-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notification-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.notification-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-inline .form-control {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-size: 1rem;
}

.form-group-inline .btn {
  padding: 1rem 2rem;
  white-space: nowrap;
  border-radius: 50px;
}

.form-note {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.form-note i {
  color: var(--primary-color);
}

.notification-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.notification-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* Countdown Section */
.countdown-section {
  padding: 6rem 2rem;
  background: var(--dark);
  color: white;
  text-align: center;
}

.countdown-container {
  max-width: 1000px;
  margin: 0 auto;
}

.countdown-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.countdown-display {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.countdown-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.countdown-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.countdown-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }

  .coming-soon-subtitle {
    font-size: 1.5rem;
  }

  .coming-soon-description {
    font-size: 1rem;
  }

  .coming-soon-icon {
    font-size: 3rem;
  }

  .preview-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-group-inline {
    flex-direction: column;
  }

  .countdown-display {
    gap: 1rem;
  }

  .countdown-box {
    min-width: 100px;
    padding: 1.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .notification-title {
    font-size: 2rem;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 1.2rem;
  }

  .countdown-box {
    min-width: 80px;
    padding: 1rem;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-buttons {
    flex-direction: column;
  }
}
