/* In this file, you will find all the css code for the pricing page */


html {
    scroll-behavior: smooth;
}

/* FOR PRICING SECTION */

#pricing {
    padding: 60px 0;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

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

.pricing-card h3 {
    font-size: 24px;
    color: #135568; /* From custom.css */
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: bold;
    color: #208a8b; /* From custom.css */
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #666;
}

.pricing-card .btn {
    background-color: #135568; /* From custom.css */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;
}

.pricing-card .btn:hover {
    background-color: #208a8b; /* From custom.css */
}

@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* NEXT FEATURES SECTION */

.future-intro {
    color: #e6edf3;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* FOR CONTACT SECTION */

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.contact-section h2 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-intro {
    color: #e6edf3;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Style du lien email */
.email-link {
    margin: 25px 0;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background-color: #135568;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.email-button:hover {
    background-color: #208a8b;
    color: #fff;
}

.email-button svg {
    margin-right: 5px;
}

/* Style du conteneur du formulaire */
.form-container {
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container iframe {
    display: block;
    border: none;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .form-container iframe {
        height: 700px;
    }
}


/* FOR THE FORM */
.custom-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.custom-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #135568;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #208a8b;
}
