/* =============================================
   BIZGEES LTD — Global Stylesheet
   Site: Bizges.com | Bulgarie
   Font: Plus Jakarta Sans | Brand: #138670
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS Variables ─────────────────────────── */
:root {
  --brand:        #138670;
  --brand-dark:   #0d6b5a;
  --brand-light:  #1aab8a;
  --brand-xlight: #e8f5f2;
  --brand-muted:  rgba(19,134,112,.08);

  --dark:         #0e1a17;
  --dark-2:       #1c2e2a;
  --gray-1:       #3d5450;
  --gray-2:       #6b8c87;
  --gray-3:       #a8c4bf;
  --gray-4:       #d4e8e4;
  --light:        #f4faf9;
  --white:        #ffffff;

  --font: 'Plus Jakarta Sans', sans-serif;

  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-pill:9999px;

  --shadow-sm: 0 2px 8px rgba(19,134,112,.10);
  --shadow-md: 0 8px 32px rgba(19,134,112,.14);
  --shadow-lg: 0 20px 60px rgba(19,134,112,.18);

  --transition: .28s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 72px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-1); line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--gray-1); line-height: 1.8; }

/* ── Layout ─────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Section Label ──────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-muted);
  border: 1px solid rgba(19,134,112,.15);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.section-label svg { flex-shrink: 0; }

/* ── Section Header ─────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 580px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: -.01em;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 4px 18px rgba(19,134,112,.28);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 6px 28px rgba(19,134,112,.40);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.22);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}
.btn-lg { padding: 16px 34px; font-size: .98rem; border-radius: var(--r-md); }
.btn-sm { padding: 9px 18px; font-size: .83rem; }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-4);
  padding: 36px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(19,134,112,.25);
  transform: translateY(-4px);
}
.icon-box {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--brand-muted);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.card:hover .icon-box { background: var(--brand); color: var(--white); }

/* ── Page Hero (pages internes) ─────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0d3d33 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(19,134,112,.22) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,.6); max-width: 560px; }

/* ── Breadcrumb ─────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.45);
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #4ecca8; }
.breadcrumb-sep { opacity: .4; }

/* ── Form ───────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .87rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-4);
  border-radius: var(--r-sm);
  font-size: .93rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19,134,112,.10); }
.form-control::placeholder { color: var(--gray-3); }
select.form-control {
  appearance: none;
  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='%23138670' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(78,204,168,.55)} 100%{box-shadow:0 0 0 9px rgba(78,204,168,0)} }

.animate-up { animation: fadeUp .7s ease both; }
.animate-in { animation: fadeIn .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }
.delay-5 { animation-delay: .60s; }

/* ── Scroll Reveal ──────────────────────────── */
/* Visible par défaut = fallback si JS absent ou chemin incorrect */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}
/* body.js-ready est ajouté par main.js dès son chargement */
body.js-ready .reveal        { opacity: 0; transform: translateY(28px); }
body.js-ready .reveal.visible{ opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ── Utility ────────────────────────────────── */
.text-brand  { color: var(--brand); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-2); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 72px 0; }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-pad    { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .container { padding: 0 16px; }
}