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

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* ===== HEADER PREMIUM ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 70px;
}

/* DESKTOP NAV */
.nav-desktop {
  display: flex;
  gap: 35px;
}

.nav-desktop a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff7a00;
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* CTA */
.nav-btn {
  background: #ff7a00;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
}

.nav-btn::after {
  display: none;
}

.drawer a.active {
  color: #ff7a00;
  font-weight: bold;
}

/* PHONE */
.phone-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.phone {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.phone.secondary {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* MENU BTN (HIDDEN ON DESKTOP) */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #000;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  .header {
    position: fixed;
    height: 72px;
    padding: 0 16px;
  }

  /* LEFT stays left */
  .header-left {
    flex: 1;
  }

  /* CENTER LOGO */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
  }

  /* SHOW PHONE ON MOBILE */
  .phone-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 12px;
  }

  .phone,
  .phone.secondary {
    font-size: 12px;
    font-weight: 500;
  }

  /* Hide desktop nav */
  .nav-desktop {
    display: none;
  }

  /* Menu button visible */
  .menu-btn {
    display: flex;
  }
}


/* ===== DRAWER ===== */
.drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #000;
  padding: 100px 20px;
  transition: 0.3s;
  z-index: 999;
}

.drawer a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 18px;
}

.drawer.open {
  left: 0;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
}

.subtitle {
  letter-spacing: 3px;
  font-size: 12px;
  opacity: 0.8;
}

h1 {
  font-size: 40px;
  margin: 15px 0;
}

p {
  line-height: 1.6;
  margin-bottom: 25px;
}

