/* ═══════════════════════════════════════════════════
   DISSMAR – styles.css
   Agence Marketing · Abidjan, Côte d'Ivoire
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --gold: #F5C518;
  --black: #0a0a0a;
  --black-warm: #1a1612;
  --dark: #111111;
  --gray: #1a1a1a;
  --white: #ffffff;
  --light-gray: #aaaaaa;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── UTILITAIRES ─── */
.label-gold {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.gold-divider {
  display: none;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

/* ─── NAVBAR ─── */
.navbar {
  background: var(--black);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  width: 100%;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold) !important;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link {
  color: var(--white) !important;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem 1rem !important;
  transition: color .3s;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 5px;
}

.burger-line:last-child {
  margin-bottom: 0;
}

.navbar-collapse {
  background: var(--black);
}

/* ─── HERO SLIDER (HORIZONTAL SLIDE) ─── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}

.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  pointer-events: none;
}

.slide-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.slide-content h1 span {
  color: var(--gold);
}

.slide-content p {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 197, 24, 0.8);
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 15;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 10px;
}

/* ─── TAGLINE ─── */
#tagline {
  background: var(--black);
  padding: 5rem 0;
}

.tagline-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.tagline-headline span {
  color: var(--gold);
}

.tagline-desc {
  color: var(--light-gray);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.85;
  max-width: 440px;
  margin-top: 1rem;
}

.about-card {
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--gold);
  padding: 2.5rem;
}

.about-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.expertise-mini {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.expertise-mini p {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

/* ─── TRUST – IMAGE PARALLAXE ─── */
#trust {
  position: relative;
  min-height: 420px;
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#trust::before {
  content: '';
  position: absolute;
  inset: -120px;
  background-image: url('../img/Fichier_Clients_dissmar.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

#trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

.trust-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.trust-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.trust-title span {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

@media (max-width: 768px) {
  #trust::before {
    background-attachment: scroll;
    inset: 0;
  }
  #trust {
    min-height: 280px;
    padding: 4rem 0;
  }
}

/* ─── PORTFOLIO SECTION (BRANDING) ─── */
.portfolio-section {
  background: var(--black);
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.portfolio-section:last-of-type {
  border-bottom: none;
}

.portfolio-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

/* ─── GRILLES PORTFOLIO ─── */
.pf-grid {
  display: grid;
  gap: 1.2rem;
}

.pf-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.pf-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── CARTES PORTFOLIO ─── */
.pf-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray);
  border-radius: 8px;
}

.pf-card--square {
  aspect-ratio: 1/1;
}

.pf-card--rectangle {
  aspect-ratio: 4/3;
}

.pf-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: opacity .5s, transform .6s cubic-bezier(.25, .46, .45, .94);
}

.pf-card:hover img {
  opacity: .3;
  transform: scale(1.07);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
  z-index: 1;
  transition: background .4s;
}

.pf-card:hover .pf-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .1) 100%);
}

.pf-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  z-index: 2;
  transform: translateY(8px);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  text-align: center;
}

.pf-card:hover .pf-info {
  transform: translateY(0);
}

.pf-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  margin-bottom: .5rem;
}

.pf-name {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .25rem;
  letter-spacing: .5px;
}

.pf-desc {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  margin: 0;
  letter-spacing: .3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s .05s, transform .4s .05s;
  line-height: 1.4;
}

.pf-card:hover .pf-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PORTFOLIO GALLERY (4 COLONNES) ─── */
#portfolio {
  background: var(--black);
  padding: 5rem 0;
}

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
}

.section-title--dark {
  color: #111;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}

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

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.zoom-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 197, 24, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.zoom-icon svg {
  stroke: #000;
  stroke-width: 1.5;
}

.portfolio-item:hover .zoom-icon {
  transform: scale(1.1);
}

.portfolio-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7));
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-tooltip {
  transform: translateY(0);
}

.tooltip-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.5rem;
}

.tooltip-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── MODAL POPUP ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s ease;
}

#imageModal .modal-content {
  position: relative;
  max-width: 300px;
  background: transparent;
  border-radius: 12px;
}

#imageModal .modal-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  border: none;
}

