html, body {
  overflow-x: hidden; /* temporairement cache le débordement */
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #191717;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #191717;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2.5s ease 6s forwards;
}

.loader-logo {
  width: 80px;
  animation: flipLogo 3s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

@keyframes flipLogo {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.contact-bar {
  background-color: #282525;
  padding: 5px 50px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.contact-bar a i {
  transition: color 0.3s ease;
}

.contact-bar a.header-hover:hover {
  color: #e9cc79;
}

.contact-bar a.header-hover:hover i {
  color: #e9cc79;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contact-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

@media (max-width: 1024px) {
  .contact-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .contact-social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 50px;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover {
  color: #e9cc79;
  background-color: transparent;
}

.btn-devis {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  background: linear-gradient(90deg, #f0c878, #eac56b);
  color: #191717;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(240, 200, 120, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.btn-devis::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-devis:hover::after {
  left: 130%;
}

.btn-devis:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(240, 200, 120, 0.6);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(240, 200, 120, 0) 0%, #191717 80%);
  pointer-events: none;
}

.video-text {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
  color: white;
  animation: fadeInUp 1.5s ease-out both;
  padding: 0 20px;
  max-width: 600px;
}

.intro-text {
  font-size: 3.2em;
  font-weight: 700;
  margin: 0 0 20px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  animation: slideInText 1s ease-out both;
  text-transform: uppercase;
}

.cta-text {
  font-size: 1.8em;
  font-weight: 600;
  color: #e9cc79;
  margin-bottom: 30px;
  animation: slideInText 1.4s ease-out both;
}

.video-btn {
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 14px 36px;
  background: linear-gradient(90deg, #f0c878, #eac56b);
  color: #191717;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(240, 200, 120, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: fadeInBtn 1.8s ease-out both;
}

.video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(240, 200, 120, 0.6);
}

.video-btn i {
  animation: pulseRocket 1.5s infinite;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes slideInText {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBtn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 768px) {
  .intro-text {
    font-size: 2em;
  }

  .cta-text {
    font-size: 1.2em;
  }

  .video-btn {
    font-size: 0.95rem;
    padding: 12px 26px;
  }
}


.main-content {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0e0e0e, #1e1e1e);
}

.presentation-section {
  color: #fff;
  padding: 80px 5%;
}

.layout-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}

.left-section {
  flex: 1;
  min-width: 300px;
}

.left-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-section li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.left-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e9cc79;
  font-size: 2rem;
}

.left-title a.title-link {
  color: #b2802d;
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
}

.left-title a.title-link:hover {
  text-decoration: underline;
  color:#e9cc79;

}

.right-section {
  flex: 1;
  min-width: 320px;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  gap: 20px;
}

.carousel-inner img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.8rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.carousel-btn:hover {
  background: #e9cc79;
  border-color: #e9cc79;
  color: #fff;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* === Design Section === */
.right-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right; 
}

.right-section li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-right: 25px; 
  position: relative;
  line-height: 1.6;
}

.right-section li::before {
  content: '•';
  position: absolute;
  right: 0; 
  color: #e9cc79;
  font-size: 2rem;
}

.left-title{
  font-size: 2.5rem;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.right-title {
  font-size: 2.5rem;
  text-align: right;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

#designFilterList li.active {
  font-weight: bold;
  color: #0085ff;
  cursor: default;
}

.right-title a.title-link {
  color: #b2802d;
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
}

.right-title a.title-link:hover {
  text-decoration: underline;
  color: #e9cc79;
}

/* ==== Bio Section ==== */
.bio-section {
  background-color: transparent;
  padding: 60px 20px;
}

.bio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.bio-photo img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bio-card {
  background: #e9cc79;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  text-align: left;
}

.bio-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #191717;
}

.bio-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #191717;
}

.clients-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: bold;
}

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

.slider {
  background: #191717;
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 60%;      
  max-width: 80vw;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, #191717 0%, rgba(25,23,23,0) 100%);
  pointer-events: none;
}

.slider::after {
  right: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
}

.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.slide {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
  
/* === FOOTER === */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #191717;
  text-align: center;
}

.footer-section {
  flex: 1;
}

.footer-section img {
  height: 120px;
}

.footer-section a,
.footer-section i {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin: 5px 5px;
  transition: color 0.3s ease;
}

.footer-section a.link-hover:hover,
.footer-section a.icon-hover:hover i {
  color: #e9cc79; 
}

.footer-icons {
  display: inline-flex;
  gap: 10px;
}

.footer-section i {
  font-size: 40px;
}


  .copyright-bar {
    text-align: center;
    padding: 0.5px 0;
    background-color: #282525;
    font-size: 12px;
  }

/* === Loader === */
.button-loader {
  border: 3px solid #ffffff;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.button-loader {
  border: 3px solid #fff;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
  margin-left: 12px;
  display: none;
}

.flash-message {
  max-width: 700px;
  margin: 1rem auto;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.5s ease;
  font-family: Arial, sans-serif;
}
.flash-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.flash-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.input-icon-group {
  margin-bottom: 20px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  background: #fff;
}

.input-wrapper i {
  margin-right: 10px;
  color: #444;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  padding: 6px 0;
  background: transparent;
}

/* ==== PHOTOGRAPHIE === */
.photo-main {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0e0e0e, #1e1e1e);
  min-height: 100vh;
}

.title-pages {
  text-align: center;
  font-size: 2rem;
  color: #b2802d;
  margin-bottom: 100px;
  margin-top: 50px;
}

.photo-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(240, 200, 120, 0.3);
  border-color: #e9cc79;
}

