/* ==========================================================================
   SERVICES PAGES CSS — Impact Pare-Brise
   Fichier dédié aux pages de service (Remplacement, Réparation, Vitres)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb-container {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #76ff03;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.breadcrumb .current {
    color: #76ff03;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. SERVICE HERO
   -------------------------------------------------------------------------- */
.service-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #1a237e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1.5rem 0 2rem;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-text {
    color: white;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(118, 255, 3, 0.15);
    border: 1px solid rgba(118, 255, 3, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #76ff03;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.service-hero h1 .highlight {
    color: #76ff03;
    position: relative;
}

.service-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.hero-feature-item i {
    color: #76ff03;
}

.service-hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #76ff03, #64dd17);
    color: #1a237e;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 255, 3, 0.3);
}

.service-hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(118, 255, 3, 0.4);
}

.service-hero-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-hero-cta .btn-secondary:hover {
    border-color: #76ff03;
    color: #76ff03;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   3. INTERVENTION TIMELINE (3 étapes)
   -------------------------------------------------------------------------- */
.intervention-timeline {
    padding: 6rem 0;
    background: #f8f9fa;
}

.intervention-timeline h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 1rem;
}

.intervention-timeline .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #76ff03, #1a237e);
    transform: translateX(-50%);
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-step:nth-child(odd) .step-image {
    grid-column: 1;
    grid-row: 1;
}

.timeline-step:nth-child(odd) .step-number-badge {
    grid-column: 2;
    grid-row: 1;
}

.timeline-step:nth-child(odd) .step-content {
    grid-column: 3;
    grid-row: 1;
}

.timeline-step:nth-child(even) .step-image {
    grid-column: 3;
    grid-row: 1;
}

.timeline-step:nth-child(even) .step-number-badge {
    grid-column: 2;
    grid-row: 1;
}

.timeline-step:nth-child(even) .step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.step-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.step-number-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. OFFER / FRANCHISE SECTION
   -------------------------------------------------------------------------- */
.offer-highlight {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    position: relative;
    overflow: hidden;
}

.offer-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(118, 255, 3, 0.08);
}

.offer-highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.offer-highlight-text {
    color: white;
}

.offer-highlight-text .offer-badge-inline {
    display: inline-block;
    background: #76ff03;
    color: #1a237e;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-highlight-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #76ff03;
}

.offer-highlight-text .offer-plus {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.offer-highlight-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-highlight-text h3 span {
    color: #76ff03;
}

.offer-highlight-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.offer-highlight-text .btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #76ff03, #64dd17);
    color: #1a237e;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 255, 3, 0.3);
}

.offer-highlight-text .btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(118, 255, 3, 0.4);
}

.offer-highlight-image {
    position: relative;
}

.offer-highlight-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   5. COMPARISON BOX (Réparable vs Remplacement)
   -------------------------------------------------------------------------- */
.compare-section {
    padding: 6rem 0;
    background: white;
}

.compare-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 1rem;
}

.compare-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.compare-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.compare-repairable,
.compare-replace {
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
}

.compare-repairable {
    border: 2px solid #76ff03;
}

.compare-replace {
    border: 2px solid #f44336;
}

.compare-repairable h3,
.compare-replace h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-repairable h3 {
    color: #2e7d32;
}

.compare-replace h3 {
    color: #c62828;
}

.compare-repairable ul,
.compare-replace ul {
    list-style: none;
    padding: 0;
}

.compare-repairable li,
.compare-replace li {
    padding: 0.5rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-repairable li::before {
    content: '✓';
    color: #76ff03;
    font-weight: 700;
}

.compare-replace li::before {
    content: '✗';
    color: #f44336;
    font-weight: 700;
}

.coin-rule {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff9c4, #fff59d);
    border: 2px solid #fdd835;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.coin-rule h4 {
    font-size: 1.3rem;
    color: #f57f17;
    margin-bottom: 0.5rem;
}

.coin-rule p {
    color: #333;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   6. RESIN STEPS (Injection de résine)
   -------------------------------------------------------------------------- */
.resin-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.resin-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 3rem;
}

.resin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.resin-images {
    display: flex;
    align-items: stretch;
}

.resin-images img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.resin-steps-list {
    counter-reset: step-counter;
}

.resin-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.resin-step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.resin-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.3rem;
}

.resin-step-content p {
    color: #666;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. URGENCY BLOCKS
   -------------------------------------------------------------------------- */
.urgency-section {
    padding: 6rem 0;
    background: white;
}

.urgency-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 3rem;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.urgency-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.urgency-card:hover {
    border-color: #76ff03;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.urgency-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.urgency-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.urgency-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   8. CROSS-LINKS NAVIGATION
   -------------------------------------------------------------------------- */
.service-crosslinks {
    padding: 6rem 0;
    background: #f8f9fa;
}

.service-crosslinks h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 3rem;
}

.crosslink-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.crosslink-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}

.crosslink-card:hover {
    border-color: #76ff03;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.crosslink-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.crosslink-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.crosslink-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.crosslink-card .btn-crosslink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #76ff03;
    font-weight: 600;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-section {
    padding: 6rem 0;
    background: white;
}

.faq-accordion-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a237e;
    margin: 0;
    padding-right: 1rem;
}