.modal-caption {
  background: #ffffff;
  color: #111111;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 1.2rem 1rem;
  margin: 0;
  width: 100%;
  border-radius: 0 0 12px 12px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.modal-close:hover {
  color: #fff;
  background: var(--gold);
  transform: scale(1.1);
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── STATS ─── */
#stats {
  background: var(--black);
  padding: 4rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .4rem;
}

/* ─── EXPERTISES ─── */
#expertises {
  background: #fff;
  padding: 5rem 0;
}

.expertise-card {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  height: 100%;
}

.expertise-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
}

.expertise-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.expertise-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: 1.5px;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ─── CTA ─── */
#cta {
  background: var(--black-warm);
  padding: 5rem 0;
  border-top: 1px solid rgba(245, 197, 24, .08);
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.cta-desc {
  color: var(--light-gray);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 480px;
}

.cta-card {
  background: #111;
  border-left: 3px solid var(--gold);
  padding: 2.5rem;
}

.cta-card-text {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ─── BOUTONS ─── */
.btn-gold {
  background: var(--gold);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: none;
  transition: background .3s, transform .2s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: .78rem;
  text-align: center;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: 1px solid var(--gold);
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-decor--tr {
  top: -100px;
  right: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(245, 197, 24, .07);
}

.contact-decor--bl {
  bottom: -80px;
  left: -130px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 197, 24, .05);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.contact-intro {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}

.contact-info-value {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.contact-social {
  margin-top: .5rem;
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .3s;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--gold);
}

.social-link svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, .6);
  fill: none;
  stroke-width: 2;
}

.contact-form-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.form-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
}

.form-label-custom {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  display: block;
  margin-bottom: .5rem;
}

.form-control-dark {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  border-radius: 0;
  padding: .85rem 1rem;
  font-size: .85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: border-color .3s, background .3s;
}

.form-control-dark:focus {
  outline: none;
  background: rgba(255, 255, 255, .07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, .1);
  color: var(--white);
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, .22);
  font-weight: 400;
}

.form-select-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5C518' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select-dark option {
  background: #1a1a1a;
  color: #fff;
}

/* ─── FOOTER ─── */
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-logo img {
  margin-left: auto;
  margin-right: auto;
}

footer p {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 1px;
}

/* ─── SECTION GLOBAL ─── */
section {
  width: 100%;
  overflow-x: hidden;
}

/* ─── PACKS ─── */
.pack-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.pack-price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
}

.pack-delay {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

/* ─── WHY GRID ─── */
.why-web {
  margin-top: 5rem;
  text-align: center;
}

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

.why-card {
  padding: 1.5rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.3s ease;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gold);
}

.why-card h4 {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,24,0.4);
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SECTION VIDEO (PORTFOLIO) ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s ease;
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 197, 24, .1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.video-info {
  padding: 1rem 1.2rem 1.2rem;
  text-align: center;
}

.video-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .2rem .65rem;
  margin-bottom: .75rem;
}

.video-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}

