/* Import de la police Poppins locale */
@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Variables de couleurs basées sur la charte graphique chaleureuse */
:root {
  --primary-color: #2c1810; /* Marron foncé comme les poutres */
  --accent-color: #d4822a; /* Orange chaud du feu */
  --text-light: #ffffff; /* Blanc */
  --text-dark: #2c1810; /* Marron foncé pour le texte */
  --warm-beige: #f4e6d3; /* Beige chaud des murs */
  --warm-brown: #8b5a3c; /* Marron moyen du bois */
  --fire-orange: #e67e22; /* Orange vif du feu */
  --background-light: #faf7f2; /* Fond très clair et chaud */
  --background-warm: #f0e6d6; /* Fond beige chaud */
  --background-dark: #2c1810; /* Marron très foncé */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --vh: 1vh;
}

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

/* Accessibilité */
:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Animation de défilement vers les sections */
.scroll-target {
  animation: scrollHighlight 1s ease-in-out;
}

@keyframes scrollHighlight {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 20px rgba(243, 156, 56, 0.2);
  }
  100% {
    box-shadow: none;
  }
}

/* Skip to content pour accessibilité */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-color);
  color: var(--text-light);
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

html {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

/* Typographie */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

h2 {
  font-size: 2.7rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: var(--primary-color);
  opacity: 0.8;
  color: var(--text-light);
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Logo et conteneur */
.logo-container {
  display: flex;
  align-items: center;
  padding: 0.15rem 0;
  max-width: 400px;
}

.logo {
  height: auto;
  width: auto;
  max-height: 42px;
  margin-right: 0.8rem;
  object-fit: contain;
}

.logo-text h1 {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1.7rem;
  letter-spacing: 1.8px;
}

.tagline {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.4rem;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

nav ul li a:active {
  transform: translateY(0) scale(0.95);
  transition: transform 0.1s ease;
}

.hero {
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1.5rem;
  max-width: 700px;
  margin: 0;

  position: relative;
  z-index: 10;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.hero-logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -1rem;
}

.hero-logo-r {
  height: 5rem;
  width: auto;
  vertical-align: middle;
  margin: 0 0.1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.9));
}

.hero h2 {
  color: var(--text-light);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.8);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-feature span {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-primary {
  background-color: var(--fire-orange);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.cta-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 130, 42, 0.5);
}

.cta-primary:active,
.cta-secondary:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

.cta-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cta-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    var(--background-light) 0%,
    var(--background-warm) 100%
  );
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 240, 240, 0.5) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 0;
}

.services-bg-shape::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(140, 198, 101, 0.08),
    transparent 60%
  );
  z-index: 0;
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  margin-bottom: 1rem;
}

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(44, 24, 16, 0.9);
  color: var(--text-light);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid rgba(212, 130, 42, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

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

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: rgba(243, 156, 56, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: none;
  background-color: rgba(243, 156, 56, 0.15);
}

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

.service-card:hover .service-icon {
  transform: none;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 600;
}

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

.service-benefits {
  margin: auto 0 1.5rem;
  text-align: left;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.service-benefit span {
  color: var(--leaf-color);
  font-weight: bold;
}

.btn-service {
  background-color: var(--fire-orange);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--fire-orange);
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-service:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 130, 42, 0.5);
}

/* About Section */
.about {
  background: linear-gradient(
    135deg,
    var(--background-warm) 0%,
    var(--warm-beige) 100%
  );
  padding: 5rem 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  max-height: 800px;
  aspect-ratio: 4/3;
}

.about-image .image-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.about-image .ramoneur-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Simple Carousel avec animation CSS */
.simple-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--warm-beige);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: carousel-fade 20s infinite;
}

.carousel-slide:nth-child(1) {
  animation-delay: 0s;
}

.carousel-slide:nth-child(2) {
  animation-delay: 4s;
}

.carousel-slide:nth-child(3) {
  animation-delay: 8s;
}

.carousel-slide:nth-child(4) {
  animation-delay: 12s;
}

.carousel-slide:nth-child(5) {
  animation-delay: 16s;
}

