/* ===== PRICING SECTION - EXTENDED STYLES ===== */

.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-section .container-main {
    position: relative;
    z-index: 1;
}

.country-switcher-wrapper {
    background: white;
    padding: 35px 40px;
    border-radius: 25px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,215,0,0.2);
}

.country-switcher-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.country-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.country-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e0e0e0, #f5f5f5) border-box;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.country-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    transition: left 0.4s ease;
    z-index: 0;
}

.country-btn:hover::before {
    left: 0;
}

.country-btn:hover {
    border-color: #FFD700;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.country-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: #1a2332;
    box-shadow: 0 8px 30px rgba(255,215,0,0.5);
    transform: translateY(-3px);
}

.country-btn.active::before {
    display: none;
}

.country-flag-btn {
    font-size: 26px;
    position: relative;
    z-index: 1;
}

.country-btn span:not(.country-flag-btn) {
    position: relative;
    z-index: 1;
}

.pricing-plans-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 380px;
    background: white;
    padding: 50px 30px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e0e0e0, #f5f5f5);
    transition: all 0.4s ease;
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.pricing-card.recommended {
    border-color: #FFD700;
    box-shadow: 0 15px 60px rgba(255,215,0,0.4);
    transform: scale(1.05);
}

.pricing-card.recommended::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    height: 8px;
}

.recommended-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a2332;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255,215,0,0.5);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.pricing-card.recommended:hover {
    transform: translateY(-12px) scale(1.07);
    box-shadow: 0 25px 80px rgba(255,215,0,0.5);
}

.plan-name {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #2c3e50, #1a2332);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    font-size: 56px;
    color: #1a2332;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
}

.plan-price-small {
    font-size: 18px;
    color: #888;
    font-weight: 500;
}

.plan-description {
    font-size: 15px;
    color: #777;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    padding: 0 10px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-features li:hover {
    color: #2c3e50;
    padding-left: 5px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓ ";
    color: #FFD700;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

/* Enlever le checkmark pour les lignes "Everything in..." */
.plan-features li:has(strong):before {
    content: "";
    margin-right: 0;
}

.pricing-card .cta-btn-primary {
    width: 100%;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.pricing-card .cta-btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255,215,0,0.6);
    transform: translateY(-3px);
}

/* ===== ADDITIONAL SERVICES - ULTRA PRO & COMPACT ===== */
.additional-services {
    max-width: 100%;
    margin: 45px auto 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 35px 32px;
    border-radius: 18px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.additional-services h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 22px 0;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding-bottom: 15px;
}

.additional-services h3::before {
    content: '⚡';
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.additional-services h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

/* Service Card - ULTRA PRO */
.service-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 22px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateY(-50%);
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    height: 60%;
}

.service-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

/* Premium Voice Card - SPECIAL GOLD STYLE */
.service-card-premium {
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}

.service-card-premium::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.service-card-premium::after {
    background: linear-gradient(180deg, #FFD700, #FFA500);
}

.service-card-premium:hover {
    border-color: #FFD700;
    box-shadow: 0 12px 35px rgba(255,215,0,0.35);
    background: linear-gradient(135deg, #fffef8 0%, #fffaed 100%);
}

/* Service Icon with Badge Effect */
.service-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 10px rgba(102, 126, 234, 0.3));
}

.service-card-premium:hover .service-icon {
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.4));
}

/* Service Content */
.service-content {
    flex: 1;
    min-width: 0;
}

.service-name {
    font-size: 17px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.service-desc {
    font-size: 13px;
    color: #7a8a99;
    font-weight: 500;
    line-height: 1.5;
}

/* Service Price Badge */
.service-price {
    font-size: 19px;
    font-weight: 900;
    color: #667eea;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 10px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.service-card-premium .service-price {
    color: #d4af37;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.12) 100%);
    border-color: rgba(255, 215, 0, 0.25);
}

.service-card:hover .service-price {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: #667eea;
    transform: scale(1.05);
}

.service-card-premium:hover .service-price {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-color: #FFD700;
}

.service-period {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    margin-left: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .additional-services {
        padding: 30px 25px;
        margin: 40px auto 0;
    }
    
    .additional-services h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .service-card {
        padding: 16px 18px;
    }
    
    .service-icon {
        font-size: 32px;
    }
    
    .service-name {
        font-size: 15px;
    }
    
    .service-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .additional-services {
        padding: 25px 20px;
    }
    
    .additional-services h3 {
        font-size: 18px;
        flex-direction: column;
        gap: 5px;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 18px 16px;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-price {
        margin-top: 8px;
    }
}

.pricing-note {
    max-width: 100%;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(33,150,243,0.2);
    box-shadow: 0 10px 40px rgba(33,150,243,0.1);
}

.pricing-note h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.pricing-note ul {
    list-style: none;
    font-size: 16px;
    line-height: 2.2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.pricing-note ul li {
    padding: 10px 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
    font-weight: 600;
    color: #444;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-plans-grid {
        gap: 15px;
    }
    .pricing-card {
        padding: 40px 25px 35px;
    }
    .plan-name {
        font-size: 28px;
    }
    .plan-price {
        font-size: 48px;
    }
    .plan-features li {
        font-size: 14px;
        padding: 10px 0;
    }
}

@media (max-width: 900px) {
    .pricing-plans-grid {
        flex-wrap: wrap;
    }
    .pricing-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .pricing-plans-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 400px;
    }
    .pricing-card.recommended {
        transform: scale(1);
    }
    .country-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