.video-info p {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SECTION PARTENAIRES - LOGOS DEFILANTS ─── */
#partenaires {
  background: var(--black);
  padding: 5rem 0;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.marquee-container:last-child {
  margin-bottom: 0;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0.5rem;
  position: relative;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: space-around;
  min-width: 100%;
}

.marquee--right .marquee__content {
  animation: scrollRight 40s linear infinite;
}

.marquee--left .marquee__content {
  animation: scrollLeft 40s linear infinite;
}

.marquee:hover .marquee__content {
  animation-play-state: paused;
}

.marquee__content img {
  width: 150px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.marquee__content img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

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

@media (max-width: 768px) {
  #partenaires {
    padding: 3rem 0;
  }
  .marquee__content {
    gap: 1.5rem;
  }
  .marquee__content img {
    height: 45px;
    max-width: 90px;
  }
  .marquee--right .marquee__content,
  .marquee--left .marquee__content {
    animation-duration: 30s;
  }
}

@media (max-width: 576px) {
  .marquee__content {
    gap: 1rem;
  }
  .marquee__content img {
    height: 35px;
    max-width: 70px;
  }
  .marquee--right .marquee__content,
  .marquee--left .marquee__content {
    animation-duration: 25s;
  }
}

/* ─── BOUTON WHATSAPP FLOTTANT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ─── BOUTON SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #F5C518;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background-color: #e0b010;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.scroll-top.visible {
  animation: fadeInUp 0.3s ease forwards;
}

/* ─── SECTION BLOG ─── */
#blog {
  background: var(--black);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
  opacity: 1;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  z-index: 2;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.blog-card:hover .blog-title {
  color: var(--gold);
}

.blog-excerpt {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}

.blog-link:hover {
  gap: 0.8rem;
}

.blog-link svg {
  transition: transform 0.3s;
}

.blog-link:hover svg {
  transform: translateX(3px);
}

.blog-footer {
  text-align: center;
  margin-top: 1rem;
}

.blog-footer .btn-outline-gold {
  padding: 0.8rem 2rem;
}

/* ─── RESPONSIVE BLOG ─── */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #blog {
    padding: 3rem 0;
  }
  .blog-header {
    margin-bottom: 2rem;
  }
  .blog-subtitle {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
  .blog-grid {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .blog-content {
    padding: 1.2rem;
  }
  .blog-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .blog-excerpt {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .blog-meta {
    gap: 0.8rem;
    font-size: 0.65rem;
  }
  .blog-category {
    font-size: 0.6rem;
    padding: 0.25rem 0.7rem;
    top: 0.8rem;
    left: 0.8rem;
  }
  .blog-link {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-subtitle {
    font-size: 0.75rem;
    padding: 0 1rem;
  }
  .blog-content {
    padding: 1rem;
  }
  .blog-title {
    font-size: 0.95rem;
  }
  .blog-excerpt {
    font-size: 0.7rem;
  }
  .blog-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .blog-category {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }
  .blog-footer .btn-outline-gold {
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
  }
}

/* ─── RESPONSIVE GENERAL ─── */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: .5rem 1rem 1rem;
  }
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-grid--2,
  .pf-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .slide-content p {
    letter-spacing: 2px;
    font-size: 0.65rem;
  }
  .slide-content h1 {
    letter-spacing: 1px;
  }
  #tagline, #portfolio, #stats, #expertises, #cta, #contact, #partenaires {
    padding: 3rem 0;
  }
  .portfolio-section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .tagline-headline {
    font-size: 1.9rem;
  }
  .about-card, .cta-card, .contact-form-box {
    padding: 1.5rem;
  }
  .contact-title {
    font-size: 1.7rem;
  }
  .zoom-icon {
    width: 45px;
    height: 45px;
  }
  .zoom-icon svg {
    width: 28px;
    height: 28px;
  }
  .tooltip-title {
    font-size: 0.7rem;
  }
  .pf-info {
    padding: 1rem;
  }
  .pf-name {
    font-size: .8rem;
  }
  .pf-desc {
    font-size: .65rem;
  }
  #imageModal .modal-content {
    max-width: 95%;
  }
  #imageModal .modal-content img {
    max-height: 70vh;
  }
  .modal-close {
    top: -40px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 30px;
  }
  .modal-caption {
    font-size: 0.8rem;
    margin-top: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #imageModal .modal-content {
    max-width: 95%;
  }
  #imageModal .modal-caption {
    font-size: 1rem;
    padding: 1rem 0.8rem;
  }
  #imageModal .modal-close {
    top: -35px;
    right: -5px;
    width: 30px;
    height: 30px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    letter-spacing: 1px;
  }
  .hero-sub {
    letter-spacing: 2px;
    font-size: .7rem;
  }
  .btn-gold, .btn-outline-gold {
    padding: .75rem 1.5rem;
    font-size: .68rem;
  }
  .cta-title {
    font-size: 1.4rem;
  }
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .pf-grid--2,
  .pf-grid--3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .zoom-icon {
    width: 40px;
    height: 40px;
  }
  .zoom-icon svg {
    width: 24px;
    height: 24px;
  }
  .tooltip-title {
    font-size: 0.65rem;
  }
  #imageModal .modal-content {
    max-width: 98%;
  }
  #imageModal .modal-content img {
    max-height: 60vh;
  }
  .modal-close {
    top: -35px;
    right: -5px;
    width: 30px;
    height: 30px;
    font-size: 25px;
  }
  .modal-caption {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
  }
  .scroll-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

.make-padding {
  padding-left: 10% !important;
  padding-right: 10% !important;
}