/*
Theme Name:   G&R Eden Cargo Child
Theme URI:    https://gredencargollc.com
Description:  Child theme for G&R Eden Cargo LLC
Author:       Wood Brian
Template:     astra
Version:      1.0.0
Text Domain:  greden-child
*/

/* =============================================
   GOOGLE FONTS - NOTO SANS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --blue:       #4A6D8C;
  --blue-light: #6A93B8;
  --blue-dark:  #2d4f6a;
  --white:      #ffffff;
  --dark:       #1A1A2E;
  --grey-bg:    #F5F7FA;
  --grey-text:  #4A4A6A;
  --transition: 0.35s ease;
}

/* =============================================
   BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
#masthead, .site-header {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header .container,
.ast-container { max-width: 1200px !important; }

.site-logo img { max-height: 60px !important; }

/* Nav */
.main-navigation a, .ast-primary-menu-area a {
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--dark) !important;
  transition: color var(--transition) !important;
  letter-spacing: 0.3px;
  white-space: nowrap !important;
}
.main-navigation a:hover, .ast-primary-menu-area a:hover { color: var(--blue) !important; }

/* CTA header */
.ast-header-break-point .main-header-bar { background: var(--white); }

/* =============================================
   BOUTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--blue);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.main-navigation .btn-primary,
.main-navigation .btn-primary:visited,
.site-header .btn-primary,
.site-header .btn-primary:visited {
  color: #ffffff !important;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,109,140,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white) !important;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 34px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue) !important;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 4px;
  transition: all var(--transition);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--grey-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* =============================================
   ANIMATIONS DE DÉFILEMENT (SCROLL)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

/* Délais en cascade pour les cartes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/wp-content/themes/greden-child/assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0 120px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero-title span { color: rgba(255,255,255,0.75); }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 40px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  width: 100%;
  object-fit: cover;
  height: 440px;
}
.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-image-badge .badge-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.hero-image-badge .badge-txt {
  font-size: 12px;
  color: var(--grey-text);
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item { text-align: center; padding: 10px; }
.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Noto Sans', sans-serif;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* =============================================
   SECTIONS GÉNÉRIQUES
   ============================================= */
