@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800&display=swap');

:root {
  --primary-orange: #d82719;
  --primary-orange-dark: #b01d13;
  --primary-orange-light: #e84c3f;
  --primary-blue: #043f4a;
  --primary-blue-dark: #032a32;
  --primary-blue-light: #055a68;
  --text-dark: #043f4a;
  --text-light: #555555;
  --text-white: #ffffff;
  --gray-light: #f9f9f9;
  --gray-medium: #e8e8e8;
  --gray-dark: #d0d0d0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gabarito', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-white);
  letter-spacing: 1px;
}

.nav-logo-img {
  height: 50px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 8px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 20%, var(--primary-orange) 80%, transparent 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  opacity: 0.95;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('images/photo-header.png') center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 63, 74, 0.7);
  background-image:
    linear-gradient(135deg, rgba(4, 63, 74, 0.75) 0%, rgba(4, 63, 74, 0.65) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.01) 10px, rgba(255, 255, 255, 0.01) 20px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 1s ease;
}

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

.logo-container {
  margin-bottom: 24px;
}

.logo-icon {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-services {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 32px auto;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
  display: inline-block;
  padding: 16px 48px;
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(216, 39, 25, 0.4);
  margin-top: 16px;
}

.btn-hero:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(216, 39, 25, 0.5);
}

