/* LIVRAISON PAGE CSS */

/* === HERO LIVRAISON === */
.hero-livraison {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    margin-top: 80px;
    padding: 5rem 3% 4rem;
}

.hero-livraison-content {
    max-width: 900px;
    text-align: center;
}

.hero-livraison-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 10px 28px;
    border: 1px solid var(--color-accent);
    margin-bottom: 32px;
}

.hero-livraison-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 10vw, 80px);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 24px;
    color: #000;
}

.hero-livraison-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.7;
    color: #666;
}

/* === SECTIONS LIVRAISON === */
.livraison-section {
    padding: 80px 3%;
    background: #fff;
}

.livraison-section:nth-child(even) {
    background: #f9f9f9;
}

.livraison-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* === SECTION HEADERS === */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 8px 24px;
    border: 1px solid var(--color-accent);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #000;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* === LIVRAISON GRID === */
.livraison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.livraison-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.livraison-grid-reverse .livraison-text {
    order: 2;
}

.livraison-grid-reverse .livraison-visual {
    order: 1;
}

.livraison-text {
    padding-right: 20px;
}

.livraison-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.livraison-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #000;
}

.livraison-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.livraison-description strong {
    color: #000;
}

.livraison-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.livraison-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.livraison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* === TIMELINE === */
.livraison-timeline {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: #0a0a0a;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* === ZONES GRID === */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.zone-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.zone-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.08);
    transform: translateY(-4px);
}

.zone-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-icon svg {
    width: 32px;
    height: 32px;
    color: #0a0a0a;
}

.zone-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.zone-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    min-height: 65px;
}

.zone-delay {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 8px 20px;
    background: #ecfdf5;
    border: 1px solid var(--color-accent);
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.08);
}

.process-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* === GARANTIES GRID === */
.garanties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.garantie-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    transition: all 0.3s ease;
}

.garantie-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.08);
}

.garantie-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantie-icon svg {
    width: 28px;
    height: 28px;
    color: #0a0a0a;
}

.garantie-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.garantie-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* === FRAIS BOX === */
.frais-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.frais-item {
    padding: 24px 0;
}

.frais-separator {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

.frais-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.frais-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    color: #000;
    line-height: 1;
    margin-bottom: 12px;
}

.frais-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* === FAQ QUICK GRID === */
.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-quick-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.08);
}

.faq-quick-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-quick-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* === CTA SECTION === */
.livraison-cta-section {
    background: #000;
    color: #fff;
    padding: 100px 3%;
}

.livraison-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.livraison-cta-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.livraison-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.livraison-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-cta-white, .btn-cta-outline {
    padding: 20px 48px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-white {
    background: #fff;
    color: #000;
}

.btn-cta-white:hover {
    background: var(--color-accent);
    color: #0a0a0a;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-outline:hover {
    background: #fff;
    color: #000;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .livraison-grid,
    .livraison-grid-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .livraison-grid-reverse .livraison-text,
    .livraison-grid-reverse .livraison-visual {
        order: 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-livraison {
        min-height: 35vh;
        padding: 3rem 3% 2rem;
    }
    
    .livraison-section {
        padding: 60px 3%;
    }
    
    .section-header-center {
        margin-bottom: 40px;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .garanties-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .livraison-cta-content h2 {
        font-size: 40px;
    }
    
    .livraison-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .livraison-text {
        padding-right: 0;
    }
    
    .livraison-timeline {
        padding: 24px;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .frais-box {
        padding: 24px;
    }
}