@keyframes carousel-fade {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  background: linear-gradient(
    135deg,
    var(--background-dark) 0%,
    var(--primary-color) 100%
  );
  color: var(--text-light);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.05) 0%,
    rgba(243, 156, 56, 0.08) 100%
  );
  z-index: 0;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--text-light);
  text-align: center;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  opacity: 0.95;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrapper {
  background: rgba(250, 247, 242, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(212, 130, 42, 0.3);
  backdrop-filter: blur(10px);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.form-subtitle {
  color: var(--warm-brown);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

label .required {
  color: #e74c3c;
  font-weight: 700;
  margin-left: 2px;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(243, 156, 56, 0.2);
}

select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232d0a42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.btn-submit {
  background-color: var(--fire-orange);
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-submit:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 130, 42, 0.5);
}

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

.contact-direct {
  background-color: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-direct h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(250, 247, 242, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(212, 130, 42, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(250, 247, 242, 0.15);
  transform: translateY(-2px);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  background-color: rgba(243, 156, 56, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--primary-color);
}

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

.contact-hours {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--warm-brown) 100%
  );
  border-radius: 16px;
  padding: 2rem;
  color: var(--text-light);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.4);
  border: 2px solid rgba(212, 130, 42, 0.3);
}

.contact-hours h4 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--fire-orange);
}

.hours-info {
  margin-bottom: 1.5rem;
}

.hours-info p {
  margin-bottom: 0.8rem;
  opacity: 0.95;
  font-size: 1rem;
}

.contact-cta {
  margin-top: 1.5rem;
}

.btn-call {
  background-color: var(--fire-orange);
  color: var(--text-light);
  padding: 1rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.btn-call:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 130, 42, 0.5);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--warm-brown) 100%
  );
  z-index: 0;
}

.footer-bg-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(243, 156, 56, 0.15),
    transparent 50%
  );
  z-index: 0;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-small {
  height: auto;
  width: auto;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--accent-color);
  font-size: 0.8rem;
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact-info h4,
.footer-hours-info h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 1rem;
}

.footer-nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.85;
  font-weight: 500;
  position: relative;
  padding-left: 1rem;
}

.footer-nav ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
  color: var(--accent-color);
  opacity: 1;
  padding-left: 1.5rem;
}

.footer-nav ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

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

.footer-icon {
  font-size: 1.2rem;
  color: var(--accent-color);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(243, 156, 56, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-footer-cta {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-top: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-footer-cta:hover {
  background-color: #e88c20;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-hours-day {
  color: var(--accent-color);
  font-weight: 600;
  min-width: 80px;
}

.footer-hours-time {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

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

  .contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .logo {
    max-height: 45px;
  }

  .logo-text h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }

  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0.5rem;
  }

  .hero {
    padding: 5rem 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 80%;
    text-align: center;
  }

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

  .service-card {
    padding: 1.5rem;
  }

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

  section {
    /* padding: 3rem 1.5rem; */
  }

  .about-image {
    aspect-ratio: 4/3;
    max-width: 600px;
    max-height: 500px;
    margin: 0 auto;
  }

  .footer-content {
    gap: 2rem;
    justify-content: center;
  }

  .logo-container {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    max-height: 50px;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

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

  .logo-text h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

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

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

  .cta-primary,
  .cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

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

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

  input,
  textarea {
    padding: 0.6rem;
  }

  .btn-submit {
    padding: 0.6rem 1.5rem;
    width: 100%;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Style pour mobile en orientation portrait */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-links ul li {
    margin-bottom: 0;
  }

  .logo {
    max-height: 45px;
  }
}

/* Ajout d'un menu mobile hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 6rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: transform 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }

  nav {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  nav ul.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul li {
    margin: 0;
    padding: 0.5rem 0;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 0.5rem 0;
  }

  header {
    position: relative;
  }
}

/* Style des messages de formulaire */
.form-success,
.form-error {
  padding: 12px 16px;
  margin-top: 20px;
  border-radius: 6px;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

.form-success {
  background-color: rgba(57, 218, 138, 0.1);
  color: #2a8c5b;
  border: 1px solid rgba(57, 218, 138, 0.3);
}

.form-error {
  background-color: rgba(245, 65, 65, 0.1);
  color: #d32f2f;
  border: 1px solid rgba(245, 65, 65, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

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

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
}

/* Éviter les animations pour les utilisateurs préférant un mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
