/* ======================================
   STYLES - PAGE DES OFFRES
   ====================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

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

/* Introduction Section */
.offers-intro {
    background-color: #f9fafb;
    padding: 3rem 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.intro-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-card-full {
    border-left: 5px solid #3b82f6;
}

.service-header {
    margin-bottom: 1.5rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.header-top h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.complexity-badge {
    background: #f97316;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.web-badge {
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.6rem;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-item strong {
    color: #1f2937;
    font-size: 0.9rem;
}

.highlight-item span {
    color: #6b7280;
    font-size: 1rem;
}

.price {
    color: #f97316;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Service Description */
.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Features Lists */
.service-included,
.service-examples,
.service-logic,
.service-results,
.service-benefits {
    margin-bottom: 1.5rem;
}

.service-included h4,
.service-examples h4,
.service-logic h4,
.service-results h4,
.service-benefits h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-list,
.examples-list,
.results-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.examples-list li,
.results-list li,
.benefits-list li {
    color: #4b5563;
    line-height: 1.6;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.feature-list li::before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-left: -1.5rem;
}

.examples-list li::before {
    content: "→ ";
    color: #3b82f6;
    font-weight: bold;
    margin-right: 0.5rem;
    margin-left: -1.5rem;
}

.results-list li::before {
    content: "✨ ";
    margin-right: 0.5rem;
    margin-left: -1.5rem;
}

.benefits-list li::before {
    content: "🎯 ";
    margin-right: 0.5rem;
    margin-left: -1.5rem;
}

.service-logic p {
    color: #4b5563;
    line-height: 1.8;
}

/* CTA Button */
.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Complementary Services */
.complementary-services {
    background-color: #f9fafb;
    padding: 3rem 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }
}

.service-card-web,
.service-card-maintenance {
    border-left: 5px solid #8b5cf6;
}

.service-card-maintenance {
    border-left-color: #10b981;
}

.price-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 1.75rem;
    font-weight: 700;
}

.maintenance-note {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.maintenance-note p {
    margin: 0;
    color: #065f46;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Complementary Note */
.complementary-note {
    background-color: #fef3c7;
    padding: 1rem;
    text-align: center;
}

.complementary-note p {
    margin: 0;
    color: var(--text-2xl);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* Options Section */
.options-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #f97316;
    background: #fffbf6;
}

.option-card h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.option-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.option-price {
    color: #f97316;
    font-weight: 700;
    margin: 0;
}

/* Secondary Offer */
.secondary-offer {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 3rem 0;
    color: white;
}

.secondary-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.secondary-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.secondary-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.secondary-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Section */
.offers-faq {
    background-color: #f9fafb;
    padding: 3rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.faq-item h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
}

.faq-item strong {
    color: #1f2937;
}

/* Final CTA */
.cta-final {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .header-top {
        flex-direction: column;
    }

    .header-top h3 {
        margin-bottom: 0.5rem;
    }

    .complexity-badge,
    .web-badge {
        align-self: flex-start;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 1.75rem;
    }
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.detail-item {
    flex: 1;
}

.detail-item strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-item span {
    color: #666;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #1e3a8a;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #666;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-card .btn {
    margin-top: auto;
}

/* Process Section */
.process {
    background-color: #f9fafb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.step-arrow {
    display: none;
    color: #3b82f6;
    font-size: 2rem;
    text-align: center;
    align-self: center;
}

/* Technologies */
.technologies {
    background-color: #ffffff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.skill-category h3 {
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-badge {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ */
.faq {
    background-color: #f9fafb;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f97316;
}

.faq-question {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1e3a8a;
}

.faq-answer {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }
}

