/* Polices et variables */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #007BFF; /* Bleu vif */
    --secondary-color: #1c1a9b; /* Bleu profond */
    --accent-color: #0a3e9e; /* Vert éclatant */
    --text-light: #FFFFFF; /* Blanc */
    --text-dark: #212121; /* Noir */
    --background-light: #F5F5F5; /* Gris clair */
    --background-dark: #263238; /* Gris foncé */
    --divider-color: #CCCCCC; /* Gris pâle */
    --transition-speed: 0.3s ease-in-out;
    --border-radius: 10px;
    --max-width: 1200px;
}


/* Animation d'entrée des éléments */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section AppDevelopment1 */
.appdevelopment1 {
    color: var(--text-light);
    padding: 50px 20px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s var(--transition-speed);
}

.appdevelopment1 .section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.appdevelopment1 .text-content {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s var(--transition-speed);
}

.appdevelopment1 .text-box {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeIn 1s var(--transition-speed);
}

.appdevelopment1 .text-box h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.appdevelopment1 .text-box p {
    margin-bottom: 10px;
}

.appdevelopment1 .buttons .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color var(--transition-speed);
    animation: fadeIn 1.5s var(--transition-speed);
}

.appdevelopment1 .buttons .button:hover {
    background-color: var(--text-light);
    color: var(--accent-color);
}

.appdevelopment1 .image-container img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: zoomIn 1s var(--transition-speed);
}

/* Section AppDevelopment2 */
.appdevelopment2 {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 50px 20px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s var(--transition-speed);
}

.appdevelopment2 .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.appdevelopment2 .left, .appdevelopment2 .right {
    flex: 1;
    min-width: 300px;
    animation: fadeIn 1s var(--transition-speed);
}

.appdevelopment2 h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.appdevelopment2 h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.appdevelopment2 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.appdevelopment2 ul li span {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Section Pricing */
.appdevelopment .divider {
    width: 100px;
    height: 4px;
    background-color: var(--divider-color);
    margin: 20px auto;
}

.pricing-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 20px;
    animation: fadeIn 1s var(--transition-speed);
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    animation: fadeIn 1.5s var(--transition-speed);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: var(--text-light);
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--accent-color);
}

.pricing-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color var(--transition-speed);
}

.pricing-card .btn:hover {
    background-color: var(--text-light);
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .appdevelopment1 .section,
    .appdevelopment2 .content-wrapper {
        flex-direction: column;
    }

    .pricing-section {
        flex-direction: column;
        align-items: center;
    }
}
