/* =============================================
   PROMABAX — Global Stylesheet
   ============================================= */

:root {
  --navy: #073e5a;
  --navy-light: #135076;
  --cyan: #06C7F2;
  --cyan-dark: #04a8ce;
  --grey-light: #F4F6F8;
  --grey-mid: #e0e6ea;
  --white: #ffffff;
  --black: #0a0a0a;
  --text: #2c3e50;
  --text-muted: #6b7f8f;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(7,62,90,0.10);
  --shadow-md: 0 8px 40px rgba(7,62,90,0.15);
  --transition: 0.3s ease;
  --container: 1200px;
  --font-heading: 'Yeseva One', Georgia, serif;
  --font-body: 'Inter', 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.8; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.btn-primary:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,242,0.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(6,199,242,0.12);
  color: var(--cyan-dark);
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.navbar-nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-light);
  transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--cyan); }
.navbar-nav .nav-cta { margin-left: 12px; }
.navbar-actions { display: flex; align-items: center; gap: 16px; }
.navbar-phone { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.navbar-phone a { color: inherit; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text);
}
.dropdown-menu a:hover { background: var(--grey-light); color: var(--cyan); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 96px 24px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  display: block;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a5a80 60%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/DALL_C2_B7E_2025-01-22_21.29.49_-_A_modern_and_clean_hospital_room_with_advanced_medical_equipment_in_the_background__including_monitors_and_oxygen_machines__bathed_in_soft_natural_lig_b2348.webp') center/cover no-repeat;
  opacity: 0.12;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,199,242,0.18);
  border: 1px solid rgba(6,199,242,0.4);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--cyan); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num { font-family: var(--font-heading); font-size: 2rem; color: var(--cyan); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  #073e5a 0%, rgba(7,62,90,0.7) 30%, transparent 65%),
    linear-gradient(to top,    #073e5a 0%, rgba(7,62,90,0.4) 25%, transparent 55%),
    linear-gradient(to bottom, #073e5a 0%, transparent 25%),
    linear-gradient(to left,   #073e5a 0%, transparent 30%);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon { font-size: 2rem; }
.hero-badge-text strong { display: block; font-size: 1.1rem; color: var(--navy); }
.hero-badge-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ── PARTNERS STRIP ── */
.partners-strip {
  background: var(--grey-light);
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.partners-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-strip-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity var(--transition);
  filter: grayscale(1);
}
.partner-logo:hover { opacity: 0.9; filter: none; }
.partner-logo img { height: 36px; width: auto; }
.partner-logo span { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(6,199,242,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h4 { color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }

/* ── PRODUCTS ── */
.bg-grey { background: var(--grey-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--grey-light);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card-body { padding: 24px; }
.product-card-body .tag { margin-bottom: 12px; }
.product-card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.product-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 24px;
}

/* ── RÉALISATIONS / PROJECTS ── */
.realizations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.realization-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
}
.realization-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.realization-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.realization-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.realization-card:hover .realization-card-img img { transform: scale(1.04); }
.realization-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,62,90,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.realization-overlay h3 { color: var(--white); font-size: 1.1rem; }
.realization-overlay span { display: block; color: var(--cyan); font-size: 0.82rem; margin-top: 4px; }
.realization-card-body { padding: 24px; }
.realization-card-body p { font-size: 0.9rem; }
.realization-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.realization-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.realization-meta-item strong { display: block; color: var(--navy); font-size: 0.9rem; }

/* ── STATS / CHIFFRES ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a5a80 100%);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num { font-family: var(--font-heading); font-size: 3rem; color: var(--cyan); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 8px; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--grey-light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--grey-light), var(--grey-mid));
}
.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-meta .tag { font-size: 0.72rem; }
.blog-card-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--cyan-dark); gap: 8px; }

/* ── BLOG ADMIN / UPLOAD ── */
.admin-panel {
  background: var(--grey-light);
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.admin-panel h3 { color: var(--navy); margin-bottom: 8px; }
.admin-panel p { margin-bottom: 24px; }

/* Blog editor form */
.blog-editor {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: none;
}
.blog-editor.open { display: block; }
.blog-editor h3 { margin-bottom: 32px; color: var(--navy); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--cyan); }
textarea.form-control { min-height: 180px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.image-upload-area {
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.image-upload-area:hover { border-color: var(--cyan); background: rgba(6,199,242,0.04); }
.image-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.image-upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.image-upload-area p { font-size: 0.88rem; color: var(--text-muted); }
.preview-img { max-height: 200px; border-radius: var(--radius); margin: 12px auto 0; display: none; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a5a80 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(6,199,242,0.07);
  top: -200px; right: -100px;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(6,199,242,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.contact-detail-value a { color: inherit; }
.contact-detail-value a:hover { color: var(--cyan); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; }
.contact-form h3 { color: var(--navy); margin-bottom: 28px; }
.form-actions { display: flex; gap: 12px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--grey-mid); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--grey-light); }
.faq-question .faq-arrow { font-size: 1rem; transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 500px; }
.faq-answer p { font-size: 0.92rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-brand .footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--cyan); color: var(--navy); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter input:focus { outline: none; border-color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--cyan); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a5a80 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(6,199,242,0.08);
  bottom: -150px; right: -100px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--cyan); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: translateY(80px);
  opacity: 0;
  transition: all var(--transition);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.toast.success { border-left: 4px solid #2ecc71; }
.toast.error { border-left: 4px solid #e74c3c; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── Bouton WhatsApp flottant ── */
.whatsapp-float {
  position: fixed;
  bottom: 88px; right: 32px;
  width: 48px; height: 48px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 990;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-size: 1.5rem;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 24px rgba(37,211,102,0.55); }

/* ── ANIMATIONS ── */
.fade-up {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-nav, .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .realizations-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 120px 0 64px; }
  .btn { padding: 12px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-cyan { color: var(--cyan) !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

/* ── BANDEAU IDENTITÉ (index.html) ── */
.brand-banner {
  background: var(--white);
  border-bottom: 1.5px solid var(--grey-mid);
  margin-top: 72px;
}
.brand-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-banner-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.brand-banner-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin: 0 0 4px;
  font-family: var(--font-body);
}
.brand-banner-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}
.brand-banner-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.brand-partner-badge {
  background: #eef7fc;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #c8e8f5;
  white-space: nowrap;
}
.brand-banner-info {
  background: var(--navy);
  padding: 10px 0;
}
.brand-banner-info-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.brand-banner-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 768px) {
  .brand-banner-inner { flex-direction: column; align-items: flex-start; padding: 20px 0; }
  .brand-banner-right { gap: 6px; }
  .brand-banner-info-inner { gap: 12px; flex-direction: column; }
  .brand-banner-name { font-size: 1.4rem; }
  .brand-banner-logo { height: 48px; }
}
