/* ════════════════════════════════════════
   INDYX INDUSTRY — style.css
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0a2a44;
  --blue:    #0d4a7a;
  --accent:  #4cb74d;
  --light:   #f4f7fc;
  --soft:    #eaf3fb;
  --white:   #ffffff;
  --text:    #1a2c3e;
  --muted:   #6c86a3;
  --shadow:  0 8px 28px rgba(13,74,122,.12);
  --shadowL: 0 18px 48px rgba(13,74,122,.18);
  --rad:     18px;
  --tr:      .28s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--light); overflow-x: hidden; line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ════════ NAVBAR ════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: white;
  border-bottom: 1px solid rgba(13,74,122,.1);
  box-shadow: 0 2px 16px rgba(13,74,122,.08);
}
.site-nav {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 10px 5vw; max-width: 1400px; margin: 0 auto;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; margin-left: auto; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: .92rem; font-weight: 700;
  color: #1f3b4c; text-transform: uppercase; letter-spacing: .07em; transition: color var(--tr);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--navy) !important; color: white !important; padding: .5rem 1.2rem; border-radius: 999px; }
.nav-cta:hover { background: var(--accent) !important; }

.lang-switcher { display: flex; gap: 3px; background: var(--light); border: 1px solid rgba(13,74,122,.15); border-radius: 999px; padding: 3px; flex-shrink: 0; }
.lang-option { border: none; cursor: pointer; background: transparent; color: var(--blue); border-radius: 999px; padding: .28rem .5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: .8rem; transition: all var(--tr); }
.lang-option.active, .lang-option:hover { background: var(--accent); color: white; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════ HERO ════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  background-color: #041627;
}

/* 3 vidéos enchaînées */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video.active { opacity: 1; }

/* Grid animé */
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes gridMove { to { background-position: 0 48px; } }

/* Overlay léger — vidéo bien visible */
.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(135deg, rgba(4,22,39,.40) 0%, rgba(10,39,68,.25) 50%, rgba(15,95,168,.12) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.1) 0%, transparent 35%, transparent 60%, rgba(4,22,39,.80) 100%);
}
.hero-video-ctrl svg { width: 14px; height: 14px; fill: white; }
.hero-video-ctrl svg { width: 14px; height: 14px; fill: white; }

.hero-content { position: relative; z-index: 5; padding: 120px 5vw 50px; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  color: white; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(76,183,77,.15); border: 1px solid rgba(76,183,77,.4);
  padding: .42rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulseDot 1.5s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(76,183,77,.6); } 50% { box-shadow: 0 0 0 8px rgba(76,183,77,0); } }

