/* ===== VARIABLES ===== */
:root {
  --bg: #e0e5ec;
  --shadow: 9px 9px 16px rgba(163, 177, 198, .6), -9px -9px 16px rgba(255, 255, 255, .5);
  --shadow-inset: inset 6px 6px 10px rgba(163, 177, 198, .4), inset -6px -6px 10px rgba(255, 255, 255, .7);
  --shadow-hover: 12px 12px 20px rgba(163, 177, 198, .7), -12px -12px 20px rgba(255, 255, 255, .6);
  --gold: #D4AF37;
  --navy: #1a2947;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --gradient: linear-gradient(135deg, #D4AF37 0%, #E8C547 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* ===== COMPONENTS ===== */
.neomorph-card {
  background: var(--bg);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: .3s;
}

.neomorph-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.neomorph-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.5rem;
  background: var(--bg);
  border-radius: 3rem;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .9rem;
}

.neomorph-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border-radius: .75rem;
  box-shadow: var(--shadow-inset);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: .3s;
}

.neomorph-input:focus {
  box-shadow: var(--shadow-inset), 0 0 0 3px rgba(212, 175, 55, .2);
  outline: none;
}

.btn-neomorph {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 2rem;
  background: var(--bg);
  border-radius: 3rem;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .95rem;
  transition: .3s;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.btn-neomorph:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-neomorph:active {
  transform: translateY(0);
  box-shadow: var(--shadow-inset);
}

.btn-primary {
  background: var(--gradient);
  color: var(--navy);
  font-weight: 700;
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.05rem;
}

.btn-small {
  padding: .625rem 1.5rem;
  font-size: .875rem;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(224, 229, 236, .95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 1rem;
}

.logo:hover {
  transform: translateY(-2px);
}

/* Wrapper image logo */
.logo-image-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.logo:hover .logo-image-wrapper {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

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

/* Effet subtil de brillance */
.logo-image-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.3) 50%,
    transparent 60%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.logo:hover .logo-image-wrapper::after {
  transform: rotate(45deg) translateX(100%);
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  letter-spacing: 1.5px;
  color: #E8C547;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.logo:hover .logo-tagline {
  opacity: 1;
  letter-spacing: 2.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo-image-wrapper {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .logo-image-wrapper {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-tagline {
    display: none;
  }
}

.logo.logo-only .logo-content {
  display: none;
}

.logo.logo-only .logo-image-wrapper {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  .logo.logo-only .logo-image-wrapper {
    width: 55px;
    height: 55px;
  }
}

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

.nav-link {
  font-weight: 600;
  position: relative;
  padding: .5rem 0;
  transition: .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
  transition: .3s;
}

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

.nav-toggle {
  display: none;
  padding: .75rem;
  background: var(--bg);
  border-radius: .75rem;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.slideshow-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.6);
}

.dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.2);
}

.dot.active {
  background: #D4AF37;
  border-color: white;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.5);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(212,175,55,0.95);
  border: 2px solid rgba(255,255,255,0.8);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #1a2947;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.5);
}

