/* ============================================
   AZGAD RÉSEAUX — PREMIUM LIGHT DESIGN
   Light theme, warm tones, clean & airy
   ============================================ */

:root {
  --bg: #fafafa;
  --bg-2: #ffffff;
  --bg-3: #f0f0f5;
  --dark: #1a1a2e;
  --accent: #e86a10;
  --accent-light: #ff8533;
  --accent-soft: rgba(232,106,16,0.08);
  --text: #4a4a5a;
  --text-dark: #1a1a2e;
  --text-muted: #8a8a9a;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 14px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 2px;
}
#nav:not(.scrolled) .nav-logo { color: #ffffff; }
.nav-logo span {
  font-weight: 300;
  color: var(--accent);
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
#nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.7); }
.nav-links a:hover { color: var(--text-dark); }
#nav:not(.scrolled) .nav-links a:hover { color: #ffffff; }
.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: #ffffff !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}
#nav:not(.scrolled) .nav-burger span { background: #ffffff; }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  margin-left: 10%;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(232,106,16,0.15);
  border-radius: 6px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- BUTTONS ---------- */
.btn-accent {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,106,16,0.25);
}
.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 20px 48px; font-size: 15px; }
.btn-full { width: 100%; text-align: center; }

/* ---------- SECTION TITLES ---------- */
.section-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ---------- STATS ---------- */
#stats {
  padding: 60px 0;
  background: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- SERVICES ---------- */
#services {
  padding: 120px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(232,106,16,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-2));
}
.service-card-body { padding: 32px; }
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text);
  margin-bottom: 20px;
}
.service-list { margin-bottom: 24px; }
.service-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '→';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 600;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-link i { margin-left: 8px; transition: transform 0.3s; }
.service-link:hover i { transform: translateX(4px); }

/* ---------- PROCESS ---------- */
#process {
  padding: 120px 0;
  background: var(--bg-3);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.process-step:hover {
  border-color: rgba(232,106,16,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- REALISATIONS ---------- */
#realisations {
  padding: 120px 0;
  background: var(--bg);
}
.project-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.project-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 6px;
}
.project-info { padding: 16px 8px; }
.project-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.project-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- ABOUT ---------- */
#apropos {
  padding: 120px 0;
  background: var(--bg-3);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}
