/* ===== OFFRES PAGE STYLES - NEW MODERN DESIGN ===== */

/* Main Section */
.offres-main-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Intro Banner */
.intro-banner {
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 24px;
    padding: 40px 50px;
    color: white;
    box-shadow: 0 12px 40px rgba(91, 124, 230, 0.3);
}

.intro-logo {
    max-width: 180px;
}

.intro-banner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.intro-banner p {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.95;
}

/* Info Cards Compact */
.info-card-compact {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card-compact:hover {
    border-color: #5b7ce6;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(91, 124, 230, 0.15);
}

.info-icon-compact {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(91, 124, 230, 0.3);
}

.info-icon-compact svg {
    color: white;
}

.info-card-compact h4 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-card-compact p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Section Titles */
.section-main-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

/* Modern Offer Cards */
.offer-card-modern {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card-modern:hover {
    transform: translateY(-10px);
    border-color: #5b7ce6;
    box-shadow: 0 20px 50px rgba(91, 124, 230, 0.25);
}

.offer-card-modern.featured {
    border-color: #5b7ce6;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(91, 124, 230, 0.03) 0%, rgba(124, 147, 237, 0.03) 100%);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5b7ce6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-icon-modern {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 24px rgba(91, 124, 230, 0.3);
    transition: all 0.4s ease;
}

.offer-card-modern:hover .offer-icon-modern {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(91, 124, 230, 0.4);
}

.offer-icon-modern svg {
    color: white;
}

.offer-card-modern h3 {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-duration {
    display: inline-block;
    padding: 6px 20px;
    background: #f1f5f9;
    color: #5b7ce6;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
    text-align: left;
}

.offer-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #475569;
    line-height: 1.6;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5b7ce6;
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-footer {
    margin-top: auto;
}

.btn-offer {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 124, 230, 0.3);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 124, 230, 0.4);
    color: white;
}

/* Tarifs Card */
.tarifs-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

.tarifs-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.tarifs-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tarifs-icon-modern svg {
    color: white;
}

.tarifs-header-modern h3 {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.tarifs-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(91, 124, 230, 0.05) 0%, rgba(124, 147, 237, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #5b7ce6;
}

.tarif-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
}

.tarif-price {
    font-size: 1.3rem;
    color: #5b7ce6;
    font-weight: 700;
}

.tarif-note {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    border-radius: 20px;
    padding: 35px;
    color: white;
    height: 100%;
}

.contact-header-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item-modern svg {
    flex-shrink: 0;
}

.contact-item-modern a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-modern a:hover {
    opacity: 0.8;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    padding: 50px;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(91, 124, 230, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(91, 124, 230, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-banner {
        padding: 30px;
        text-align: center;
    }
    
    .intro-logo {
        margin-bottom: 20px;
    }
    
    .offer-card-modern h3 {
        min-height: auto;
        font-size: 1.2rem;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .offres-main-section {
        padding: 50px 0;
    }
    
    .intro-banner {
        padding: 25px 20px;
    }
    
    .intro-banner h2 {
        font-size: 1.3rem;
    }
    
    .section-main-title {
        font-size: 1.75rem;
    }
    
    .offer-card-modern {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .offer-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .tarifs-card,
    .contact-card {
        margin-bottom: 20px;
    }
    
    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .btn-cta {
        margin-top: 20px;
    }
}

/* CTA Clean Section */
.cta-clean-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 80px 0;
}

.cta-clean-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.cta-clean-box h3 {
    font-size: 2rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-clean-box p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

.btn-clean-cta {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-clean-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    color: #ffffff;
}

/* Intro Text Section */
.intro-text-section {
    padding: 40px 20px;
}

.intro-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.intro-main-title {
    font-size: 2.8rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-main-title {
        font-size: 2rem;
    }
    
    .intro-description {
        font-size: 1.05rem;
    }
}

/* Info Section Title */
.info-section-title {
    font-size: 1.8rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Offers Badge */
.offers-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #5b7ce6 0%, #7c93ed 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Tarifs Section Titles */
.tarifs-main-title {
    font-size: 2.2rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
}

.tarifs-subtitle-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-section-title {
        font-size: 1.5rem;
    }
    
    .tarifs-main-title {
        font-size: 1.8rem;
    }
    
    .tarifs-subtitle-text {
        font-size: 1rem;
    }
}