/* ===== VARIABLES & RESET ===== */
:root {
    --primary-color: #ea0071;
    --primary-dark: #c5005f;
    --primary-light: #ff3a8d;
    --secondary-color: #333;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

ul {
    list-style: none;
}

.site-header {
    width: 100%;
}

.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    color: #222;
    font-weight: 500;
    text-decoration: none;
}

.nav-cta {
    background-color: #e6007e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
}

.services-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 998;
    transition: all 0.3s ease;
    width: 100%;
}

/* Quand elle doit se coller tout en haut */
.services-bar.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0; /* Un peu plus compacte au scroll */
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.services-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.services-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.services-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.services-menu a:hover {
    color: #e6007e;
}

.burger-wrapper {
  position: relative;
  display: inline-block;
}

.fa-bars {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Animation croix */
.fa-bars.active {
  transform: rotate(90deg);
}

/* MENU */

.mobile-wrapper {
  position: relative;
}

.mobile-menu-container {
  position: relative;
}

.services-mobile-menu {
 position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: rgba(214, 52, 124, 0.75);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 8px;
  display: none;
  z-index: 999;
}

.services-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.services-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-mobile-menu li {
  margin-bottom: 12px;
}

.services-mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary, .cta-button {
    display: inline-block;
    padding: 2px 13px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
	transition: all 0.3s ease;
 	transform: translateY(0);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 0, 113, 0.2);
	transform: translateY(-4px);
  	box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
	transition: all 0.3s ease;
 	transform: translateY(0);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
	transform: translateY(-4px);
  	box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
}