.section { padding: 90px 0; }
.section-alt { background: var(--grey-bg); }
.section-dark { background: var(--dark); }
.section-blue { background: var(--blue); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.section-title-white { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-desc-white { color: rgba(255,255,255,0.8); }

/* =============================================
   CARTES SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(74,109,140,0.18); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--blue);
  color: var(--white);
}
.service-card.featured .service-title,
.service-card.featured .service-desc { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.85); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(74,109,140,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.15); }

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   GALERIE / GRILLE IMAGES
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.large {
  grid-column: span 2;
}
.gallery-item.large img { height: 300px; }

/* =============================================
   SECTION À PROPOS
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: 12px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  height: 180px;
  background: var(--blue);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
}
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(74,109,140,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.about-feature-text h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 4px; }
.about-feature-text p { font-size: 14px; color: var(--grey-text); margin: 0; }

/* =============================================
   SECTION CTA
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
}
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FORMULAIRE CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(74,109,140,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-item-text h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text p, .contact-item-text a { font-size: 15px; color: var(--grey-text); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.09);
}
.contact-form-wrap h3 { font-size: 24px; font-weight: 700; margin: 0 0 32px; color: var(--dark); }

/* Contact Form 7 styles */
.wpcf7-form .form-group { margin-bottom: 20px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e4ed;
  border-radius: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--grey-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,109,140,0.12);
  background: var(--white);
}
.wpcf7-form textarea { height: 140px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-family: 'Noto Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 16px 40px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  width: 100%;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,109,140,0.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wpcf7-form label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.5px; }

/* =============================================
   PAGE SERVICES DÉTAIL
   ============================================= */
.services-list { display: flex; flex-direction: column; gap: 40px; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail img {
  border-radius: 10px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.service-detail-content h3 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 0 0 16px; }
.service-detail-content p { font-size: 15px; color: var(--grey-text); line-height: 1.75; margin: 0 0 24px; }
.service-detail-list { list-style: none; padding: 0; margin: 0 0 28px; }
.service-detail-list li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--grey-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-detail-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* =============================================
   PAGE MENTIONS LÉGALES / CGV
   ============================================= */
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-wrap h1 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin: 0 0 8px; }
.legal-date { color: var(--grey-text); font-size: 14px; margin-bottom: 48px; }
.legal-wrap h2 { font-size: 1.3rem; font-weight: 700; color: var(--blue); margin: 40px 0 12px; border-bottom: 2px solid var(--grey-bg); padding-bottom: 10px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 12px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer, #colophon {
  background: var(--dark) !important;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0 !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 16px 0 24px;
}
.footer-logo-img { max-height: 52px; filter: brightness(0) invert(1); margin-bottom: 0; }

.footer-col h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item span:first-child { color: var(--blue-light); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* =============================================
   PAGE HERO INTÉRIEUR
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
  position: relative; z-index: 2;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  position: relative; z-index: 2;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }

/* =============================================
   COUNTER ANIMATION
   ============================================= */
.counter { display: inline-block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-inner { padding: 80px 0 100px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .about-image-wrap img { height: 380px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  /* Réduction padding */
  .section { padding: 60px 0; }
  .hero-inner { padding: 60px 0 80px; }
  .hero-tag { font-size: 11px; letter-spacing: 1.5px; padding: 5px 12px; }
  .hero-desc { font-size: 16px; margin-bottom: 28px; }
  .stats-bar { padding: 36px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 56px 0; }
  .page-hero p { font-size: 15px; }
  /* About image moins haute */
  .about-image-wrap img { height: 320px; }
  .about-image-accent { display: none; }
  /* Catalogue note */
  .catalogue-note { padding: 24px 20px; }
  .cta-section { padding: 60px 0; }
  .hero-section { min-height: auto; }
}

@media (max-width: 480px) {
  /* Stats : 2 colonnes compactes */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }
  /* Hero */
  .hero-inner { padding: 48px 0 60px; }
  .hero-tag { letter-spacing: 1px; font-size: 10px; }
  /* Section */
  .section { padding: 48px 0; }
  .page-hero { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }
  /* About image */
  .about-image-wrap img { height: 240px; }
  /* CTA */
  .cta-btns { gap: 12px; }
  .btn-primary, .btn-white, .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; box-sizing: border-box; }
  /* Catalogue */
  .catalogue-filters { gap: 8px; }
  .cat-btn { padding: 8px 16px; font-size: 13px; }
}

/* =============================================
   ASTRA OVERRIDES
   ============================================= */
.ast-page-builder-template .site-content { padding: 0 !important; }
.entry-content { max-width: none !important; }
.ast-separate-container .ast-article-single { padding: 0 !important; }

/* =============================================
   EXPERTISE ROW — 4 CARDS SUR UNE LIGNE
   ============================================= */
.expertise-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.expertise-card:hover {
  box-shadow: 0 12px 40px rgba(74,109,140,0.12);
  transform: translateY(-4px);
}
.expertise-card--featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.expertise-card--featured .expertise-desc {
  color: rgba(255,255,255,0.8);
}
.expertise-card--featured .expertise-link {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.expertise-num {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 20px;
}
.expertise-card--featured .expertise-num {
  color: rgba(255,255,255,0.6);
}
.expertise-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
}
.expertise-card--featured .expertise-title {
  color: var(--white);
}
.expertise-desc {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.75;
  margin: 0 0 24px;
  flex: 1;
}
.expertise-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity var(--transition);
}
.expertise-link:hover { opacity: 0.7; }

@media (max-width: 1024px) {
  .expertise-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .expertise-row { grid-template-columns: 1fr; }
}

/* =============================================
   CATALOGUE — PAGE PRODUITS
   ============================================= */
.catalogue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.cat-btn {
  padding: 10px 24px;
  border: 1.5px solid #d0d8e0;
  border-radius: 30px;
  background: var(--white);
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-text);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.product-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(74,109,140,0.13);
  transform: translateY(-5px);
}
.card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(74,109,140,0.15);
}
.product-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grey-bg);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 16px 16px 0;
  border-radius: 4px;
  width: fit-content;
}
.product-badge.serie-b { background: #e8f0f7; }
.product-badge.premium { background: var(--blue); color: var(--white); }
.product-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-top: 12px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}
.product-desc {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.75;
  margin: 0 0 8px;
  /* 3 lignes exactes */
  min-height: calc(1.75em * 3);
  max-height: calc(1.75em * 3);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-desc.expanded {
  max-height: none;
  -webkit-line-clamp: unset;
  display: block;
}
.product-desc-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  margin: 0 0 16px;
  text-decoration: underline;
}
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
  padding: 16px 0;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}
.product-specs li span:first-child {
  color: var(--grey-text);
}
.product-specs li span:last-child {
  font-weight: 600;
  color: var(--dark);
}
.product-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 0;
}
.price-label {
  font-size: 12px;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-amount {
  font-family: 'Noto Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
}
.price-note {
  font-size: 11px;
  color: #aab0bb;
}
.catalogue-note {
  background: var(--grey-bg);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.catalogue-note p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
@media (max-width: 1024px) {
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .catalogue-grid { grid-template-columns: 1fr; }
  .catalogue-note { flex-direction: column; }
}

/* =============================================
   BANDEAU COOKIE RGPD
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(14, 30, 54, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 16px 24px;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
}
.cookie-text strong {
  color: #fff;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept {
  background: var(--gold);
  color: var(--dark);
}
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