.faq-question .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a237e;
}

.faq-item.open .faq-question .faq-icon {
    background: #76ff03;
    color: #1a237e;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    padding-left: 0;
}

/* --------------------------------------------------------------------------
   10. STICKY CTA MOBILE
   -------------------------------------------------------------------------- */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a237e;
    padding: 0.8rem 1rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-mobile-cta .sticky-btn-primary {
    background: linear-gradient(135deg, #76ff03, #64dd17);
    color: #1a237e;
}

.sticky-mobile-cta .sticky-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   11. PEUGEOT CAROUSEL (Page C)
   -------------------------------------------------------------------------- */
.peugeot-carousel-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.peugeot-carousel-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 0.5rem;
}

.peugeot-carousel-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.peugeot-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.peugeot-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.peugeot-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.peugeot-slide-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.peugeot-slide-text .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.peugeot-slide-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1rem;
}

.peugeot-slide-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.peugeot-slide-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.peugeot-slide-highlights .highlight-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
}

.peugeot-slide-highlights .highlight-chip i {
    color: #76ff03;
}

.peugeot-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.peugeot-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.peugeot-carousel-btn:hover {
    background: #76ff03;
    color: #1a237e;
}

.peugeot-carousel-btn-left {
    left: 1rem;
}

.peugeot-carousel-btn-right {
    right: 1rem;
}

.peugeot-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    background: white;
}

.peugeot-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.peugeot-carousel-dot.active {
    background: #76ff03;
    transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   12. VITRAGE TYPES GRID (Page C)
   -------------------------------------------------------------------------- */
.vitrage-types-section {
    padding: 4rem 0;
}

.vitrage-types-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    text-align: center;
    margin-bottom: 2rem;
}

.vitrage-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vitrage-type-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vitrage-type-card:hover {
    border-color: #76ff03;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vitrage-type-card i {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.vitrage-type-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.vitrage-type-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. STEPS POST-EFFRACTION (Page C)
   -------------------------------------------------------------------------- */
.effraction-steps-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
}

.effraction-steps-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.effraction-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.effraction-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.effraction-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.effraction-step .step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #76ff03;
    color: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.effraction-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.effraction-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. ASPIRATION SECTION (Page C)
   -------------------------------------------------------------------------- */
.aspiration-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.aspiration-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 1rem;
}

.aspiration-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.aspiration-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.aspiration-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.aspiration-features {
    display: grid;
    gap: 1.5rem;
}

.aspiration-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.aspiration-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.aspiration-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.3rem;
}

.aspiration-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.norme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   15. RESIN PROCESS SECTION (NEW)
   -------------------------------------------------------------------------- */
.resin-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.resin-process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(118, 255, 3, 0.05);
    z-index: 0;
}

.resin-process-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.resin-process-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.resin-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.resin-process-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.resin-process-image:hover {
    transform: translateY(-10px);
}

.resin-process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.resin-process-image:hover img {
    transform: scale(1.05);
}

.resin-process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resin-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.resin-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #76ff03, #1a237e);
    transition: width 0.3s ease;
}

.resin-process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #76ff03;
}

.resin-process-step:hover::before {
    width: 6px;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.resin-process-step:hover .step-number {
    background: linear-gradient(135deg, #76ff03, #64dd17);
    color: #1a237e;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(118, 255, 3, 0.4);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.resin-process-step:hover .step-content h3 {
    color: #76ff03;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation d'apparition */
.resin-process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.resin-process-step:nth-child(1) { animation-delay: 0.1s; }
.resin-process-step:nth-child(2) { animation-delay: 0.2s; }
.resin-process-step:nth-child(3) { animation-delay: 0.3s; }
.resin-process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE (UPDATED)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .timeline-step .step-image {
        display: none;
    }
    
    .timeline-step:nth-child(odd) .step-number-badge,
    .timeline-step:nth-child(even) .step-number-badge {
        grid-column: 1;
        grid-row: 1;
    }
    
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
    
    .offer-highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resin-grid {
        grid-template-columns: 1fr;
    }
    
    .vitrage-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .effraction-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aspiration-content {
        grid-template-columns: 1fr;
    }
    
    .peugeot-slide {
        grid-template-columns: 1fr;
    }
    
    .peugeot-slide-image {
        display: none;
    }
    
    .resin-process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resin-process-image {
        order: 1;
    }
    
    .resin-process-steps {
        order: 2;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 3.5rem 0 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero .subtitle {
        font-size: 0.95rem;
    }
    
    .compare-box {
        grid-template-columns: 1fr;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .crosslink-cards {
        grid-template-columns: 1fr;
    }
    
    .vitrage-types-grid {
        grid-template-columns: 1fr;
    }
    
    .effraction-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features-list {
        flex-direction: column;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .sticky-mobile-cta {
        display: grid;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .offer-highlight-text h2 {
        font-size: 2rem;
    }
    
    .offer-highlight-text h3 {
        font-size: 1.5rem;
    }
}