/* Styles spécifiques pour about.html */

/* ========================================
   CUSTOM BILLS PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-custom {
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 50%, #e8e8e8 100%);
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #333;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
    font-size: 1.1rem;
}

.feature-item i {
    color: #d4af37;
    font-size: 1.3rem;
}

.hero-image img {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.btn-custom-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: #000;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 30%, rgba(244, 208, 63, 0.08) 70%, transparent 100%);
    pointer-events: none;
}

.content-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.content-text p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case-item {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.use-case-item i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

.use-case-item span {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1rem;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d0d0d0 0%, rgba(212, 175, 55, 0.12) 25%, #d8d8d8 50%, rgba(244, 208, 63, 0.09) 75%, #d0d0d0 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, rgba(212, 175, 55, 0.12) 0%, transparent 40%, rgba(244, 208, 63, 0.09) 80%, transparent 100%);
    pointer-events: none;
}

.info-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.info-card .section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
}

.info-card .section-title i {
    font-size: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.info-item i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.info-item.highlight {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.info-item.highlight i {
    font-size: 1.5rem;
}

/* Process Timeline */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(244, 208, 63, 0.08) 100%);
    pointer-events: none;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #d4af37;
    transform: translateX(10px);
}

.timeline-content h4 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Shipping Section */
.shipping-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d0d0d0 0%, rgba(212, 175, 55, 0.11) 25%, #d8d8d8 50%, rgba(244, 208, 63, 0.09) 75%, #d0d0d0 100%);
    position: relative;
    overflow: hidden;
}

.shipping-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.11) 0%, transparent 60%, rgba(244, 208, 63, 0.09) 100%);
    pointer-events: none;
}

.shipping-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.shipping-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.shipping-card .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.shipping-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.08) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.06) 75%, #d8d8d8 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.08) 50%, transparent 100%);
    pointer-events: none;
}

.disclaimer-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.disclaimer-box i {
    font-size: 2rem;
    color: #d4af37;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.disclaimer-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d0d0d0 0%, rgba(212, 175, 55, 0.15) 25%, #d8d8d8 50%, rgba(244, 208, 63, 0.12) 75%, #d0d0d0 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%, rgba(244, 208, 63, 0.12) 100%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-card,
    .info-card,
    .shipping-card {
        padding: 1.5rem;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
}
