html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  background-color: #030921;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 40px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    backdrop-filter 200ms ease,
    border-color 200ms ease;
}

.header > .nav-links {
  flex: 1;
  justify-content: center;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.hero {
  position: relative;
  min-height: 85dvh;
  padding: 96px 7vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
  animation: hero-fade-in 700ms ease-out both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-height: 750px) {
  .scroll-indicator {
    bottom: 16px;
  }
}

.logo h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 22px;
  text-transform: uppercase;
}

.logo h1 span {
  color: #f59e0b; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #f59e0b;       
  transition: width 220ms ease-out; 
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}


.rsv_vol {
  padding: 10px 26px;
  border-radius: 999px;
  background: #f59e0b;
  color: #000000;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.rsv_vol:hover {
  background: #eab308;        
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}


@media (max-width: 768px) {
  .header {
    padding: 10px 16px;
  }
  .nav-links {
    display: none; 
  }
}

.hero {
  position: relative;
  min-height: 70dvh;
  padding: 80px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero-title {
  margin: 0 0 24px;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero-subtitle {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease,
              box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.btn-primary {
  background: #f59e0b;
  color: #111827;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  background: #eab308;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
}


.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-label {
  opacity: 0.8;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transform: rotate(-45deg);
  animation: scroll-bounce 1.3s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.2;
  }
  30% {
    transform: translateY(4px) rotate(-45deg);
    opacity: 0.8;
  }
  60% {
    transform: translateY(10px) rotate(-45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(-45deg);
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 64px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 8vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.services {
  padding: 72px 7vw 80px;
  background:  #020617;
  color: #f9fafb;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.services-header h2 {
  margin: 0 0 12px;
  font-size: 2.5rem;
  font-weight: 800;
}

.services-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.98rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #020617;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.95);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.0), rgba(249, 115, 22, 0.0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.service-image {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}


.service-body {
  padding: 22px 24px 22px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #f59e0b;
}

.service-tagline {
  margin: 0 0 18px;
  font-size: 0.96rem;
  color: #e5e7eb;
}

.service-divider {
  height: 1px;
  width: 100%;
  background: rgba(55, 65, 81, 0.9);
  margin-bottom: 14px;
  opacity: 0;                
  transform: translateY(4px);
  transition: opacity 200ms ease, transform 200ms ease;
}


.service-details {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    transform 220ms ease;
  transform: translateY(4px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 1);
  border-color: rgba(249, 115, 22, 0.7);
  background: radial-gradient(circle at top, #111827, #020617 55%, #020617 100%);
}

.service-card:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.55),
    rgba(245, 158, 11, 0.0)
  );
}

.service-card:hover .service-divider {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-details {
  max-height: 120px; 
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .services {
    padding-inline: 16px;
  }
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.portfolio {
  padding: 72px 7vw 90px;
  background: #020617;
  color: #f9fafb;
}

.portfolio-header {
  max-width: 800px;
  margin-bottom: 28px;
}

.portfolio-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
}

.portfolio-header .dot {
  color: #f59e0b;
}

.portfolio-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.98rem;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #0f172a;
  color: #e5e7eb;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease,
              box-shadow 160ms ease, transform 160ms ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.filter-btn.active {
  background: #f59e0b;
  color: #111827;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-item {
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease,
              outline 200ms ease;
  outline: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.thumb {
  position: relative;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font-size: 0.78rem;
  font-weight: 600;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.0), rgba(249, 115, 22, 0.0));
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 1);
  outline-color: rgba(249, 115, 22, 0.7);
}

.portfolio-item:hover::before {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.0));
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.video-modal.open {
  display: flex;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 92vw);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
  background: #000;
}

#portfolioPlayer {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* Bouton fermer */
.video-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 150ms ease, transform 150ms ease;
}

.video-close:hover {
  background: #f59e0b;
  color: #111827;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .portfolio {
    padding-inline: 16px;
  }
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-section {
  padding: 80px 7vw 96px;
  background: #020617;
  color: #f9fafb;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.95);
}

.about-quote {
  align-self: flex-end;
  max-width: 420px;
  padding: 18px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.25), #020617);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
}

.about-quote p {
  margin: 0 0 8px;
  color: #fbbf24;
  font-size: 0.98rem;
}

.about-quote-author {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.about-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.about-header span {
  color: #f59e0b;
}

.about-text {
  margin: 0 0 14px;
  color: #d1d5db;
  font-size: 0.98rem;
}

.about-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(31, 41, 55, 1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  cursor: default;
  transition:
    box-shadow 200ms ease,
    border-color 200ms ease,
    transform 200ms ease,
    background 200ms ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.0), rgba(249, 115, 22, 0.0));
  opacity: 0;
  transition: opacity 200ms ease, background 200ms ease;
  pointer-events: none;
}

