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

.CreationCarte {
    padding: 40px;
    background: linear-gradient(135deg, #e0f7fa, #e0e0e0);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1.5s ease-out;
}

.CreationCarte h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #004d40;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.CreationCarte .intro-text {
    font-size: 1.4em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeIn 2s ease-out;
}

.CreationCarte .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.CreationCarte .service-card {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.CreationCarte .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.CreationCarte .service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.CreationCarte .service-card h3 {
    font-size: 1.8em;
    margin-top: 10px;
    color: #004d40;
    font-weight: 600;
    text-transform: capitalize;
}

.CreationCarte .service-card p {
    margin: 10px 0;
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 300;
}

.CreationCarte .service-card .price {
    font-size: 1.5em;
    font-weight: 700;
    color: #ff6f61;
    margin-top: 15px;
}

.CreationCarte .btn {
    display: inline-block;
    text-align: center;
    background: linear-gradient(90deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.CreationCarte .btn:hover {
    background: linear-gradient(90deg, #0056b3, #003d80);
    transform: translateY(-3px);
}

.cta-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #ff6f61, #ff8a80);
    color: white;
    border-radius: 15px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-section ul {
    list-style-type: none;
    padding-left: 0;
}

.cta-section ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 400;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