.photo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: #000;
  cursor: pointer;
}

.photo-card-content {
  padding: 1rem;
  text-align: center;
}

.photo-card-content h3 {
  margin: 0.5rem 0;
  color: #ffffff;
  font-size: 1.4rem;
}

.photo-card-text {
  color: #e9cc79;
  font-weight: bold;
  margin-top: 0;
}

/* === BOUTONS ACTION === */
.photo-actions {
  margin-top: 3rem;
  text-align: center;
}

.photo-actions .btn-devis,
.photo-actions .btn-insta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 1rem;
  padding: 14px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: #1a1a1a;
  background: linear-gradient(90deg, #f0c878, #eac56b);
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(240, 200, 120, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-actions .btn-devis::after,
.photo-actions .btn-insta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.photo-actions .btn-devis:hover::after,
.photo-actions .btn-insta:hover::after {
  left: 130%;
}

.photo-actions .btn-devis:hover,
.photo-actions .btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(240, 200, 120, 0.6);
}

.photo-modal {
  display: none;  
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}


.photo-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.photo-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #e9cc79;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.photo-modal-close:hover {
  color: #ffffff;
}

/* === SITE-WEB === */
.web-main {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0e0e0e, #1e1e1e);
}

.web-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.web-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.web-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(240, 200, 120, 0.3);
  border-color: #e9cc79;
}

.web-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: #000;
  cursor: pointer;
}

.web-card-content {
  padding: 1rem;
  text-align: center;
}

.web-card-content h3 {
  margin: 0.5rem 0;
  color: #ffffff;
  font-size: 1.4rem;
}

.web-card-content a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #e9cc79;
  text-decoration: none;
  font-weight: bold;
}

.web-card-content a:hover {
  text-decoration: underline;
}

/* === Image Modal === */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(4px);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 30px rgba(240, 200, 120, 0.3);
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #e9cc79;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  color: #ffffff;
}

/* === DESIGN === */
.title-pages {
  text-align: center;
  font-size: 2rem;
  color: #b2802d;
  margin-bottom: 100px;
  margin-top: 50px;
}

.design-main {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0e0e0e, #1e1e1e);
}

.design-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.design-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.design-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(240, 200, 120, 0.3);
  border-color: #e9cc79;
}

.design-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: #000;
  cursor: pointer;
}

.design-card-content {
  padding: 1rem;
  text-align: center;
}

.design-card-content h3 {
  margin: 0.5rem 0;
  color: #ffffff;
  font-size: 1.4rem;
}

.design-card-text {
  display: inline-block;
  margin-top: 0.5rem;
  color: #e9cc79;
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}


.design-card-content a:hover {
  text-decoration: underline;
}

/* === MENTION LEGALE === */
.mentions-legales {
  max-width: 900px;
  margin: 50px auto 80px;
  padding: 30px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff; 
  line-height: 1.6;
}

.mentions-legales h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #b2802d;
  text-align: center;
  letter-spacing: 1px;
}

.mentions-legales h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #b2802d; 
  border-left: 5px solid #d4af37; 
  padding-left: 12px;
  font-weight: 600;
}

.mentions-legales p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.mentions-legales a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.mentions-legales a:hover,
.mentions-legales a:focus {
  color: #e9cc79; 
  text-decoration: underline;
}

