/* styles.css */
:root {
    --primary-color: #251d75;
    --secondary-color: #c9536d;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-gray: #e9ecef;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .btn-primary {
    padding: 0.5rem 1rem;
}

.hero {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features {
    padding: 100px 0;
    background-color: var(--background-color);
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preview {
    padding: 100px 0;
}

.preview img {
    transition: all 0.3s ease;
}

.preview img:hover {
    transform: scale(1.05);
}

/* Section de tarification */
.pricing {
    padding: 100px 0;
    background-color: var(--background-color);
}

/* Carte de prix */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Effet au survol */
.pricing-card:hover {
    transform: translateY(-10px);

    color: var(--background-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Style pour la carte featured/populaire */
.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: translateY(-10px) scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Badge populaire */
.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 0 15px 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Titre des cartes */
.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Options de prix */
.pricing-options {
    margin-bottom: 25px;
    padding: 15px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-options small {
    display: block;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.annual-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
    line-height: 1;
}

/* Badge économies */
.savings-badge {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Liste des fonctionnalités */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.feature-list li {
    padding: 10px 0;
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: #28a745;
    font-size: 1.1rem;
}

.feature-list li.text-muted {
    color: #999;
}

.feature-list li.text-muted i {
    color: #dc3545;
}

/* Message promotionnel */
.text-success {
    font-weight: 500;
}

/* Boutons */
.pricing-card .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.pricing-card .btn-primary {
    background: var(--primary-color);
    border: none;
}

.pricing-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

/* Description du forfait */
.text-muted.mb-4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
}

.price-card ul li {
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.cta {
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );
    color: white;
    padding: 100px 0;
}

.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .navbar-brand img {
        max-height: 18px;
    }

    .price-card.popular {
        transform: scale(1);
    }
}