.about-text p { margin-bottom: 16px; }
.about-values {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-2);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.value i {
  font-size: 20px;
  color: var(--accent);
}
.value span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- TESTIMONIALS ---------- */
#avis {
  padding: 120px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: rgba(232,106,16,0.2);
  box-shadow: var(--shadow-hover);
}
.testimonial-stars {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.testimonial p {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #c45200 100%);
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
#cta .btn-accent {
  background: #ffffff;
  color: var(--text-dark);
}
#cta .btn-accent:hover {
  background: var(--text-dark);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ---------- CONTACT ---------- */
#contact {
  padding: 120px 0;
  background: var(--bg-3);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { margin: 32px 0; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-line i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}
.contact-line a, .contact-line span {
  font-size: 16px;
  color: var(--text-dark);
}
.contact-zone {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,106,16,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}
.contact-form select { color: var(--text-muted); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ---------- FOOTER ---------- */
#footer {
  padding: 60px 0 0;
  background: var(--dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
#footer .nav-logo { color: #ffffff; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  max-width: 300px;
}
.footer-links h5 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .project-showcase { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-2);
    padding: 80px 32px;
    gap: 24px;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open a { color: var(--text-dark) !important; }
  .hero-content { margin-left: 5%; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .project-showcase { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-values { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .project-showcase { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-outline,
  .hero-actions .btn-accent { text-align: center; }
}

/* WhatsApp floating button */
.whatsapp-float{position:fixed;bottom:30px;left:30px;z-index:9990;display:flex;align-items:center;gap:10px;background:#25d366;color:#fff;padding:14px 22px;border-radius:50px;font-size:14px;font-weight:600;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);transition:all 0.3s}
.whatsapp-float:hover{background:#1ebe5d;color:#fff;transform:translateY(-3px);box-shadow:0 8px 30px rgba(37,211,102,0.5)}
.whatsapp-float i{font-size:22px}
@media(max-width:768px){.whatsapp-float span{display:none}.whatsapp-float{padding:16px;border-radius:50%}.whatsapp-float i{font-size:24px}}

/* Hero title (visual, not H1) */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}
h1.hero-tag {
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

/* H1 on hero-tag: keep small for SEO */
.hero-content h1.hero-tag,
h1.hero-tag {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  color: var(--accent) !important;
  line-height: 1.5 !important;
  margin-bottom: 24px !important;
  padding: 8px 16px !important;
  background: rgba(232,106,16,0.15) !important;
  border-radius: 6px;
  display: inline-block;
  line-height: 1.5;
}
/* Hero headline: same visual as old h1 */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* SVG Logo */
.logo-svg { height: 40px; width: auto; }

/* Logo switch: white on hero, dark on scroll */
.logo-light { display: block; }
.logo-dark { display: none; }
#nav.scrolled .logo-light { display: none; }
#nav.scrolled .logo-dark { display: block; }

/* Clickable project cards */
a.project-card { text-decoration: none; color: inherit; display: block; }
a.project-card:hover { color: inherit; }

/* Logo combo: cropped PNG + RENOVATION/RESEAUX */
.logo-combo { display: flex; align-items: center; gap: 10px; height: 40px; }
.logo-text { display: flex; flex-direction: column; justify-content: center; gap: 0; line-height: 1.35; margin-top: 0; }
.logo-combo-light { display: flex; }
.logo-combo-dark { display: none; }
#nav.scrolled .logo-combo-light { display: none; }
#nav.scrolled .logo-combo-dark { display: flex; }
.logo-icon { height: 42px; width: auto; filter: brightness(0) invert(1); }
.logo-icon-dark { filter: brightness(0) invert(0.1); }
.logo-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.4); align-self: center; }
.logo-sep-dark { background: rgba(26,26,46,0.2); }

.logo-reno { font-family: "Inter", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #e86a10; line-height: 1.3; }


/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* -- Nav mobile -- */
@media (max-width: 768px) {
  #nav { padding: 12px 0; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 80px 32px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open a { color: #1a1a2e !important; font-size: 16px; }
  .nav-cta { display: inline-block; margin-top: 12px; }
  .logo-combo { gap: 6px; }
  .logo-icon { height: 30px; }
  .logo-reno { font-size: 9px; letter-spacing: 1.5px; }
  .logo-sep { height: 22px; }
}

/* -- Hero mobile -- */
@media (max-width: 768px) {
  #hero { min-height: 100vh; padding: 80px 16px 40px; }
  .hero-content { margin-left: 5%; max-width: 100%; }
  .hero-content h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-headline, .hero-content h2 { font-size: clamp(28px, 8vw, 40px); }
  .hero-sub, .hero-p, .hero-desc { font-size: 15px; }
  .hero-actions, .hero-btns, .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-actions .btn-accent,
  .hero-actions .btn-outline,
  .hero-actions .btn-glow,
  .hero-actions .btn-ghost,
  .hero-buttons .btn,
  .hero-btns .btn-pill { width: 100%; text-align: center; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .hero-proof { flex-wrap: wrap; gap: 12px; }
}

/* -- Stats mobile -- */
@media (max-width: 768px) {
  #stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num, .chiffre-num { font-size: 36px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* -- Services mobile -- */
@media (max-width: 768px) {
  #services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-card-img { height: 200px; }
  .service-card-body { padding: 24px 20px; }
  .service-card h3 { font-size: 22px; }
  .section-heading { font-size: clamp(24px, 6vw, 36px); margin-bottom: 32px; }
  .section-tag, .chip, .label { font-size: 11px; }
}

/* -- Process / Methode mobile -- */
@media (max-width: 768px) {
  #process, #methode { padding: 60px 0; }
  .process-grid, .methode-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-step, .step-card { padding: 28px 20px; }
  .step-arrow { display: none; }
  .step-line { display: none; }
  .steps-row { flex-wrap: wrap; gap: 16px; }
  .step-card, .step { flex: 0 0 100%; }
}

/* -- Realisations / Projects mobile -- */
@media (max-width: 768px) {
  #realisations, #projets { padding: 60px 0; }
  .project-showcase { grid-template-columns: 1fr; gap: 20px; }
  .projects-scroll { padding: 0 16px 30px; }
  .project-slide { flex: 0 0 280px; }
  .projects-masonry { columns: 1; }
}

/* -- About mobile -- */
@media (max-width: 768px) {
  #apropos { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img img { height: 300px; }
  .about-values { flex-wrap: wrap; gap: 12px; }
  .value { padding: 10px 16px; }
}

/* -- Testimonials / Avis mobile -- */
@media (max-width: 768px) {
  #avis, #temoignages { padding: 60px 0; }
  .testimonials-grid, .temoignages-grid, .avis-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial, .temoignage, .avis-card { padding: 28px 24px; }
}

/* -- CTA mobile -- */
@media (max-width: 768px) {
  #cta { padding: 60px 0; }
  #cta h2, .cta-content h2 { font-size: clamp(24px, 6vw, 32px); }
  .btn-glow--lg { padding: 16px 32px; font-size: 14px; }
}

/* -- Contact mobile -- */
@media (max-width: 768px) {
  #contact { padding: 60px 0; }
  .contact-grid, .contact-split, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
}

/* -- Footer mobile -- */
@media (max-width: 768px) {
  .footer-inner, .footer-grid, .footer-row { grid-template-columns: 1fr; gap: 24px; flex-direction: column; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .footer-brand, .footer-col { text-align: center; }
}

/* -- Bento grid mobile -- */
@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-small { grid-column: span 1; min-height: 300px; }
  .bento-card h3 { font-size: 22px; }
}

/* -- Marquee mobile -- */
@media (max-width: 768px) {
  .marquee-track span { font-size: 14px; letter-spacing: 2px; }
}

/* -- Expertise cards mobile -- */
@media (max-width: 768px) {
  .expertise-cards { gap: 48px; }
  .exp-card, .exp-card--reverse { grid-template-columns: 1fr; direction: ltr; }
  .exp-card--reverse > * { direction: ltr; }
  .exp-card h3 { font-size: 28px; }
  .exp-card-num { font-size: 80px; top: -15px; }
}

/* -- Global mobile padding -- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { overflow-x: hidden; }
}

/* -- WhatsApp button mobile -- */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; left: 20px; padding: 14px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float i { font-size: 22px; }
}

/* -- Hero image mobile fix -- */
@media (max-width: 768px) {
  .hero-slide {
    background-position: center center !important;
    background-size: cover;
  }
  #hero {
    min-height: 100vh !important;
    height: 100vh !important;
  }
}

/* Mobile hero: hide desktop landscape slides, show portrait slides */
.hero-mobile-slide { display: none !important; }
@media (max-width: 768px) {
  .hero-slide:not(.hero-mobile-slide) { display: none !important; }
  .hero-mobile-slide { display: block !important; }
  .hero-mobile-slide.active { display: block !important; }
}

/* Fix logo circle clipping */
#nav, .nav-inner, .nav-logo, .logo-combo { overflow: visible !important; }

/* Hide Découvrir on short screens (laptops 13 pouces, etc) */
@media (max-height: 800px) {
  .hero-scroll { display: none !important; }
}