.hero-brand {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 8px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 8px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.6);
  margin: 2rem 0;
  line-height: 1.1;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.hero-services {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 8px rgba(0,0,0,0.7);
  background: rgba(26,41,71,0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 3rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e0e5ec 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-content .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-text .subtitle {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}

.about-text .highlight {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1.5rem;
  background: rgba(212,175,55,0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.quote-box {
  background: var(--navy);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border-left: 6px solid var(--gold);
  font-style: italic;
  font-size: 1.15rem;
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

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

.service-card.featured {
  background: var(--gradient);
  color: var(--navy);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 3rem;
  font-size: .875rem;
  font-weight: 600;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.service-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card.featured .service-description {
  color: rgba(26,41,71,.8);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-weight: 500;
}

.service-features i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== PRESTATIONS SECTION ===== */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.prestation-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.prestation-card:hover {
  transform: translateY(-10px);
}

.prestation-card.featured {
  box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient);
  color: var(--navy);
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.prestation-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.prestation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prestation-card:hover .prestation-image img {
  transform: scale(1.15);
}

.prestation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,41,71,0.95) 0%, rgba(212,175,55,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
  text-align: center;
}

.prestation-card:hover .prestation-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.overlay-content p {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.prestation-content {
  padding: 2rem;
}

.prestation-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient);
  color: var(--navy);
  border-radius: 3rem;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.prestation-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.prestation-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.prestation-features {
  list-style: none;
  margin-bottom: 2rem;
}

.prestation-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.prestation-features i {
  color: var(--gold);
  font-size: 1.1rem;
}

.prestations-global-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-box {
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, #2c4a6f 100%);
  color: white;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

/* ===== PLATEAUX SECTION ===== */
.plateaux-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 35% 35%;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.plateau-card {
  padding: 0;
  overflow: hidden;
}

.plateau-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plateau-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

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

.plateau-likes {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .5rem 1rem;
  font-weight: 600;
  font-size: .875rem;
}

.plateau-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--gradient);
  color: var(--navy);
  border-radius: 3rem;
  font-weight: 700;
  font-size: .875rem;
}

.plateau-content {
  padding: 2rem;
}

.plateau-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
}

.rating-text {
  font-size: .875rem;
  color: var(--text-light);
  font-weight: 600;
}

.plateau-title {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.plateau-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.plateau-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  padding: .375rem .875rem;
  background: #f5f7fa;
  border-radius: 3rem;
  font-size: .8rem;
  font-weight: 600;
}

.plateau-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 2px solid #f5f7fa;
}

.plateau-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-unit {
  font-size: .875rem;
  color: var(--text-light);
  font-weight: 600;
}

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

/* ===== INSTAGRAM SECTION ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.instagram-post {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.instagram-post:hover img {
  transform: scale(1.1);
}

.post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,41,71,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
}

.instagram-post:hover .post-overlay {
  opacity: 1;
}

.post-stats {
  display: flex;
  gap: 2rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== AVIS SECTION (CAROUSEL) ===== */
.avis-section {
  padding: 6rem 0;
  overflow: hidden;
}

.avis-stats {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.stat-global {
  text-align: center;
  padding: 3rem 4rem;
  background: var(--bg);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.stat-rating {
  margin-bottom: 1rem;
}

.big-number {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stars-large {
  font-size: 2rem;
  margin: 1rem 0;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--text-light);
}

.avis-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 1rem 2rem;
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 3rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: all 0.3s;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.filter-btn.active {
  background: var(--gradient);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.avis-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 80px;
}

.avis-carousel {
  overflow: hidden;
  position: relative;
}

.avis-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.avis-card {
  min-width: calc(33.333% - 1.35rem);
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.avis-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(212,175,55,0.3);
}

.avis-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avis-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
  transition: transform 0.3s;
}

.avis-card:hover .avis-avatar {
  transform: scale(1.1) rotate(10deg);
}

.avis-info {
  flex: 1;
}

.avis-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.avis-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.avis-event {
  padding: 0.25rem 0.75rem;
  background: rgba(212,175,55,0.1);
  border-radius: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.avis-date {
  color: var(--text-light);
}

.avis-rating {
  flex-shrink: 0;
}

.avis-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.avis-helpful {
  display: flex;
  justify-content: flex-end;
}

.btn-helpful {
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: none;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s;
}

.btn-helpful:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-nav:hover {
  background: var(--gradient);
  color: var(--navy);
  box-shadow: 0 15px 40px rgba(212,175,55,0.5);
  transform: translateY(-50%) scale(1.15);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
  position: relative;
}

.carousel-dot.active {
  width: 40px;
  border-radius: 10px;
  background: var(--gradient);
}

.carousel-dot:hover:not(.active) {
  transform: scale(1.3);
}

.avis-form-cta {
  text-align: center;
  margin: 4rem 0 2rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg);
  border-radius: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
  transform: scale(0.7) translateY(50px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  margin: auto;
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-header {
  padding: 1rem;
  border-bottom: 2px solid rgba(212,175,55,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-close {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #e74c3c;
  color: white;
}

.modal-body {
  padding: 1.5rem;
}

.rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2.5rem;
  cursor: pointer;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.rating-input input:checked ~ label {
  filter: grayscale(0%);
  opacity: 1;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 0;
}

.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== GRILLE INFOS CONTACT ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

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

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-card-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: var(--navy);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.contact-card-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact-card-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-card-link {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

.contact-card-link:hover {
  background: var(--gradient);
  transform: scale(1.05);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== CTA DEVIS ===== */
.contact-cta {
  margin-top: 4rem;
}

.contact-cta .cta-box {
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, #2c4a6f 100%);
/*  background: var(--bg);*/
}

.contact-cta .cta-content {
  flex: 1;
  text-align: center;
}

.contact-cta .cta-title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.contact-cta .cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-cta .cta-illustration {
  font-size: 8rem;
  opacity: 0.2;
  animation: float 3s ease-in-out infinite;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .prestations-global-cta .cta-box {
    padding: 2.5rem 2rem;
  }

  .prestations-global-cta .cta-box h3 {
    font-size: 1.5rem;
  }

  .prestations-global-cta .cta-box p {
    font-size: 1rem;
  }

  .contact-cta .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .contact-cta .cta-illustration {
    font-size: 5rem;
  }
}
/* ===== MODAL DEVIS ===== */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.quote-modal.show {
  display: flex;
  animation: fadeIn 0.3s;
}

.quote-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}

.quote-modal-content {
  position: relative;
  background: var(--bg);
  border-radius: 2rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: slideUp 0.4s;
}

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

/* Header Modal */
.quote-modal-header {
  text-align: center;
  padding: 3rem 3rem 2rem;
  border-bottom: 3px solid var(--gold);
  position: relative;
}

.quote-modal-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: 2.5rem;
  color: var(--navy);
}

.quote-modal-title {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.quote-modal-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.quote-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  transition: all 0.3s;
}

.quote-modal-close:hover {
  background: #e74c3c;
  color: white;
  transform: rotate(90deg);
}

/* Formulaire */
.quote-form {
  padding: 3rem;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(212,175,55,0.2);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.form-section-title i {
  color: var(--gold);
}

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

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: 1rem;
}

.neomorph-input {
  padding: 1rem;
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  transition: all 0.3s;
}

.neomorph-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.neomorph-input.error {
  border-color: #e74c3c;
}

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

.service-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.service-checkbox:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: inset var(--shadow);
  position: relative;
  transition: all 0.3s;
}

.service-checkbox input:checked + .checkbox-custom {
  background: var(--gradient);
}

.service-checkbox input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.2rem;
}

.checkbox-label {
  font-weight: 600;
  color: var(--navy);
}

/* Char counter */
.char-counter {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Actions */
.form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 2rem;
}

.btn-secondary {
  background: var(--bg);
  color: var(--navy);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .cta-illustration {
    font-size: 5rem;
  }

  .quote-modal-content {
    margin: 1rem;
  }

  .quote-form {
    padding: 2rem 1.5rem;
  }

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

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

  .form-actions {
    flex-direction: column;
  }
}
/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: .5rem;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid #f5f7fa;
  color: var(--text-light);
  font-size: .9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-up {
  animation: fadeUp .8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .avis-card {
    min-width: calc(50% - 1rem);
  }
  .avis-carousel-wrapper {
    padding: 0 60px;
  }
}

@media (max-width: 968px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    transition: .3s;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 1rem 2rem;
  }

  .hero-brand {
    font-size: 3rem;
    letter-spacing: 4px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
    padding: 0 0.5rem;
  }

  .hero-buttons .btn-neomorph {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .plateaux-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .instagram-post {
    height: 200px;
  }

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

  .contact-form {
    padding: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

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

  .avis-card {
    min-width: 100%;
    padding: 2rem;
  }

  .carousel-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .carousel-nav.prev {
    left: -10px;
  }

  .carousel-nav.next {
    right: -10px;
  }

  .avis-carousel-wrapper {
    padding: 0 40px;
  }

  .filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 85vh;
    padding: 90px 0.5rem 2rem;
  }

  .hero-brand {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .hero-buttons .btn-neomorph {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

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

  .instagram-post {
    height: 250px;
  }
}
.two-columns {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 500px) {
  .about-content .lead, .about-content .subtitle {
    font-size : 0.75rem;
  }

  .about-text p, .about-text .highlight {
    font-size : 0.7rem;
  }
 .two-columns img {
     width: 100%;
     max-width: 100%;
     height: auto;
     min-height: 250px;
     object-fit: cover;
     object-position: center;
     border-radius: 1rem;
   }

  .two-columns .quote-box {
      padding: 0.5rem;
      box-sizing: border-box;
      margin-top: -1rem;
  }
  .about-text .inspired {
    margin-top : -1.5rem;
  }
  .two-columns .entrepreneur-details {
    margin-top : -1.8rem;
  }
 }

.inspired {
 margin-top: 2rem;
}
.about-image {
  border-radius:11px ;
  object-fit: fill;
}

@media (min-width: 769px) {
  .quote-modal-content {
    max-width: 900px;
    margin: 2rem auto;
  }

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

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

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

  .quote-modal-content {
    max-width: 100%;
    max-height: 95vh;
    margin: 0;
  }

  .quote-modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .quote-modal-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .quote-modal-title {
    font-size: 1.75rem;
  }

  .quote-form {
    padding: 2rem 1.5rem;
  }

  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .form-section-title {
    font-size: 1.2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .quote-modal {
    padding: 0;
    align-items: flex-start;
  }

  .quote-modal-content {
    border-radius: 0;
    max-height: 100vh;
    width: 100%;
  }

  .quote-modal-header {
    padding: 1.5rem 1rem 1rem;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 10;
    border-radius: 0;
  }

  .quote-modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
  }

  .quote-modal-title {
    font-size: 1.5rem;
  }

  .quote-modal-subtitle {
    font-size: 0.95rem;
  }

  .quote-modal-close {
    width: 35px;
    height: 35px;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
  }

  .quote-form {
    padding: 1.5rem 1rem;
  }

  .form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .form-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .form-section-title i {
    font-size: 1rem;
  }

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

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .neomorph-input {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .services-grid {
    gap: 0.75rem;
  }

  .service-checkbox {
    padding: 1rem;
  }

  .checkbox-label {
    font-size: 0.9rem;
  }

  textarea.neomorph-input {
    min-height: 120px;
  }

  .char-counter {
    font-size: 0.85rem;
  }

  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .form-actions .btn-neomorph {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .quote-modal-header {
    padding: 1rem 0.75rem 0.75rem;
  }

  .quote-modal-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .quote-modal-title {
    font-size: 1.25rem;
  }

  .quote-modal-subtitle {
    font-size: 0.85rem;
  }

  .quote-form {
    padding: 1rem 0.75rem;
  }

  .form-section {
    margin-bottom: 1.25rem;
  }

  .form-section-title {
    font-size: 1rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .neomorph-input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .service-checkbox {
    padding: 0.875rem;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  .form-actions .btn-neomorph {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .quote-modal-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .neomorph-input {
    -webkit-appearance: none;
    border-radius: 1rem;
  }

  select.neomorph-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
  }
}

@media (max-width: 600px) {
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .quote-modal.show .quote-modal-content {
    animation: slideUp 0.3s ease-out;
  }
}

@media (max-width: 600px) {
  .checkbox-custom {
    width: 28px;
    height: 28px;
  }

  .quote-modal-close {
    width: 44px;
    height: 44px;
  }

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

  .neomorph-input:focus {
    outline: 3px solid rgba(212, 175, 55, 0.3);
    outline-offset: 2px;
  }

  .neomorph-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  }

  .btn-neomorph:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .quote-modal-header {
    padding: 1rem;
  }

  .quote-modal-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .quote-modal-title {
    font-size: 1.25rem;
  }

  .quote-modal-subtitle {
    font-size: 0.85rem;
  }

  .quote-form {
    padding: 1rem;
  }

  .form-section {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .form-section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

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

  .neomorph-input {
    padding: 0.625rem;
  }

  textarea.neomorph-input {
    min-height: 80px;
  }
}

@supports (-webkit-touch-callout: none) {
  .neomorph-input {
    font-size: 16px !important;
  }

  .quote-modal-content {
    -webkit-overflow-scrolling: touch;
  }
}