button {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 15px 25px;
  font-weight: bold;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ff7a00;
  color: white;
  text-decoration: none;

  border: none;
  padding: 15px 25px;
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;

  cursor: pointer;
  border-radius: 4px;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

.page-fade {
  position: fixed;
  inset: 0;
  background: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.page-fade.active {
  opacity: 1;
}

/* ===== ARROWS ===== */
.arrows {
  position: absolute;
  bottom: 40px;
  left: 10%;
  font-size: 40px;
}

.arrows span {
  cursor: pointer;
  margin-right: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .content {
    left: 5%;
    right: 5%;
  }

  h1 {
    font-size: 28px;
  }

  .phone {
    font-size: 14px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-container h2 {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.about-btn {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ===== ABOUT SECTION LAYOUT ===== */
.about-section {
  background: #ffffff;
  padding: 100px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.about-main {
  font-size: 18px;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 25px;
}

.about-secondary {
  font-size: 17px;
  line-height: 1.9;
  color: #8a8a8a;
  margin-bottom: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-main,
  .about-secondary {
    font-size: 16px;
  }
}

/* ===== ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-container h2 {
    font-size: 28px;
  }

  .about-main,
  .about-secondary {
    font-size: 16px;
  }
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: #ffffff;
  padding: 100px 20px;
}

.process-container {
  max-width: 800px;
  margin: auto;
}

.process-item {
  display: flex;
  gap: 30px;
  margin-bottom: 70px;
}

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

.icon {
  font-size: 26px;
  color: #ff7a00;
  flex-shrink: 0;
  margin-top: 5px;
}

.text h3 {
  font-size: 24px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.text p {
  font-size: 17px;
  line-height: 1.9;
  color: #8a8a8a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .process-item {
    gap: 20px;
  }

  .text h3 {
    font-size: 20px;
  }

  .text p {
    font-size: 16px;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  min-height: 90vh;
  background: url("../assets/banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  max-width: 900px;
  color: #ffffff;
  z-index: 1;
}

.cta-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-content h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-content h2 span {
  font-weight: 800;
}

.cta-text {
  font-size: 18px;
  line-height: 1.9;
  color: #e0e0e0;
  margin-bottom: 45px;
}

.cta-btn {
  display: inline-block;
  background: #ff7a00;
  color: #ffffff;
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 36px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-text {
    font-size: 16px;
  }
}

/* ===== DOMAINS SECTION ===== */
.domains-section {
  background: #ffffff;
  padding: 100px 20px;
}

.domains-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.domains-title {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 80px;
}

.domains-title strong {
  font-weight: 600;
}

.domains-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.domain-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 25px 0 20px;
  color: #2c2c2c;
}

.domain-item p {
  font-size: 17px;
  line-height: 1.9;
  color: #8a8a8a;
  max-width: 650px;
  margin: auto;
}

/* ===== ICON ===== */
.domain-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ff7a00;
  margin: auto;
  cursor: pointer;
  transition: 0.3s ease;
}

/* ACTIVE STATE (orange background) */
.domain-icon.active {
  background: #ff7a00;
  color: #ffffff;
  border-color: #ff7a00;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .domains-title {
    font-size: 28px;
  }

  .domain-item p {
    font-size: 16px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 80px;
}

.testimonials-wrapper {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial {
  display: none;
  animation: fade 1s ease;
}

.testimonial.active {
  display: block;
}

.quote {
  font-size: 80px;
  color: #cfcfcf;
  line-height: 1;
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.9;
  color: #7a7a7a;
  margin-bottom: 40px;
}

.testimonial-author {
  font-size: 20px;
  font-weight: 600;
  color: #ff7a00;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 16px;
  color: #9a9a9a;
}

/* DOTS */
.testimonial-dots {
  margin-top: 50px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #e0e0e0;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff7a00;
}

/* ANIMATION */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/* ===== EVENTS SECTION ===== */
.events-section {
  background: #ffffff;
  padding: 100px 20px;
}

.events-container {
  max-width: 1000px;
  margin: auto;
}

/* FEATURED */
.event-featured {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 60px;
}

.event-featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.event-meta {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 15px;
}

.event-overlay h3 {
  font-size: 28px;
  font-weight: 500;
}

/* LIST */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}

/* DATE CARD */
.event-date {
  width: 90px;
  height: 90px;
  background: #e0e0e0;
  border-radius: 12px;
  text-align: center;
  padding-top: 15px;
  transition: 0.3s ease;
}

.event-date .day {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.event-date .month {
  font-size: 14px;
  color: white;
}

/* ACTIVE DATE */
.event-date.active {
  background: #ff7a00;
}

/* INFO */
.event-info h4 {
  font-size: 22px;
  font-weight: 400;
  color: #ff7a00;
  margin-bottom: 8px;
}

.event-info p {
  font-size: 16px;
  color: #8a8a8a;
}

/* MOBILE */
@media (max-width: 768px) {
  .event-featured img {
    height: 300px;
  }

  .event-overlay h3 {
    font-size: 22px;
  }

  .event-item {
    gap: 15px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1c1c1c;
  color: #9a9a9a;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 25px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
}

.footer-item {
  margin-bottom: 15px;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  margin-top: 25px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.newsletter-form button {
  background: #ff7a00;
  border: none;
  color: white;
  padding: 0 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 45px;
}

.footer-brand strong {
  color: white;
}

.footer-brand span {
  font-size: 14px;
  color: #9a9a9a;
}

copyright {
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

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

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-float {
  animation: popIn 0.6s ease 1s both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 60vh;
  background: url("../assets/travaux-hero.jpg") center/cover no-repeat;
  display: flex;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.page-hero-content {
  position: relative;
  color: white;
  padding: 0 20px;
  max-width: 1100px;
  margin: auto;
}

.page-hero-subtitle {
  letter-spacing: 3px;
  font-size: 13px;
  opacity: 0.8;
}

.page-hero-content h1 {
  font-size: 48px;
  margin: 15px 0;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

/* ===== WORK SECTION ===== */
.work-section {
  background: #ffffff;
  padding: 80px 20px;
}

.work-block {
  margin-bottom: 80px;
}

.work-block:last-child {
  margin-bottom: 0;
}

.work-container {
  max-width: 900px;
  margin: auto;
}

.work-container h2 {
  font-size: 32px;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.work-container h1 {
  font-size: 23px;
  color: #2c2c2c;
  margin-bottom: 25px;
}

.work-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 40px;
}

.work-container p {
  font-size: 17px;
  line-height: 1.9;
  color: #8a8a8a;
  margin-bottom: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 32px;
  }

  .work-container h2 {
    font-size: 26px;
  }

  .work-container h1 {
    font-size: 20px;
  }

  .work-container p {
    font-size: 16px;
  }
}

.about-long-text {
  background: #f7f7f7;
  padding: 100px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.about-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.about-header h3 {
  margin: 0;
  font-size: 20px;
  color: #000000;
}

.about-header span {
  font-size: 14px;
  color: #888;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #8a8a8a;
  margin-bottom: 25px;
}

/* ===== CONSULTATION TABS ===== */
.consultation-tabs {
  padding: 120px 20px;
  background: #fff;
  max-width: 900px;
  margin: auto;
}

.consultation-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #000000;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 16px;
  padding-bottom: 10px;
  cursor: pointer;
  color: #bbb;
  position: relative;
}

.tab-btn.active {
  color: #222;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #ff7a00;
}

/* TEXT */
.tab-content {
  text-align: center;
  margin-bottom: 40px;
}

.tab-text {
  display: none;
  font-size: 15px;
  line-height: 1.8;
  color: #9a9a9a;
}

.tab-text.active {
  display: block;
}

/* IMAGE */
.consultation-image img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 60px;
}

/* FORM */
.consultation-form h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
}

.consultation-form p {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}

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

form input,
form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 14px;
}

form textarea {
  height: 120px;
  margin-bottom: 30px;
}

form button {
  display: block;
  margin: auto;
  background: #ff7a00;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.tab-text {
  display: none;
  opacity: 0;
  transform: translateY(10px preserve-3d);
  transition: all 0.4s ease;
}

.tab-text.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .tabs {
    gap: 20px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 120px 20px;
  background: #fff;
}

/* INFOS */
.contact-infos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9a9a9a;
  font-size: 15px;
}

.contact-item .icon {
  color: #ff7a00;
  font-size: 18px;
}

.divider {
  width: 1px;
  height: 30px;
  background: #ff7a00;
  opacity: 0.5;
}

/* FORM */
.contact-form-container {
  max-width: 900px;
  margin: auto;
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 150px;
  margin-bottom: 30px;
}

.contact-form button {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-infos {
    gap: 20px;
  }

  .divider {
    display: none;
  }

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

/* ===== CTA PREMIUM CENTERED ===== */
.cta-section {
  background: linear-gradient(to right, #1e1e1e, #252525, #1e1e1e);
  padding: 90px 20px;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;

  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-container.active {
  opacity: 1;
  transform: translateY(0);
}

/* TEXTE */
.cta2-text {
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 35px;
}

.cta2-text strong {
  font-weight: 700;
}

/* BOUTON */
.cta2-btn {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 16px 40px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.cta-container.active .cta2-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.cta2-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta2-text {
    font-size: 22px;
  }
}

/* ===== AUTO PLAY VIDEO SECTION ===== */
.auto-video-section {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.auto-video-section video {
  width: 100%;
  border-radius: 10px;
  display: block;
  background: #000;
}

/* ===== IMAGE CAROUSEL ===== */
.image-carousel {
  overflow: hidden;
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  touch-action: pan-y;
}

.carousel-item {
  min-width: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

/* TITLE OVER IMAGE */
.carousel-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0 0 10px 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .carousel-item img {
    height: 280px;
  }

  .carousel-title {
    font-size: 16px;
  }
}

/* ===== VIDEO CAROUSEL ===== */
.video-carousel-section {
  padding: 100px 20px;
  background: #0f0f0f;
  color: #fff;
}

.video-carousel-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.video-carousel {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.video-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.video-slide {
  min-width: 100%;
  position: relative;
}

.video-slide video {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  border-radius: 8px;
}

/* CAPTION */
.video-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 15px;
}

/* NAV BUTTONS */
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 5;
}

.video-nav.prev { left: 10px; }
.video-nav.next { right: 10px; }

/* MOBILE */
@media (max-width: 768px) {
  .video-slide video {
    height: 500px;
  }
}

/* ===== YOUTUBE VIDEO SECTION ===== */
.youtube-video-section {
  padding: 100px 20px;
  background: #0f0f0f;
}

.youtube-video-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.youtube-video-title {
  color: #fff;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Responsive 16:9 */
.youtube-video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.youtube-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .youtube-video-title {
    font-size: 22px;
  }
}
