/* =================================
   STYLES POUR PAGES (Contact, About, CGV, Services)
   ================================= */

.page-header {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
    padding: 140px 20px 80px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

.page-content {
    padding: 80px 20px;
    background: #fff;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 20px;
}

.page-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin: 30px 0 16px;
}

.page-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-container ul {
    margin: 16px 0 16px 30px;
    color: #4b5563;
}

.page-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-container strong {
    color: #111827;
    font-weight: 600;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.contact-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #111827;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
    padding: 140px 20px 80px;
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 20px;
}

.service-detail {
    max-width: 1280px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.service-detail-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    padding: 50px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #fff;
}

.service-detail-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.service-detail-content {
    padding: 50px 40px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
}

.service-detail-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0 20px 30px;
    color: #4b5563;
}

.service-detail-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.service-feature-item {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
}

.service-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.service-feature-item p {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
}

.service-cta {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.service-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0 0 16px 0;
}

.service-cta p {
    font-size: 1.1rem;
    color: #0d1b2a;
    margin: 0 0 24px 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Formulaire contact - 2 colonnes en grille */
    .contact-form form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .service-detail-header h2 {
        font-size: 1.6rem;
    }
    
    .service-detail-content {
        padding: 30px 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}