.hero-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3.4rem,8.5vw,7rem); line-height: .9; font-weight: 800; text-transform: uppercase; color: white; margin-bottom: 1.2rem; }
.hero-title span { color: var(--accent); display: block; }
.hero-text { color: rgba(255,255,255,.85); font-size: 1.1rem; line-height: 1.7; max-width: 560px; margin-bottom: 1.5rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-tags span { color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: .35rem .85rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary, .btn-outline { display: inline-flex; align-items: center; padding: .85rem 1.8rem; border-radius: 999px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: .07em; transition: all var(--tr); cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--navy); box-shadow: 0 10px 28px rgba(76,183,77,.35); }
.btn-primary:hover { background: #6fd070; transform: translateY(-3px); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.8); }
.btn-outline:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.hero-stats { position: relative; z-index: 5; display: flex; padding: 0 5vw 48px; margin-top: auto; }
.hero-stats > div { flex: 1; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 3px; }
.hero-stats strong { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stats span { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

/* ════════ SECTIONS ════════ */
.section { padding: 88px 5vw; }
.section-light { background: white; }
.container { max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-label { font-family: 'Barlow Condensed', sans-serif; color: var(--accent); text-transform: uppercase; font-weight: 800; letter-spacing: .18em; font-size: .8rem; margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; color: var(--blue); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; line-height: 1.1; }
.section-divider { width: 56px; height: 4px; background: linear-gradient(90deg,var(--accent),#7ad06b); border-radius: 999px; margin: 1rem auto 0; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════ ABOUT ════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; }
.about-image { border-radius: var(--rad); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.about-image:hover img { transform: scale(1.05); }
/* slider override */
.about-image.about-slider img { aspect-ratio: unset; position: absolute; inset: 0; width: 100%; height: 100%; }
.about-content p { color: #2b4b6e; line-height: 1.75; margin-bottom: 1rem; }
.about-content p strong { color: var(--navy); }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 1.6rem; }
.mini-stats > div { text-align: center; padding: 18px 12px; background: var(--soft); border-radius: 14px; border: 1px solid rgba(13,74,122,.08); transition: all var(--tr); }
.mini-stats > div:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-stats strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; color: var(--blue); }
.mini-stats span { font-size: .73rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

/* ════════ MVV ════════ */
.mvv-box { background: white; border-radius: var(--rad); box-shadow: var(--shadowL); overflow: hidden; border: 1px solid rgba(13,74,122,.07); }
.mvv-tabs { display: flex; border-bottom: 1px solid rgba(13,74,122,.1); background: var(--light); }
.mvv-tab { flex: 1; padding: 18px; font-family: 'Barlow Condensed', sans-serif; font-size: .98rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; background: transparent; border: none; cursor: pointer; color: var(--muted); position: relative; transition: color var(--tr); }
.mvv-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform var(--tr); border-radius: 3px 3px 0 0; }
.mvv-tab.active, .mvv-tab:hover { color: var(--blue); background: white; }
.mvv-tab.active::after { transform: scaleX(1); }
.mvv-panel { display: none; padding: 44px 48px; animation: fadeIn .35s ease; }
.mvv-panel.active { display: block; }
.mvv-panel p { color: #2b4b6e; line-height: 1.75; margin-bottom: 1rem; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: none; } }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-card { background: var(--soft); border-left: 4px solid var(--accent); border-radius: 16px; padding: 1.4rem; transition: all var(--tr); }
.value-card:hover { transform: translateY(-5px); background: white; box-shadow: var(--shadow); }
.value-card > span { font-size: 2rem; display: block; margin-bottom: 10px; }
.value-card h3 { font-family: 'Barlow Condensed', sans-serif; color: var(--blue); font-size: 1.2rem; margin-bottom: 6px; }
.value-card p { color: #3f6382; font-size: .9rem; line-height: 1.55; }

/* ════════ WHY ════════ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { background: white; border-radius: var(--rad); padding: 1.8rem; border: 1px solid rgba(13,74,122,.07); box-shadow: var(--shadow); transition: all var(--tr); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--accent),var(--blue)); transform: scaleX(0); transition: transform var(--tr); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadowL); }
.why-card:hover::before { transform: scaleX(1); }
.why-card > span { color: rgba(13,74,122,.12); font-size: 3.2rem; font-weight: 800; font-family: 'Barlow Condensed', sans-serif; display: block; line-height: 1; margin-bottom: 14px; }
.why-card h3 { color: var(--blue); font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.why-card p { color: #3f6382; font-size: .9rem; line-height: 1.6; }

/* ════════ SERVICES ════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: white; border-radius: var(--rad); overflow: hidden; border: 1px solid rgba(13,74,122,.07); box-shadow: var(--shadow); transition: all var(--tr); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadowL); border-color: rgba(76,183,77,.35); }
.svc-img { width: 100%; height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.svc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .svc-img img { transform: scale(1.05); }
.svc-img--formation { background: linear-gradient(135deg,#0a3d1f,#0d7a50 50%,#4cb74d); flex-direction: column; gap: 12px; }
.svc-img--formation svg { width: 56px; height: 56px; }
.formation-badge { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: white; padding: 5px 16px; border-radius: 999px; font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }


.service-body { padding: 1.5rem; }
.service-body > span { display: block; color: rgba(13,74,122,.12); font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.service-body h3 { color: var(--blue); font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; margin-bottom: 8px; }
.service-body p { color: #3f6382; font-size: .9rem; line-height: 1.6; margin-bottom: 12px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags b { background: var(--soft); color: var(--blue); padding: .25rem .65rem; border-radius: 999px; font-size: .72rem; border: 1px solid rgba(13,74,122,.1); transition: all var(--tr); }
.service-card:hover .service-tags b { background: rgba(76,183,77,.1); border-color: rgba(76,183,77,.3); color: var(--accent); }
.btn-formation { display: inline-flex; align-items: center; gap: 8px; background: rgba(76,183,77,.1); color: var(--accent); border: 1px solid rgba(76,183,77,.3); border-radius: 999px; padding: 8px 16px; font-size: .85rem; font-weight: 700; cursor: pointer; transition: all var(--tr); margin-top: 12px; font-family: 'Barlow', sans-serif; }
.btn-formation:hover { background: rgba(76,183,77,.2); border-color: var(--accent); }
.btn-formation svg { transition: transform .3s ease; }
.btn-formation.open svg { transform: rotate(180deg); }
.formation-detail { max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s ease; opacity: 0; }
.formation-detail.open { max-height: 500px; opacity: 1; }
.formation-detail ul { margin: 12px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.formation-detail li { padding: 8px 12px; background: var(--soft); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; font-size: .85rem; color: #2b4b6e; line-height: 1.4; }
.formation-detail li strong { color: var(--blue); }
.formation-note { margin-top: 10px; padding: 10px 14px; background: rgba(76,183,77,.07); border-radius: 10px; font-size: .83rem; color: #2b5a2b; line-height: 1.55; border: 1px solid rgba(76,183,77,.15); }

/* ════════ TEAM SLIDER ════════ */
.team-slider-wrap { position: relative; margin-bottom: 36px; padding: 0 30px; }
.team-outer { overflow: hidden; border-radius: var(--rad); cursor: grab; user-select: none; }
.team-outer:active { cursor: grabbing; }
.team-track { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.team-card { flex: 0 0 340px; min-width: 340px; background: white; border-radius: var(--rad); padding: 2rem 1.8rem; text-align: center; border: 1px solid rgba(13,74,122,.1); box-shadow: var(--shadow); transition: transform var(--tr), box-shadow var(--tr), opacity .4s ease, border-color var(--tr); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadowL); border-color: rgba(76,183,77,.35); }
.team-card.dim { opacity: .38; transform: scale(.97); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--navy)); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(76,183,77,.4); margin: 0 auto 14px; }
.team-card h3 { color: var(--blue); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--accent); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-60%); width: 44px; height: 44px; border-radius: 50%; background: white; border: 2px solid rgba(13,74,122,.15); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all var(--tr); }
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); color: white; }
.slider-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.slider-prev { left: -6px; }
.slider-next { right: -6px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(13,74,122,.2); border: none; cursor: pointer; padding: 0; transition: all .3s ease; }
.slider-dot.active { background: var(--blue); width: 24px; }

/* ════════ CONTACT FORM ════════ */
.contact-form-section { background: white; border-radius: var(--rad); padding: 2.5rem; border: 1px solid rgba(13,74,122,.08); box-shadow: var(--shadow); margin-top: 2rem; }
.form-head { margin-bottom: 1.6rem; }
.form-head h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue); text-transform: uppercase; margin-bottom: 4px; }
.form-head p { color: var(--muted); font-size: .94rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .78rem; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .07em; }
.form-group input, .form-group textarea { border: 1.5px solid rgba(13,74,122,.14); border-radius: 10px; padding: 11px 14px; font-family: 'Barlow', sans-serif; font-size: .94rem; color: var(--text); background: var(--soft); transition: all var(--tr); outline: none; resize: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(13,74,122,.08); }
.form-group textarea { min-height: 130px; }
.btn-send { background: linear-gradient(135deg,var(--blue),#1a6dba); color: white; border: none; padding: 14px 36px; border-radius: 999px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all var(--tr); display: inline-flex; align-items: center; gap: 10px; }
.btn-send:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,74,122,.3); }
.form-success { display: none; margin-top: 12px; padding: 12px 18px; background: rgba(76,183,77,.1); border: 1px solid rgba(76,183,77,.35); color: #2a8a2b; border-radius: 10px; font-weight: 700; text-align: center; }

/* ════════ ADDRESS ════════ */
.address-card { margin-top: 2rem; background: var(--soft); border-radius: var(--rad); padding: 1.6rem 2rem; border: 1px solid rgba(13,74,122,.08); display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.address-card strong { color: var(--blue); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; }
.address-card p { color: #2b4b6e; line-height: 1.6; flex: 1; min-width: 220px; }
.address-card a { color: var(--blue); font-weight: 700; }
.address-card a:hover { color: var(--accent); }

/* ════════ FOOTER ════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.5); text-align: center; padding: 2rem 5vw 5rem; font-size: .88rem; }
.site-footer strong { color: var(--accent); }
.site-footer a { color: rgba(255,255,255,.6); }
.site-footer a:hover { color: var(--accent); }

/* ════════ WHATSAPP WIDGET ════════ */
.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(.95);
  transition: opacity .3s ease, transform .3s ease;
}
.wa-widget.open .wa-menu {
  pointer-events: all;
  opacity: 1;
  transform: none;
}
.wa-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 50px;
  padding: 8px 14px 8px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  border: 1px solid rgba(37,211,102,.2);
  text-decoration: none;
  transition: all var(--tr);
}
.wa-item:hover { transform: translateX(-4px); box-shadow: 0 6px 28px rgba(0,0,0,.2); border-color: rgba(37,211,102,.5); }
.wa-item-info { display: flex; flex-direction: column; }
.wa-item-info strong { font-size: .85rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.wa-item-info small { font-size: .75rem; color: var(--muted); }
.wa-item-icon { width: 36px; height: 36px; border-radius: 50%; background: #25d366; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wa-item-icon svg { width: 20px; height: 20px; }

.wa-main-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  animation: waPulse 2s infinite;
  transition: transform var(--tr), background var(--tr);
  flex-shrink: 0;
  position: relative;
}
.wa-main-btn:hover { transform: scale(1.08); }
.wa-widget.open .wa-main-btn { background: #128C7E; animation: none; }
.wa-main-btn svg { width: 32px; height: 32px; position: absolute; transition: opacity .2s ease, transform .2s ease; }
.icon-wa    { opacity: 1; transform: scale(1) rotate(0deg); }
.icon-close { opacity: 0; transform: scale(.5); }
.wa-widget.open .icon-wa    { opacity: 0; transform: scale(.5); }
.wa-widget.open .icon-close { opacity: 1; transform: scale(1); }

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.55), 0 0 0 14px rgba(37,211,102,.1); }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid   { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mvv-panel  { padding: 28px 24px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: white;
    display: none; padding: 8px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.1); z-index: 998;
  }
  .nav-links.show { display: flex; }
  .nav-links a { color: #1f3b4c !important; padding: 13px 5vw; border-bottom: 1px solid var(--light); }
  .nav-cta { margin: 10px 5vw !important; border-radius: 999px !important; text-align: center; }
  .hamburger { display: flex; }
  .lang-switcher { margin-left: auto; }

  .hero-content { padding: 100px 5vw 40px; }
  .hero-title   { font-size: clamp(2.8rem,12vw,4rem); }
  .hero-stats   { flex-direction: column; padding-bottom: 36px; }

  .section { padding: 60px 5vw; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .mini-stats    { grid-template-columns: 1fr 1fr; }
  .form-grid     { grid-template-columns: 1fr; }
  .contact-form-section { padding: 1.6rem 1.2rem; }
  .address-card  { flex-direction: column; padding: 1.2rem 1.4rem; }

  .team-card { flex: 0 0 calc(86vw); min-width: calc(86vw); }
  .slider-prev { left: -4px; }
  .slider-next { right: -4px; }

  .wa-widget { right: 16px; bottom: 18px; }
  .wa-main-btn { width: 56px; height: 56px; }
  .wa-item { padding: 7px 12px 7px 14px; }
  .wa-item-info strong { font-size: .82rem; }
  .wa-item-info small  { font-size: .72rem; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .nav-logo img { height: 52px; width: auto; object-fit: contain; }
}

/* ════ ABOUT PHOTO SLIDER ════ */
.about-image.about-slider {
  padding: 0 !important;
  height: 380px !important;
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}
.about-slides {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.about-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.about-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset !important;
  transition: transform .7s ease, opacity .3s ease;
}
.about-slide.active img { transform: scale(1.04); }

/* arrows */
.about-prev, .about-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; box-shadow: 0 2px 12px rgba(0,0,0,.25);
  transition: all .25s ease; opacity: 0;
}
.about-image.about-slider:hover .about-prev,
.about-image.about-slider:hover .about-next { opacity: 1; }
.about-prev:hover, .about-next:hover { background: white; transform: translateY(-50%) scale(1.1); }
.about-prev { left: 12px; }
.about-next { right: 12px; }
.about-prev svg, .about-next svg { width: 18px; height: 18px; stroke: #0a2744; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* dots */
.about-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.about-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0;
  transition: all .3s ease;
}
.about-dot.active { background: white; width: 22px; }

/* counter */
.about-counter {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.45); color: white;
  padding: 3px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; z-index: 10;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: .05em;
}