/* === CGV === */
/* === CONDITIONS GÉNÉRALES DE VENTE === */
.cgv {
  max-width: 900px;
  margin: 50px auto 80px;
  padding: 30px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  line-height: 1.6;
}

.cgv h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #b2802d;
  text-align: center;
  letter-spacing: 1px;
}

.cgv h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #b2802d;
  border-left: 5px solid #d4af37;
  padding-left: 12px;
  font-weight: 600;
}

.cgv p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.cgv a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cgv a:hover,
.cgv a:focus {
  color: #e9cc79;
  text-decoration: underline;
}



.glass-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* === FORMULAIRE CONTACT UNIQUEMENT === */
.contact-form-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
  max-width: 900px;
  margin: 60px auto;
  padding: 30px 40px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 2px solid rgba(240, 200, 120, 0.3);
  color: #e9cc79;
  font-family: 'Orbitron', sans-serif;
  flex-direction: row;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: #e9cc79;
  text-shadow: 0 0 6px rgba(240, 200, 120, 0.7);
  width: 100%;
}

.contact-image {
  flex: 0 0 430px;  
  height: 670px;    
  min-width: unset;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(240, 200, 120, 0.3);
  display: flex;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.contact-form-container {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form .grouped {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}

.contact-form .grouped .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e9cc79;
  text-shadow: 0 0 4px rgba(240, 200, 120, 0.6);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  background-color: #121212;
  border: 1.5px solid #333;
  border-radius: 10px;
  color: #eee;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #e9cc79;
  box-shadow: 0 0 8px #e9cc79cc;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* === BOUTON SUBMIT  === */
.contact-form button[type="submit"] {
  position: relative;
  background: linear-gradient(90deg, #f0c878, #eac56b);
  color: #1a1a1a;
  padding: 14px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 10px rgba(240, 200, 120, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

.contact-form button[type="submit"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.contact-form button[type="submit"]:hover::after {
  left: 130%;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(240, 200, 120, 0.6);
}

#button-loader,
.button-loader {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-contact-photo {
  text-align: center;
  margin: 60px auto 40px;
  padding: 40px 20px;
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  border-radius: 20px;
  box-shadow: 0 0 20px #f0c87857;
  max-width: 800px;
}

.cta-contact-photo h2 {
  font-size: 2rem;
  color: #f0c878;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
}

.cta-contact-photo p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

.btn-new {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  background: linear-gradient(90deg, #f0c878, #eac56b);
  color: #191717;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(240, 200, 120, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.btn-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-new:hover::after {
  left: 130%;
}

.btn-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(240, 200, 120, 0.6);
}

@media (max-width: 600px) {
  .btn-new {
    width: 100%;          
    max-width: 100%;     
    box-sizing: border-box;
    margin-bottom: 10px;  
  }

  .btn-new:last-child {
    margin-bottom: 0;
  }
}

.pulse-icon {
  animation: pulseRocket 1.5s infinite;
}

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

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.pagination button {
  padding: 8px 12px;
  background-color: #191717;
  color: #191717;
  border: 1px solid #191717;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.pagination button:hover {
  background-color: #e9cc79cc;
}

.pagination .active-page {
  background-color: #e9cc79;
  font-weight: bold;
}

.slider-title {
  align-items: center;
  text-align: center;
  font-size: 2rem;
  color: #b2802d;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

@media screen and (max-width: 375px) {
  .main-content,
  .presentation-section,
  .bio-section,
  .clients-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .layout-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .left-section,
  .right-section {
    text-align: center;
    min-width: 100%;
  }

  .left-section ul,
  .right-section ul {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .left-section li,
  .right-section li {
    padding-left: 0;
    padding-right: 0;
  }

  .left-section li::before,
  .right-section li::before {
    display: none;
  }

  .left-title,
  .right-title {
    text-align: center;
    font-size: 2rem;
  }

  .left-title a.title-link,
  .right-title a.title-link {
    font-size: 1.5rem;
  }

  .carousel {
    max-width: 100%;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 6px 10px;
  }

  .bio-container {
    flex-direction: column;
    gap: 30px;
  }

  .bio-photo img {
    width: 250px;
    height: 250px;
  }

  .bio-card {
    padding: 20px;
    max-width: 100%;
  }

  .bio-card h2 {
    font-size: 1.6rem;
  }

  .bio-card p {
    font-size: 1rem;
  }

  .clients-section h2 {
    font-size: 1.5rem;
  }

  .slider {
    width: 100%;
    max-width: 100vw;
  }

  .slide {
    width: 150px;
    height: 100px;
  }
}
