
    :root {
      --blue: #2A5CAA;
      --green: #10b981;
      --dark: #0f172a;
      --light: #f5f5f5;
      --cta: #10b981;
    }

    html, body { overflow-x: hidden; width: 100%; }
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
    }

    header {
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      align-items: center;
      padding: 0 20px;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      height: 60px;
      width: 60px;
      border-radius: 10px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text .brand-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #1a1a1a;
      line-height: 1.2;
    }

    .logo-text .brand-subtitle {
      font-size: 10px;
      color: #10b981;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 600;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav a {
      margin-left: 25px;
      text-decoration: none;
      color: #4b5563;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #10b981;
    }

    .social-link {
      margin-left: 15px;
      text-decoration: none;
      color: #9ca3af;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s;
    }

    .social-link:hover {
      color: #10b981;
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .btn {
      background: var(--cta);
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn:hover {
      background: #059669;
      transform: translateY(-2px);
    }

    .cta-center {
      text-align: center;
      margin-top: 40px;
    }

    .btn-large {
      background: #1e293b;
      color: white;
      padding: 16px 40px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
    }

    .btn-large:hover {
      background: #0f172a;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    }

    .cta-subtext {
      margin-top: 12px;
      color: #6b7280;
      font-size: 14px;
    }

    /* HERO */
    .hero {
      background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('images/hero.jpg') center/cover no-repeat;
      color: #fff;
      padding: 120px 0;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .hero-content {
      padding-top: 20px;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 52px;
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .hero h1 .highlight {
      color: #4fd1c5;
    }

    .hero .subtitle {
      font-size: 20px;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.25);
    }

    .hero-card {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 16px;
      color: #1a1a1a;
    }

    .hero-card h3 {
      font-size: 14px;
      color: #10b981;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .hero-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .hero-line svg {
      width: 18px;
      height: 18px;
      color: #10b981;
      flex-shrink: 0;
    }

    .hero-line b {
      font-weight: 600;
    }

    .hero-line small {
      color: #6b7280;
      font-size: 13px;
      display: block;
    }

    .hero-stars {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #e5e7eb;
      color: #fbbf24;
      font-weight: 600;
    }

    /* SERVICES */
    section { padding: 40px 0; }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-tag {
      font-size: 12px;
      color: #10b981;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    .section-description {
      color: #6b7280;
      font-size: 16px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      margin-top: 20px;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,.12);
    }

    .card-image {
      position: relative;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(16, 185, 129, 0.95);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .card-content {
      padding: 25px;
    }

    .card h3 {
      font-family: 'Poppins', sans-serif;
      margin-bottom: 12px;
      font-size: 20px;
      color: #1a1a1a;
    }

    .card p {
      color: #6b7280;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .price {
      color: #10b981;
      font-weight: 700;
      font-size: 18px;
      margin-top: 15px;
    }

    .price small {
      color: #9ca3af;
      font-size: 13px;
      font-weight: 500;
    }

    .card-list {
      list-style: none;
      padding: 0;
      margin: 15px 0;
    }

    .card-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 14px;
      color: #4b5563;
    }

    .card-list li:before {
      content: "✓";
      color: #10b981;
      font-weight: 700;
      font-size: 16px;
    }

    /* TARIFS */
    .tarifs-premium {
      background: #f9fafb;
    }

    .tarifs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .price-card {
      background: #E5EFE9;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
    }

    .price-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,.1);
    }

    .price-card.dark {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      color: white;
    }

    .badge-reco {
      position: absolute;
      top: -12px;
      right: 30px;
      background: #10b981;
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .price-card h3 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #10b981;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .price-card.dark h3 {
      color: #10b981;
    }

    .price-card .price {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 5px;
      color: #1a1a1a;
    }

    .price-card.dark .price {
      color: white;
    }

    .price-card .price small {
      font-size: 14px;
      color: #9ca3af;
      font-weight: 500;
      display: block;
      margin-top: 5px;
    }

    .price-list {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }

    .price-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 15px;
      color: #4b5563;
    }

    .price-card.dark .price-list li {
      color: rgba(255,255,255,0.9);
    }

    .price-list li:before {
      content: "✓";
      color: #10b981;
      font-weight: 700;
      font-size: 18px;
    }

    .price-card small:last-child {
      display: block;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #e5e7eb;
      color: #9ca3af;
      font-size: 14px;
    }

    .price-card.dark small:last-child {
      border-top-color: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.6);
    }

    /* CONTACT */
    .contact-modern {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      padding: 45px 0;
      color: #fff;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .contact-left h2 {
      font-size: 42px;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 15px;
      color: white;
    }

    .contact-left p {
      opacity: 0.8;
      margin-bottom: 35px;
      font-size: 16px;
    }

    .form-dark label {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.7);
      font-weight: 600;
    }

    .form-dark input,
    .form-dark select,
    .form-dark textarea {
      width: 100%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 14px 18px;
      border-radius: 10px;
      color: #fff;
      margin-bottom: 20px;
      font-size: 15px;
      transition: all 0.3s;
    }

    .form-dark select option {
      background: #1e293b;
      color: #fff;
    }

    .form-dark input:focus,
    .form-dark select:focus,
    .form-dark textarea:focus {
      outline: none;
      border-color: #10b981;
      background: rgba(255,255,255,0.12);
    }

    .form-dark input::placeholder,
    .form-dark textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .form-dark textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-dark button {
      width: 100%;
      margin-top: 10px;
      padding: 16px;
      font-size: 16px;
    }

    .info-card {
      background: #020617;
      border-radius: 20px;
      padding: 40px;
    }

    .info-card h3 {
      margin-bottom: 25px;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #10b981;
      font-weight: 700;
    }

    .info-line {
      margin-bottom: 25px;
    }

    .info-line b {
      display: block;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .info-line span {
      font-size: 18px;
      color: #fff;
    }

    .info-line span a {
      color: #fff;
      text-decoration: none;
    }

    /* TRUST */
    .trust-dark {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: white;
      padding: 40px 0;
    }

    .trust-dark h2 {
      color: white;
    }

    .trust-dark .section-tag {
      color: #10b981;
    }

    .trust-grid-premium {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .trust-item {
      display: flex;
      align-items: start;
      gap: 15px;
      margin-bottom: 25px;
      font-size: 16px;
      color: #10b981;
    }

    .trust-item svg {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .trust-item div {
      flex: 1;
    }

    .trust-item b {
      display: block;
      font-family: 'Poppins', sans-serif;
      color: white;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .trust-item p {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
      line-height: 1.6;
    }

    .avis-box {
      background: #3F475B;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,.06);
    }

    .avis-box h3 {
      font-size: 20px;
      margin-bottom: 25px;
      font-family: 'Poppins', sans-serif;
    }

    .avis {
      background: #f9fafb;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .avis b {
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
    }

    .avis p {
      color: black;
      font-size: 14px;
      line-height: 1.6;
    }

    /* ABOUT */
    .about-premium {
      background: white;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-tag {
      font-size: 12px;
      color: #10b981;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .about-title {
      font-size: 38px;
      line-height: 1.3;
      margin-bottom: 25px;
    }
    .about-title1 {
      color: white
      font-size: 38px;
      line-height: 1.3;
      margin-bottom: 25px;
    }

    .about-text {
      color: #6b7280;
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-bottom: 35px;
    }

    .about-stat {
      text-align: center;
      padding: 20px;
      background: #E5EFE9;
      border-radius: 12px;
    }

    .about-stat b {
      display: block;
      font-size: 36px;
      color: #10b981;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 5px;
    }

    .about-stat small {
      color: #6b7280;
      font-size: 13px;
    }

    .about-card {
      background: #E5EFE9;
      border-left: 4px solid #10b981;
      padding: 20px;
      border-radius: 8px;
      color: #166534;
      font-weight: 600;
      border-right: 4px solid #10b981;
    }

    .about-img {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }

    .about-img img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .about-badge {
      position: absolute;
      bottom: 25px;
      left: 25px;
      background: #10b981;
      color: white;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 14px;
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      padding: 40px 20px;
      text-align: center;
      color: white;
    }

    .cta-band h2 {
      color: white;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .cta-band .btn {
      background: #10b981;
      color: white;
    }

    .cta-band .btn:hover {
      background: #059669;
    }
    /* ZONES D'INTERVENTION - NOUVEAU */
    .zones-intervention {
      padding: 80px 0;
      background: #f9fafb;
    }

    .zones-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 40px;
    }

    .zone-item {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      text-align: center;
      transition: all 0.3s;
    }

    .zone-item:hover {
      border-color: #10b981;
      box-shadow: 0 4px 20px rgba(16,185,129,0.1);
      transform: translateY(-3px);
    }

    .zone-item h4 {
      color: #1a1a1a;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .zone-item p {
      color: #6b7280;
      font-size: 13px;
    }

    /* FAQ SECTION - NOUVEAU */
    .faq-section {
      padding: 80px 0;
      background: #fff;
    }

    .faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .faq-item {
      background: #E5EFE9;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }

    .faq-question {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #1a1a1a;
      transition: all 0.3s;
    }

    .faq-question:hover {
      background: #fff;
    }

    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: #4b5563;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 0 25px 20px;
      max-height: 500px;
    }

    .faq-toggle {
      font-size: 24px;
      color: #10b981;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }


    /* FOOTER */
    .footer-modern {
      background: #020617;
      padding: 40px 0 20px;
      color: #9ca3af;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 10px;
    }

    .footer-modern h4 {
      color: white;
      font-size: 16px;
      margin-bottom: 20px;
      font-family: 'Poppins', sans-serif;
    }

    .footer-modern p {
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-modern a {
      color: #9ca3af;
      text-decoration: none;
      display: block;
      margin-bottom: 12px;
      transition: color 0.3s;
    }

    .footer-modern a:hover {
      color: #10b981;
    }

    .footer-modern .social-icons {
      display: flex;
      gap: 15px;
      align-items: center;
      margin-top: 10px;
    }

    .footer-modern .social-icons a {
      margin: 0;
      display: inline-block;
    }

    .footer-modern .social-icons img {
      width: 32px;
      height: 32px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .footer-modern .social-icons img:hover {
      transform: scale(1.1);
      opacity: 0.8;
    }

    /* RESPONSIVE */
    /* GALERIE RÉALISATIONS */

    .realisations {
      background: #1e293b;
    }

    .realisations h2 {
      color: white;
    }

    .realisations .section-description {
      color: rgba(255, 255, 255, 0.8);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,.15);
    }

    .gallery-item img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
    }

    .gallery-caption {
      padding: 15px;
      background: white;
      text-align: center;
    }

    .gallery-caption p {
      color: #6b7280;
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      position: relative;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      color: #1a1a1a;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 24px;
      font-weight: 700;
      transition: all 0.3s;
      z-index: 10001;
    }

    .lightbox-close:hover {
      background: #10b981;
      color: white;
      transform: rotate(90deg);
    }

    .lightbox-caption {
      display: none;
    }

    /* MODAL CGV */
    .cgv-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    .cgv-modal.active {
      display: flex;
    }

    .cgv-content {
      background: white;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      border-radius: 16px;
      position: relative;
      overflow-y: auto;
      padding: 50px 60px;
      margin: auto;
    }

    .cgv-close {
      position: fixed;
      top: 20px;
      right: 20px;
      background: white;
      color: #1a1a1a;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 28px;
      font-weight: 700;
      transition: all 0.3s;
      z-index: 10001;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .cgv-close:hover {
      background: #10b981;
      color: white;
      transform: rotate(90deg);
    }

    .cgv-content h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      color: #1a1a1a;
      margin-bottom: 10px;
      padding-bottom: 20px;
      border-bottom: 3px solid #10b981;
    }

    .cgv-content h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      color: #1e293b;
      margin-top: 35px;
      margin-bottom: 15px;
      padding-top: 20px;
    }

    .cgv-content h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      color: #10b981;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .cgv-content p {
      color: #4b5563;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 15px;
      text-align: justify;
    }

    .cgv-content strong {
      color: #1a1a1a;
      font-weight: 600;
    }

    .cgv-header {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: white;
      padding: 30px;
      margin: -50px -60px 40px -60px;
      border-radius: 16px 16px 0 0;
    }

    .cgv-header h1 {
      color: white;
      border: none;
      padding: 0;
      margin: 0;
    }

    .cgv-header p {
      color: rgba(255,255,255,0.8);
      margin-top: 10px;
      font-size: 14px;
    }

    @media(max-width:768px) {
      .cgv-content {
        padding: 30px 25px;
      }
      .cgv-header {
        margin: -30px -25px 30px -25px;
        padding: 20px;
      }
      .cgv-content h1 {
        font-size: 28px;
      }
      .cgv-content h2 {
        font-size: 20px;
      }
    }

    @media(max-width:768px){
      .hero h1 { 
        font-size: 32px;
        line-height: 1.3;
      }
      .hero .container {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .hero {
        padding: 60px 0;
      }
      .hero-content {
        padding-top: 0;
      }
      .hero .subtitle {
        font-size: 16px;
      }
      .hero-card {
        padding: 20px;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-actions .btn {
        text-align: center;
        justify-content: center;
      }
      header nav { display:none; }
      header {
        position: relative;
      }
      .logo img {
        width: 40px;
        height: 40px;
      }
      .brand-name {
        font-size: 16px;
      }
      .brand-subtitle {
        font-size: 11px;
      }
      .contact-wrap,
      .trust-grid-premium,
      .about-grid,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .services-grid,
      .tarifs-grid {
        grid-template-columns: 1fr;
      }
      section {
        padding: 40px 0;
      }
      .container {
        padding: 0 15px;
      }
      h2 {
        font-size: 28px;
      }
      .section-description {
        font-size: 15px;
      }
      .cta-band h2 {
        font-size: 20px;
        line-height: 1.4;
      }
      .btn-large {
        padding: 14px 30px;
        font-size: 14px;
      }
      .contact-left h2 {
        font-size: 32px;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .price-card {
        padding: 25px 20px;
      }
      .info-card {
        padding: 25px;
      }
    }
    
    @media(max-width:1024px){
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media(max-width:480px){
      .hero h1 {
        font-size: 26px;
      }
      h2 {
        font-size: 24px;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .tarifs-grid {
        grid-template-columns: 1fr;
      }
      .hero-actions .btn,
      .btn-large {
        padding: 12px 20px;
        font-size: 13px;
      }
      .hero-line {
        font-size: 14px;
      }
      .hero-line svg {
        width: 16px;
        height: 16px;
      }
      .hero-line small {
        font-size: 12px;
      }
      .hero-card h3 {
        font-size: 13px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-modern .social-icons {
        justify-content: center;
      }
    }


    /* ===== FACEBOOK HOVER LABEL ===== */
    .fb-social-link {
      position: relative;
      display: inline-flex;
    }

    .fb-social-link::after {
      content: "Multi Services Rénovation";
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: #1877f2;
      color: white;
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
      padding: 5px 10px;
      border-radius: 6px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease;
      font-family: 'Open Sans', sans-serif;
    }

    .fb-social-link::before {
      content: "";
      position: absolute;
      bottom: calc(100% + 2px);
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: #1877f2;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .fb-social-link:hover::after,
    .fb-social-link:hover::before {
      opacity: 1;
    }

    /* ============================================
       MENU HAMBURGER & NAVIGATION MOBILE
       ============================================ */

    /* Bouton hamburger - caché sur desktop */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: none;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      cursor: pointer;
      padding: 8px;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .hamburger:hover {
      border-color: #10b981;
      background: #f0fdf4;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: #1a1a1a;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Overlay sombre */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1998;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .mobile-overlay.open {
      display: block;
      opacity: 1;
    }

    /* Panneau de menu mobile */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -320px;
      width: 300px;
      height: 100dvh;
      background: #fff;
      z-index: 1999;
      display: flex;
      flex-direction: column;
      padding: 0;
      box-shadow: -4px 0 30px rgba(0,0,0,0.15);
      transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }

    .mobile-menu.open {
      right: 0;
    }

    /* Bouton fermeture */
    .mobile-menu-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: #f3f4f6;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: #1a1a1a;
    }

    .mobile-menu-close:hover {
      background: #10b981;
      color: white;
    }

    /* Logo dans le menu */
    .mobile-menu-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 24px 20px 20px;
      border-bottom: 1px solid #f3f4f6;
      background: #f9fafb;
    }

    .mobile-menu-logo img {
      width: 50px;
      height: 50px;
      border-radius: 10px;
    }

    .mobile-menu-logo .brand-name {
      font-size: 16px !important;
      color: #1a1a1a !important;
    }

    /* Liens de navigation mobile */
    .mobile-nav {
      display: flex;
      flex-direction: column;
      padding: 12px 0;
      flex: 1;
    }

    .mobile-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      text-decoration: none;
      color: #374151;
      font-weight: 600;
      font-size: 16px;
      border-left: 3px solid transparent;
      transition: all 0.2s;
      font-family: 'Open Sans', sans-serif;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active-page {
      color: #10b981;
      background: #f0fdf4;
      border-left-color: #10b981;
    }

    /* CTA dans menu mobile */
    .mobile-menu-cta {
      padding: 20px;
      border-top: 1px solid #f3f4f6;
    }

    /* Réseaux sociaux dans menu mobile */
    .mobile-menu-social {
      padding: 16px 20px 24px;
      display: flex;
      gap: 16px;
      align-items: center;
      border-top: 1px solid #f3f4f6;
    }

    /* Lien actif dans nav desktop */
    nav a.active-page {
      color: #10b981 !important;
    }

    /* ============================================
       RESPONSIVE MOBILE - Corrections globales
       ============================================ */

    @media (max-width: 768px) {

      /* Afficher hamburger, cacher nav desktop */
      .hamburger { display: flex; }
      header nav { display: none !important; }
      .mobile-nav { display: flex !important; }
      .mobile-nav a { display: flex !important; }
      header { position: sticky; top: 0; z-index: 1000; }

      /* Fix conteneur général */
      .container { padding: 0 16px; }

      /* Fix footer */
      .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
      }

      .footer-modern .social-icons {
        justify-content: flex-start;
      }

      /* Fix footer liens */
      .footer-modern div a {
        display: block;
        margin-bottom: 8px;
      }

      /* Fix grille services */
      .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
      }

      /* Fix grille tarifs */
      .tarifs-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
      }

      /* Fix section trust */
      .trust-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 30px;
      }

      /* Fix about */
      .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
      }

      .about-img { display: none; }

      .about-premium .container {
        overflow: hidden;
        width: 100%;
      }

      .about-title {
        font-size: 26px !important;
      }

      .about-text {
        font-size: 15px !important;
      }

      .about-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
      }

      /* Fix contact */
      .contact-wrap {
        grid-template-columns: 1fr !important;
        gap: 30px;
      }

      /* Fix galerie */
      .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
      }

      /* Fix hero */
      .hero { padding: 50px 0 40px; }
      .hero .container { grid-template-columns: 1fr !important; }
      .hero h1 { font-size: 30px; }
      .hero-card { display: none; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }

      /* Bannière pages intérieures */
      div[style*="padding: 60px 0 40px"] h1,
      div[style*="padding:60px 0 40px"] h1 {
        font-size: 28px !important;
      }

      /* Fix sections */
      section { padding: 40px 0; }
      h2 { font-size: 26px; }

      /* Fix btn-large */
      .btn-large {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      /* Fix CTA band */
      .cta-band h2 { font-size: 20px; line-height: 1.4; }

      /* Fix price cards */
      .price-card { padding: 25px 20px; }

      /* Fix info card contact */
      .info-card { padding: 25px 20px; }

      /* Fix CGV */
      .cgv-info-grid { grid-template-columns: 1fr !important; }
      .cgv-card { padding: 22px 18px; }

      /* Fix FAQ */
      .faq-question { font-size: 15px; }

      /* Fix raccourcis accueil */
      div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
        grid-template-columns: 1fr 1fr !important;
      }

      /* Fix section SEO textuel */
      div[style*="grid-template-columns: repeat(auto-fit,minmax(280px,1fr))"] {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr !important; }
      .about-stats { grid-template-columns: repeat(3,1fr) !important; }
      .hero h1 { font-size: 26px; }
      h2 { font-size: 22px; }

      /* Raccourcis accueil en 1 colonne sur très petit écran */
      div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
        grid-template-columns: 1fr !important;
      }
    }