.scroll-indicator {
  margin-top: 48px;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: white;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.services {
  padding: 80px 0;
  background: var(--gray-light);
}

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

.service-card {
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, transparent 0%, rgba(216, 39, 25, 0.03) 50%, transparent 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(216, 39, 25, 0.15);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-content {
  flex: 1;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-image {
  flex: 0 0 50%;
  min-height: 280px;
  width: 50%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-cta-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/photo-fond-bouton-realisation.png') center/cover;
  opacity: 0.5;
  z-index: 0;
}

.service-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(216, 39, 25, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.service-cta-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.service-cta-content {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-cta-icon {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.service-cta-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(4, 63, 74, 0.25);
}

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

.service-cta-card:hover .service-cta-arrow {
  transform: translateX(4px);
  background: var(--primary-orange-dark);
}

.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.zone-intervention {
  background: var(--gray-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.zone-intervention h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zone-intervention i {
  color: var(--primary-blue);
}

.ecolabel-badge {
  background: linear-gradient(135deg, #d82719, #b01d13);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(216, 39, 25, 0.3);
}

.ecolabel-badge i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.ecolabel-badge h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.ecolabel-badge p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.degats-eaux {
  padding: 80px 0;
  background: var(--gray-light);
}

.degats-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.degats-icon {
  font-size: 8rem;
  color: var(--primary-blue);
  text-align: center;
}

.degats-text p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.degats-text ul {
  list-style: none;
}

.degats-text li {
  padding: 8px 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.degats-text li i {
  color: var(--primary-blue);
}

.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 63, 74, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  clip-path: circle(0% at 50% 50%);
}

.gallery-overlay::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(4, 63, 74, 0.4) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay p {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
  position: relative;
  z-index: 1;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  clip-path: circle(150% at 50% 50%);
}

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

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

.contact {
  padding: 80px 0;
  background: var(--gray-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.contact-item i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-blue);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-medium);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-blue-dark);
}

.form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.footer-orange {
  background: var(--primary-orange);
  padding: 20px 0;
  text-align: center;
}

.footer-orange-link {
  color: white;
  text-decoration: none;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.footer-orange-link:hover {
  opacity: 0.9;
}

.footer-dark {
  background: var(--primary-blue);
  color: var(--text-white);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-dark::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(216, 39, 25, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.footer-dark .container {
  position: relative;
  z-index: 1;
}

.footer-dark-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-text {
  text-align: left;
}

.footer-dark p {
  margin: 8px 0;
  opacity: 0.9;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

@media (max-width: 992px) {
  .logo-icon {
    height: 160px;
  }

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

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-services {
    font-size: 1.05rem;
  }

  .btn-hero {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .scroll-indicator i {
    font-size: 1.8rem;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .degats-content {
    grid-template-columns: 1fr;
  }

  .degats-icon {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .nav-logo-img {
    height: 60px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-orange);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-link {
    display: block;
    padding: 16px;
    color: white;
  }

  .nav-link.active {
    color: white;
  }

  .logo-icon {
    height: 140px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-services {
    font-size: 0.95rem;
  }

  .btn-hero {
    padding: 12px 32px;
    font-size: 0.95rem;
  }

  .scroll-indicator i {
    font-size: 1.5rem;
  }

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

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

  .service-card {
    flex-direction: column;
  }

  .service-content {
    padding: 24px;
  }

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

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-image {
    max-width: 100%;
    min-height: 200px;
  }

  .service-image img {
    border-radius: 0 0 16px 16px;
  }

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

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

  .contact-form {
    padding: 24px;
  }

  .footer-orange-link {
    font-size: 0.85rem;
    padding: 16px;
  }

  .footer-dark-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    text-align: center;
    font-size: 0.9rem;
  }

  .footer-logo img {
    height: 50px;
  }

  .testimonials-cta {
    margin-top: 32px;
    text-align: center;
  }
}

.ecolabel-section {
  padding: 80px 0;
  background: var(--text-white);
}

.ecolabel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ecolabel-text {
  padding-right: 24px;
}

.ecolabel-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.ecolabel-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.ecolabel-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.ecolabel-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px;
  background: var(--gray-light);
  border-radius: 12px;
}

.ecolabel-logo-item {
  text-align: center;
  flex: 1;
}

.ecolabel-logo-img {
  width: 150px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  transition: transform 0.3s ease;
}

.ecolabel-logo-img:hover {
  transform: translateY(-8px);
}

.ecolabel-logo-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .ecolabel-section {
    padding: 60px 0;
  }

  .ecolabel-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecolabel-text {
    padding-right: 0;
  }

  .ecolabel-text .section-title {
    text-align: center;
  }

  .ecolabel-logos {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }

  .ecolabel-logo-img {
    width: 120px;
  }
}

.partners-section {
  padding: 3rem 1rem;
  background: #f8f9fa;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.partners-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .partners-section {
    padding: 2rem 1rem;
  }

  .partners-logos {
    gap: 1.5rem;
  }

  .partners-logos img {
    max-height: 45px;
  }
}

.carousel-section {
  padding: 80px 0;
  background: var(--gray-light);
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}

.carousel-track-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(216, 39, 25, 0.02) 0%, transparent 3%, transparent 97%, rgba(216, 39, 25, 0.02) 100%),
    linear-gradient(to bottom, rgba(4, 63, 74, 0.02) 0%, transparent 3%, transparent 97%, rgba(4, 63, 74, 0.02) 100%);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(216, 39, 25, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-orange-dark);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-dark);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicator.active {
  background: var(--primary-orange);
  width: 32px;
  border-radius: 6px;
}

.carousel-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-orange {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-orange:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 2px solid var(--primary-blue);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.entreprise-buttons {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.page-title-section {
  padding: 120px 0 60px 0;
  background: var(--gray-light);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.gallery-page {
  padding: 60px 0 80px 0;
  background: white;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.page-header {
  margin-top: 76px;
}

.page-header-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entreprise-content {
  padding: 80px 0;
  position: relative;
}

.entreprise-content::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 2%;
  width: 120px;
  height: 200px;
  background: linear-gradient(180deg, rgba(4, 63, 74, 0.02) 0%, transparent 100%);
  filter: blur(15px);
  pointer-events: none;
}

.entreprise-content::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 3%;
  width: 150px;
  height: 180px;
  background: linear-gradient(45deg, rgba(216, 39, 25, 0.015) 0%, transparent 100%);
  filter: blur(20px);
  pointer-events: none;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
}

.intro-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
  line-height: 1.6;
}

.content-box h2 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin: 32px 0 16px 0;
}

.content-box p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.services-list {
  list-style: none;
  margin: 24px 0;
}

.services-list li {
  padding: 12px 0;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.services-list i {
  color: var(--primary-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.assurance-box {
  background: var(--gray-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.assurance-box i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.assurance-box p {
  margin: 0;
  color: var(--text-dark);
}

.contact-page-content {
  padding: 60px 0 80px 0;
  background: white;
  position: relative;
}

.contact-page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(4, 63, 74, 0.005) 80px, rgba(4, 63, 74, 0.005) 160px),
    repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(216, 39, 25, 0.003) 60px, rgba(216, 39, 25, 0.003) 120px);
  pointer-events: none;
  z-index: 0;
}

.contact-page-content .container {
  position: relative;
  z-index: 1;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.contact-info-box h2 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-medium);
}

.contact-detail i {
  color: var(--primary-orange);
  font-size: 1.3rem;
  margin-top: 4px;
}

.contact-detail p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--primary-orange);
}

.horaires-box {
  background: var(--gray-light);
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.horaires-box h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.horaires-box i {
  color: var(--primary-blue);
}

.horaire-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-dark);
}

.horaire-item.fermeture {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-dark);
  justify-content: flex-start;
  gap: 8px;
  font-style: italic;
  color: var(--primary-orange);
}

.jour {
  font-weight: 600;
}

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.contact-map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  min-height: 500px;
}

@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-placeholder {
    min-height: 400px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-slide img {
    height: 350px;
  }

  .page-header-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .content-box {
    padding: 24px;
  }

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

  .content-box h2 {
    font-size: 1.3rem;
  }

  .entreprise-buttons {
    flex-direction: column;
  }

  .entreprise-buttons .btn,
  .entreprise-buttons .btn-orange,
  .entreprise-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .contact-info-box {
    padding: 24px;
  }

  .contact-info-box h2 {
    font-size: 1.5rem;
  }

  .carousel-slide img {
    height: 250px;
  }

  .btn-orange,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars i {
  color: #d82719;
  font-size: 1rem;
}

.review-text {
  font-family: 'Gabarito', sans-serif;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.author-name {
  font-family: 'Gabarito', sans-serif;
  color: #043f4a;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-source {
  font-family: 'Gabarito', sans-serif;
  color: #718096;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card-spacer {
    flex: 0 0 calc(100% - 0px);
  }

  .review-nav-btn {
    width: 40px;
    height: 40px;
  }

  .review-nav-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    height: 50px;
  }

  .logo-icon {
    height: 100px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-services {
    font-size: 0.9rem;
  }

  .btn-hero {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    margin-top: 32px;
  }

  .scroll-indicator i {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 1.6rem;
  }

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

  .service-icon {
    font-size: 1.8rem;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .ecolabel-intro {
    font-size: 1.05rem;
  }

  .ecolabel-description {
    font-size: 0.95rem;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .content-box {
    padding: 20px;
  }

  .intro-text {
    font-size: 1rem;
  }

  .content-box h2 {
    font-size: 1.2rem;
  }

  .content-box p,
  .services-list li {
    font-size: 0.9rem;
  }

  .contact-info-box {
    padding: 20px;
  }

  .contact-info-box h2 {
    font-size: 1.3rem;
  }

  .horaires-box h3 {
    font-size: 1.1rem;
  }

  .footer-orange-link {
    font-size: 0.75rem;
    padding: 12px;
  }

  .footer-text p {
    font-size: 0.85rem;
  }

  .btn-orange,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .review-carrousel-container {
    gap: 12px;
  }

  .review-card {
    padding: 20px;
  }

  .review-nav-btn {
    width: 36px;
    height: 36px;
  }
}