.about-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:#e0920b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-card-body h3 {
  margin: 0 0 2px;
  font-size: 0.98rem;
}

.about-card-body p {
  margin: 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 1);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), #020617);
}

.about-card:hover::before {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.0));
}

.slide-left,
.slide-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 500ms ease, transform 600ms ease;
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-left.in-view,
.slide-right.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-left {
    order: 2;
  }
  .about-right {
    order: 1;
  }
}

@media (max-width: 700px) {
  .about-section {
    padding: 64px 16px 80px;
  }
  .about-image {
    min-height: 260px;
  }
  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-section {
  padding: 80px 7vw 96px;
  background: #020617;
  color: #f9fafb;
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-left h2 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

.contact-left h2 span {
  color: #f59e0b;
}

.contact-intro {
  margin: 0 0 32px;
  max-width: 540px;
  color: #e5e7eb;
  font-size: 0.98rem;
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:  #f59e0b;
  border: 1px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
}

.label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  font-size: 0.98rem;
  color: #f9fafb;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #f59e0b;
}

.contact-right {
  display: flex;
  justify-content: flex-end;
}

.contact-form {
  width: 100%;
  max-width: 780px;
  padding: 26px 26px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 60%),
    #020617;
  border: 1px solid rgba(31, 41, 55, 0.95);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.95);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

input,
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #020617;
  color: #f9fafb;
  padding: 11px 6px;
  font-size: 0.94rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 160ms ease;
}

textarea {
  border-radius: 20px;
  min-height: 160px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus {
  border-color: #f59e0b;
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.6),
    0 18px 50px rgba(0, 0, 0, 0.9);
  background: #020617;
  transform: translateY(-1px);
}

.contact-submit {
  width: 100%;
  margin-top: 6px;
  padding: 13px 20px;
  border-radius: 999px;
  border: none;
  background: #f59e0b;
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.65);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-submit:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(249, 115, 22, 0.8);
}

.slide-from-left,
.slide-from-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms ease, transform 700ms ease;
}

.slide-from-left {
  transform: translateX(-80px);
}

.slide-from-right {
  transform: translateX(80px);
}

.slide-from-left.in-view,
.slide-from-right.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-right {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 64px 16px 80px;
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer {
  background: #020617;
  color: #e5e7eb;
  padding: 24px 7vw 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

.footer-top {
  border-top: 1px solid #111827;
  padding-top: 20px;
  padding-bottom: 28px;
}

.footer-top-label {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffb300;
  border: 1px solid #ff9d13;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
  display: inline-block;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: #f59e0b;
  background: #111827;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
}

.footer-social img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}


.footer-bottom {
  border-top: 1px solid #020617;
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1.4fr);
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 16px;
}

.footer-logo span {
  color: #f59e0b;
}

.footer-role {
  margin: 4px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

.footer-nav {
  display: flex;
  gap: 22px;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms ease;
}

.footer-nav a:hover {
  color: #f9fafb;
}

.footer-right {
  text-align: right;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 12px;
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: #f59e0b;
}

@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-right {
    text-align: left;
    align-items: flex-start;
  }
  .footer-legal {
    justify-content: flex-start;
  }
}

.services,
.portfolio,
.about-section,
.contact-section {
  position: relative;
}

.services::before,
.portfolio::before,
.about-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset-inline: 7vw;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.4), transparent);
  opacity: 0.25;
}

.service-card {
  cursor: pointer;
}

.portfolio-item {
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    outline 200ms ease,
    filter 180ms ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  filter: brightness(1.03);
}

.slide-left,
.slide-right,
.slide-from-left,
.slide-from-right {
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .header {
    padding: 10px 20px;
    gap: 16px;
  }

  .rsv_vol {
    display: none; 
  }
}

/* Conteneur de la page */
.legal-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  line-height: 1.6;
  color: #111827;
}

/* Titre principal */
.legal-page h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

/* Intro */
.legal-intro {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Titres de sections */
.legal-page h2 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Blocs d’information */
.legal-block {
  margin-bottom: 1rem;
}

/* Lignes “Label : Valeur” */
.legal-item {
  font-size: 0.95rem;
  margin: 0.2rem 0;
}

.legal-item-label {
  font-weight: 600;
}

/* Liens */
.legal-page a {
  color: #2563eb;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}