.cta-button:hover, .cta-button.active {
    background-color: var(--primary-dark);
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    height: 80px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-highlight {
    color: var(--primary-color);
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #eee;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.6rem;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-services {
  display: none;
}
/* ===== HERO SECTION ===== */
.hero-section {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
        ),
        url("../images/enseigne_pp.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 50px 0 60px;
    position: relative;
}

.hero-section .highlight {
    color: #ffd6e8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-content {
  animation: heroFade 1.2s ease-out;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 80px 0;
  text-align: center;
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    background: linear-gradient(135deg, #e6007e, #ff5fa2);
    color: #ffffff;

    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;

    border-radius: 6px;
    margin-bottom: 30px;
}



.section-subtitle {
    text-align: center;
    color: var(--text-light);
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
	transition: all 0.4s ease;
}

.service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.service-link:hover {
    gap: 12px;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-us-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-us-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-us-item {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-us-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #222;
}

.why-us-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== REALISATIONS ===== */
.featured-realisations {
    background: var(--light-bg);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.realisation-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
	transition: transform 0.5s ease;
}

.realisation-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.realisation-item:hover img {
  transform: scale(1.05);
}

.realisation-info {
    padding: 25px;
}

.realisation-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== ASSURANCE SECTION ===== */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.assurance-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.assurance-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.assurance-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.assurance-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== PAGE HEADERS ===== */
.page-header, .devis-header, .boutique-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

/* ===== WEB SERVICES TABS ===== */
.services-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-button {
    padding: 10px 20px;
    background: var(--light-bg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-button.active, .tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 10px;
    font-size: 0.95rem;
}


.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

/* ===== BOUTIQUE PAGE ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 30px;
}

/* Boutique Process */
.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.how-it-works .step {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-price {
    margin: 10px 0 15px;
    font-weight: 600;
}

.product-price span {
    color: var(--primary-color);
}

/* Panier */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ===== À PROPOS PAGE ===== */
/* Histoire */
.histoire-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.histoire-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.histoire-timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

/* Équipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membre-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.membre-card:hover {
    transform: translateY(-8px);
}

.membre-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.membre-info {
    padding: 25px;
}

.membre-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Valeurs */
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.valeur-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.valeur-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.certification-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.certification-item img {
    max-height: 70px;
    margin-bottom: 10px;
}

/* ===== CONTACT PAGE ===== */
/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-link-btn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Form & Map */
.form-map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.contact-form-container {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    margin-top: 30px;
}

.map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 280px;
    background: #ddd;
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.access-info {
    padding: 25px;
}

.access-info ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.access-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* RDV Section */
.rdv-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
}

.rdv-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
	
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== DEVIS FORM ===== */
.devis-steps {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.step {
    padding: 10px 20px;
    border-bottom: 3px solid var(--border-color);
    color: var(--text-light);
    position: relative;
}

.step.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.devis-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-option input {
    display: none;
}

.service-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-option input:checked + label {
    border-color: var(--primary-color);
    background: rgba(234, 0, 113, 0.05);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Checkbox */
.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.form-group.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-group.checkbox input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.form-group.checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-group.checkbox input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

.form-group.checkbox label {
    cursor: pointer;
}

.form-group.checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 0, 113, 0.25);
}

/* Success Message */
.form-success {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

/* ===== RÉALISATIONS PAGE ===== */
/* Filtres */
.filtres {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filtre-btn {
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filtre-btn.active,
.filtre-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Galerie */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Projet Card */
.projet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.projet-card:hover {
    transform: translateY(-8px);
}

.projet-image {
    position: relative;
    overflow: hidden;
}

.projet-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.projet-card:hover img {
    transform: scale(1.08);
}

.projet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projet-card:hover .projet-overlay {
    opacity: 1;
}

.projet-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.projet-info {
    padding: 25px;
}

.projet-categorie {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.projet-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.projet-details i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Pagination */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
}

.page-btn.active,
.page-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Témoignages */
.temoignages-slider {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.temoignage {
    display: none;
}

.temoignage.active {
    display: block;
}

.temoignage-content {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.temoignage-content p {
    font-style: italic;
}

.temoignage-auteur {
    margin-top: 20px;
}

.temoignage-auteur span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.slider-prev,
.slider-next {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.slider-dots .dot.active {
    background: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev {
    left: -50px;
}

.lightbox-next {
    right: -50px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    max-width: 500px;
    margin: 80px auto;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #111;
    color: #bbb;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col a {
    color: #bbb;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}


/* ===== PAGES SERVICES SPÉCIFIQUES ===== */

/* ===== PAGE SIGNALÉTIQUE & ENSEIGNES ===== */
.signaletique-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.signaletique-content {
    padding: 80px 0;
}

/* Types de signalétique */
.signaletique-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.type-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
}

.type-image {
    height: 220px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.type-card:hover .type-image img {
    transform: scale(1.05);
}

.type-info {
    padding: 25px;
}

.type-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.type-features {
    margin-top: 15px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.type-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Matériaux */
.materiaux-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.materiaux-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}


.materiau-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}


.materiau-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}


.materiau-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}


.materiau-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .materiaux-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .materiaux-grid {
        grid-template-columns: 1fr;
    }
}

/* Processus signalétique */
.processus-signaletique {
    padding: 80px 0;
}

.processus-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.processus-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    z-index: 1;
}

.processus-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step-indicator {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===== PAGE MARQUAGE VÉHICULE ===== */
.marquage-header {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.marquage-content {
    padding: 80px 0;
}

/* Types de véhicules */
.vehicules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicule-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.vehicule-card:hover {
    transform: translateY(-8px);
}

.vehicule-icon {
    font-size: 3rem;
    color: #e6007e;
    margin: 25px 0 15px;
}

.vehicule-card h3 {
    color: #e6007e;
    margin-bottom: 10px;
}

.vehicule-features {
    padding: 0 20px 25px;
}

.vehicule-features li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

/* Options de marquage */
.options-marquage {
    padding: 80px 0;
    background: var(--light-bg);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card:hover {
    border-color: #1a2980;
    transform: translateY(-5px);
}

.option-card .option-icon {
    font-size: 2.8rem;
    color: #e6007e;
    margin-bottom: 20px;
}

.option-card h3 {
    color: #e6007e;
    margin-bottom: 15px;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2980;
    margin: 15px 0;
}

/* Galerie véhicules */
.galerie-vehicules {
    padding: 80px 0;
}

.galerie-grid-vehicules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vehicule-galerie-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.vehicule-galerie-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicule-galerie-item:hover img {
    transform: scale(1.08);
}

.vehicule-galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 128, 0.85);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vehicule-galerie-item:hover .vehicule-galerie-overlay {
    transform: translateY(0);
}

/* ===== PAGE TEXTILE PERSONNALISÉ ===== */
.textile-header {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.textile-content {
    padding: 80px 0;
}

/* Produits textile */
.textile-produits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.textile-produit {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.textile-produit:hover {
    transform: translateY(-8px);
}

.textile-produit-image {
    height: 220px;
    overflow: hidden;
}

.textile-produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.textile-produit:hover .textile-produit-image img {
    transform: scale(1.05);
}

.textile-produit-info {
    padding: 25px;
}

.textile-produit-info h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.textile-produit-specs {
    margin: 15px 0;
}

.textile-produit-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.textile-produit-specs span:first-child {
    color: var(--text-light);
}

.textile-produit-specs span:last-child {
    font-weight: 500;
}

/* Techniques d'impression */
.techniques-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.technique-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.technique-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.technique-card h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.technique-card ul {
    text-align: left;
    margin-top: 20px;
}

.technique-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.technique-card ul li i {
    color: #ff6b6b;
}

/* Calculatrice textile */
.calculatrice-textile {
    padding: 80px 0;
}

.calculatrice-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.calculatrice-form {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.calculatrice-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.calculatrice-resultat {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.prix-estime {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 15px 0;
}

/* ===== PAGE CRÉATION DE SITE WEB ===== */
.webdev-header {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.webdev-content {
    padding: 80px 0;
}

/* Packages web */
.packages-web {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    border: 2px solid #2d3436;
}

.package-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    color: #2d3436;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin: 30px 0;
}

.package-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-features li i {
    color: var(--primary-color);
}

/* Technologies */
.technologies-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tech-item {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.tech-item h4 {
    font-size: 0.9rem;
    color: #2d3436;
}

/* Processus web */
.processus-web {
    padding: 80px 0;
}

.processus-web-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.processus-web-step {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.processus-web-step::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #2d3436;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.processus-web-step:last-child::before {
    display: none;
}

.step-web-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2d3436);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

/* Référencement */
.referencement-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.seo-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-feature h3 {
    color: #2d3436;
    margin-bottom: 15px;
}

/* Formulaire projet web */
.formulaire-projet {
    padding: 80px 0;
}

.formulaire-container {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.formulaire-projet .form-group {
    margin-bottom: 25px;
}

.formulaire-projet textarea {
    min-height: 150px;
    resize: vertical;
}

.budget-range {
    margin: 30px 0;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== RESPONSIVE POUR PAGES SERVICES ===== */
@media (max-width: 992px) {
    .processus-steps::before {
        left: 20px;
    }
    
    .step-indicator {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .processus-web-step::before {
        display: none;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 766px) {
    .signaletique-types,
    .vehicules-grid,
    .textile-produits,
    .packages-web,
    .processus-web-steps {
        grid-template-columns: 1fr;
    }
    
    .processus-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-indicator {
        align-self: center;
    }
    
    .calculatrice-container {
        padding: 25px;
    }
    
    .formulaire-container {
        padding: 30px;
    }
    
    .vehicule-galerie-overlay {
        transform: translateY(0);
        position: relative;
        background: #1a2980;
    }
}

/* ===== SERVICE INTRO ===== */
.service-intro {
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===== TYPES D’ENSEIGNES ===== */
.enseignes-types {
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-content {
    padding: 25px;
    text-align: center;
}

.type-content ul {
    margin: 15px 0;
    padding: 0;
}

.type-content ul li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* ===== AUTRES PRODUITS ===== */
.autres-produits {
    padding: 80px 0;
    background: #f8f9fa;
}

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.produit-item {
    text-align: center;
}

.produit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ===== CTA ===== */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.solution-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ===== GUIDE DES TAILLES ===== */

.tailles-section {
    text-align: center;
}

.tailles-table {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.tailles-table table {
    border-collapse: collapse;
    min-width: 70%;
    max-width: 900px;
    background: #fff;
}

.tailles-table th,
.tailles-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.tailles-table th {
    background-color: #f7f7f7;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.tailles-table tr:last-child td {
    border-bottom: none;
}

.tailles-info {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 0.95rem;
    color: #555;
}

.garanties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.garanties-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* =========================
   MATÉRIAUX – SECTION
========================= */

.materiaux-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.materiaux-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* =========================
   TABS – BOUTONS
========================= */

.materiaux-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.materiaux-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.materiaux-tabs .tab-button {
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.materiaux-tabs .tab-button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.materiaux-tabs .tab-button.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* =========================
   CONTENU DES TABS
========================= */

.materiaux-tabs .tab-content {
    position: relative;
}

.materiaux-tabs .tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.materiaux-tabs .tab-pane.active {
    display: block;
}

/* =========================
   BLOC INFO MATÉRIAU
========================= */

.materiau-info {
    background: var(--white);
    padding: 45px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.materiau-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.materiau-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-color);
}

.materiau-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.materiau-info ul li {
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
}

.materiau-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .materiau-info {
        padding: 30px 25px;
    }

    .materiaux-tabs .tab-buttons {
        gap: 10px;
    }

    .materiaux-tabs .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* =========================
   MARQUAGE – SECTION
========================= */

.marquage-types {
    padding: 80px 0;
    background: var(--light-bg);
}

.marquage-types .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* =========================
   TABS – BOUTONS
========================= */

.types-tabs {
    max-width: 1100px;
    margin: 0 auto;
}

.types-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.types-tabs .tab-button {
    padding: 12px 26px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.types-tabs .tab-button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.types-tabs .tab-button.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =========================
   CONTENU DES TABS
========================= */

.types-tabs .tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.types-tabs .tab-pane.active {
    display: block;
}

/* =========================
   LAYOUT INTERNE
========================= */

.tab-content-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

/* =========================
   TEXTE
========================= */

.tab-text h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.tab-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.tab-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    gap: 10px;
}

.tab-text ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
}

.tab-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* =========================
   CTA
========================= */

.tab-cta {
    margin-top: 30px;
}

.tab-cta p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* =========================
   IMAGE
========================= */

.tab-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .tab-content-inner {
        grid-template-columns: 1fr;
        padding: 35px 30px;
    }

    .tab-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .types-tabs .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.communication-gallery {
    padding: 90px 0;
    background: #fafafa;
}

.gallery-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
}

.gallery-grid::-webkit-scrollbar {
    height: 6px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #e6007e;
    border-radius: 10px;
}

/* ITEM */
.gallery-item {
    position: relative;
    min-width: 280px;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.08);
}
.shop-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    text-align: center;
}

.shop-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.shop-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

/* CARD */
.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.2);
}

/* ================================
   PERSONNALISATION RAPIDE
================================ */

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.custom-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-left: 50px;
	margin-right: 50px;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.custom-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.custom-card h3 {
    font-size: 1.2rem;
    margin: 20px 20px 5px;
}

.custom-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 20px 15px;
}

.custom-card ul {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.custom-card ul li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.custom-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.custom-card .btn-secondary {
    margin: 0 20px 20px;
    display: inline-block;
}

/* INFO BOX */
.info-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

/* REDIRECTION SERVICES */
.redirect-box {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f6f6f6, #ffffff);
    border-radius: 20px;
}

.redirect-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}


.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 20px;
}
/* CONFIGURATEUR MODAL */
.configurator-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.configurator-modal.active {
  display: flex;
}

.configurator-box {
  background: #fff;
  width: 90%;
  max-width: 520px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.configurator-form .form-group {
  margin-bottom: 18px;
}

.configurator-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.configurator-form input,
.configurator-form select,
.configurator-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.full-width {
  width: 100%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 6px;
}

/* BOUTON X */
.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #000;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
}

.lightbox-close:hover {
  background: #000;
  color: #fff;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.6);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}


.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 1005;
}


.projet-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 🔥 même ratio partout */
  overflow: hidden;
}

.projet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-video {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-map-container {
    width: 100%;
    margin-top: 40px;
}

html, body {
    overflow-x: hidden;
}

.services-menu {
    flex-wrap: wrap;
}

.section-header {
    flex-wrap: wrap;
    gap: 40px;
}

.configurator-box {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.configurator-modal.active .configurator-box {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 768px) {
    .section-header {
        gap: 20px;
        flex-direction: column;
    }
}