/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f0eadf;
    color: #1c2b39;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Espace pour le footer */
}

/* Animation de neige - nouvelle méthode */
.snowflake {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation: fall 8s linear infinite;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation: fall 6s linear infinite;
    animation-delay: 1s;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation: fall 7s linear infinite;
    animation-delay: 2s;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation: fall 10s linear infinite;
    animation-delay: 0s;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation: fall 9s linear infinite;
    animation-delay: 3s;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation: fall 6s linear infinite;
    animation-delay: 2s;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation: fall 8s linear infinite;
    animation-delay: 1s;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation: fall 7s linear infinite;
    animation-delay: 0s;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation: fall 9s linear infinite;
    animation-delay: 2s;
}

.snowflake:nth-child(10) {
    left: 25%;
    animation: fall 10s linear infinite;
    animation-delay: 4s;
}

.snowflake:nth-child(11) {
    left: 65%;
    animation: fall 7s linear infinite;
    animation-delay: 3s;
}

.snowflake:nth-child(12) {
    left: 35%;
    animation: fall 9s linear infinite;
    animation-delay: 1.5s;
}

.snowflake:nth-child(13) {
    left: 45%;
    animation: fall 8s linear infinite;
    animation-delay: 2.5s;
}

.snowflake:nth-child(14) {
    left: 55%;
    animation: fall 6s linear infinite;
    animation-delay: 3.5s;
}

.snowflake:nth-child(15) {
    left: 75%;
    animation: fall 7s linear infinite;
    animation-delay: 0.5s;
}

@keyframes fall {
    0% {
        top: -10px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0.3;
    }
}

/* Conteneur principal */
.container {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 400px;
    height: auto;
}

/* Titre et description principale */
.main-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1c2b39;
    margin: 5px 0;
    font-weight: 600;
}

.main-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px;
    color: #1c2b39;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Champ de code démo */
.demo-code-container {
    margin-top: 30px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 400px;
}

#demoForm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-input {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #67946f;
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    width: 100%;
    transition: all 0.3s ease;
}

.demo-input:focus {
    border-color: #1c2b39;
    box-shadow: 0 0 5px rgba(103, 148, 111, 0.3);
    background-color: white;
}

.demo-button {
    background-color: #67946f;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    margin-left: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: #1c2b39;
}

/* Message d'erreur de sécurité */
.error-message {
    color: #d73a49;
    font-size: 0.9rem;
    margin: 8px 0;
    padding: 10px;
    background-color: rgba(215, 58, 73, 0.1);
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(215, 58, 73, 0.3);
    height: auto;
    display: none;
}

.error-message[style*="opacity: 1"] {
    display: block;
}

.captcha-error {
    display: block;
    opacity: 1;
}

/* Style pour éviter les attaques d'injection CSS */
input, textarea {
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

/* Styles défensifs pour limiter l'impact des scripts malveillants */
[class^="form"] input,
[class^="form"] textarea {
    max-width: 100%;
}

[class^="form"] * {
    box-sizing: border-box;
}

/* Styles communs pour les encadrés d'offre */
.price-box, .price-box-mobile {
    background-color: #cac3bc;
    color: #1c2b39;
    border-radius: 50px;
    border: 2px solid #92a993;
    padding: 15px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 320px;
    margin: 10px auto;
    position: relative;
}

.price-box:hover, .price-box-mobile:hover {
    background-color: #cac3bc;
    border-color: #67946f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Encadré offre desktop */
.price-box {
    position: relative;
    margin: 10px auto 30px;
    width: 100%;
    max-width: 370px;
    z-index: 10;
    transition: all 0.3s ease;
    padding-right: 50px;
}

/* Bouton pour afficher les détails */
.show-details-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #67946f;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

.show-details-btn:hover {
    background-color: #1c2b39;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.show-details-btn:after {
    content: 'Cliquer ici';
    position: absolute;
    white-space: nowrap;
    right: -85px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #67946f;
    opacity: 0.9;
    font-style: italic;
    pointer-events: none;
}

/* Suppression des anciens pseudo-éléments */
.price-box:before, .price-box-mobile:before,
.price-box:after, .price-box-mobile:after {
    content: none;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Encadré offre mobile */
.price-box-mobile {
    display: none;
    margin: 10px auto;
}

.price-box-mobile:hover {
    max-width: 320px;
}

/* Styles communs de texte pour les encadrés */
.price-text {
    color: #1c2b39;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.price-details {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    max-width: 100%;
    color: #1c2b39;
    font-size: 0.9rem;
    text-align: left;
}

.price-details-active {
    height: auto;
    opacity: 1;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(28, 43, 57, 0.2);
}

.price-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-details li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.price-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1c2b39;
}

/* Style spécifique pour la note de facturation */
.price-note {
    margin-top: 8px;
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.9;
}

.price-note:before {
    content: 'ℹ️' !important;
}

/* Popup modale */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(146, 169, 147, 0.95);
    z-index: 999;
    overflow: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #92a993;
    border-radius: 50px;
    max-width: 350px;
    width: 90%;
    padding: 30px 40px;
    position: relative;
    color: #1c2b39;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin: 0 auto;
    animation: slideUp 0.3s ease;
    border: 1px solid #92a993;
    user-select: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.price-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.price-details-list li {
    margin-bottom: 8px;
    color: #fff;
}

.price-details-list li:before {
    color: #fff;
}

.modal-price {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-price .price-amount {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.modal-price .price-text {
    font-size: 1.1rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    /* Anciennes règles supprimées car l'encadré n'est plus à droite */
}

/* Tablette */
@media (max-width: 992px) {
    body {
        height: auto;
        min-height: 100vh;
        padding: 30px 20px 40px;
    }
    
    .container {
        margin-bottom: 30px;
    }
    
    .price-box {
        display: block;
    }
    .price-box-mobile {
        display: none;
    }
    
    .modal {
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
        display: block;
    }
    
    .container {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .price-box {
        padding-right: 50px;
        max-width: 280px;
    }
    
    .show-details-btn {
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .show-details-btn:after {
        right: auto;
        left: 40px;
        font-size: 11px;
    }
    
    .demo-code-container {
        max-width: 330px;
        margin-top: 20px;
    }
    
    #demoForm {
        flex-direction: column;
    }
    
    .demo-button {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    /* S'assurer que tous les éléments s'affichent verticalement */
    .body > *,
    .container > * {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modal-content {
        max-width: 280px;
        padding: 20px;
    }
    
    .logo-container {
        margin-bottom: 5px;
    }
    
    .main-title {
        font-size: 1.6rem;
        margin: 0 0 5px;
    }
    
    .main-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px 50px;
        display: block;
    }
    
    .container {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .demo-code-container {
        max-width: 250px;
    }
    
    .price-box-mobile {
        max-width: 250px;
    }
    
    .modal-content {
        max-width: 250px;
        padding: 25px 30px;
        border-radius: 40px;
    }
    
    .modal h3 {
        font-size: 1.3rem;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    .main-title {
        font-size: 1.4rem;
        margin: 0 0 5px;
    }
    
    .main-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }
}

/* Bouton de contact */
.contact-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #67946f;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.contact-button:hover {
    background-color: #1c2b39;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Modal de contact */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(146, 169, 147, 0.95);
    z-index: 1001;
    overflow: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-modal-content {
    background-color: #f0eadf;
    border-radius: 30px;
    max-width: 450px;
    width: 90%;
    padding: 30px 35px;
    position: relative;
    color: #1c2b39;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    margin: 0 auto;
    animation: slideUp 0.3s ease;
    border: 2px solid #92a993;
    user-select: none;
}

.close-contact-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #67946f;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-contact-modal:hover {
    background-color: rgba(103, 148, 111, 0.1);
    color: #1c2b39;
}

.contact-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #1c2b39;
}

/* Formulaire de contact */
.contact-form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1c2b39;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cac3bc;
    border-radius: 15px;
    background-color: white;
    font-size: 0.95rem;
    color: #1c2b39;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    border-color: #67946f;
    box-shadow: 0 0 5px rgba(103, 148, 111, 0.3);
}

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

.submit-button {
    background-color: #67946f;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: center;
    width: 100%;
    max-width: 200px;
}

.submit-button:hover {
    background-color: #1c2b39;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Message de confirmation */
.confirmation-message {
    display: none;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background-color: rgba(103, 148, 111, 0.2);
    border-radius: 15px;
    color: #1c2b39;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

/* Media queries pour le formulaire de contact */
@media (max-width: 768px) {
    .contact-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .contact-modal-content {
        max-width: 350px;
        padding: 25px 30px;
    }
    
    .contact-modal h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-button {
        top: 15px;
        right: 15px;
    }
    
    .contact-modal-content {
        max-width: 300px;
        padding: 20px 25px;
    }
    
    .footer-content {
        flex-direction: column;
        padding: 2px 0;
    }
    
    .footer-text, .footer-link {
        font-size: 0.75rem;
        margin: 2px 0;
    }
}

/* État actif du bouton */
.show-details-btn.active {
    background-color: #1c2b39;
    transform: translateY(-50%) rotate(45deg);
}

.show-details-btn.active:after {
    content: 'Fermer';
    opacity: 0.9;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(240, 234, 223, 0.95);
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #67946f;
    border-top: 1px solid rgba(103, 148, 111, 0.2);
    z-index: 900;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    margin: 0 15px;
}

.footer-link {
    color: #67946f;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #1c2b39;
    text-decoration: underline;
}

/* CGV Modal */
.cgv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(146, 169, 147, 0.95);
    z-index: 1001;
    overflow: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cgv-modal-content {
    background-color: #f0eadf;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    padding: 30px 35px;
    position: relative;
    color: #1c2b39;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    margin: 0 auto;
    animation: slideUp 0.3s ease;
    border: 2px solid #92a993;
    max-height: 80vh;
    overflow-y: auto;
}

.close-cgv-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #67946f;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-cgv-modal:hover {
    background-color: rgba(103, 148, 111, 0.1);
    color: #1c2b39;
}

.cgv-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    color: #1c2b39;
}

.cgv-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    line-height: 1.6;
}

.cgv-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #67946f;
}

.cgv-content p {
    margin-bottom: 15px;
}

.cgv-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .footer {
        padding: 6px 0;
    }
    
    .cgv-modal-content {
        max-width: 90%;
        padding: 20px 25px;
    }
    
    .cgv-modal h3 {
        font-size: 1.2rem;
    }
} 

/* Styles pour la version simplifiée des CGV */
.cgv-summary-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(103, 148, 111, 0.2);
}

.cgv-summary-link a {
    color: #67946f;
    text-decoration: none;
    font-size: 0.9rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.cgv-summary-link a:hover {
    color: #1c2b39;
    text-decoration: underline;
}

.simple-cgv-content {
    max-width: 600px;
}

.simple-cgv-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.simple-cgv-text p {
    margin-bottom: 15px;
}

.simple-cgv-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.simple-cgv-text li {
    margin-bottom: 10px;
}

.simple-cgv-footer {
    font-style: italic;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(103, 148, 111, 0.2);
    text-align: center;
}

/* Styles pour l'affichage des prix comparés */
.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8px 0;
}

.price-strikethrough {
    font-size: 1em;
    text-decoration: line-through;
    color: #d73a49;
    margin-bottom: 5px;
    font-weight: 500;
    position: relative;
}

.price-strikethrough::after {
    content: "";
    position: absolute;
    width: 105%;
    height: 2px;
    background-color: #d73a49;
    left: -2.5%;
    top: 50%;
}

.price-amount {
    font-size: 1.8em;
    font-weight: bold;
    color: #67946f;
}

.price-text {
    color: #1c2b39;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.price-reference {
    margin-top: 10px;
}

.price-reference a {
    color: #67946f;
    font-size: 0.85em;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.price-reference a:hover {
    color: #4a6b50;
}

.modal-price .price-comparison {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.modal-price .price-strikethrough {
    font-size: 1.1em;
    align-self: center;
}

.modal-price .price-amount {
    font-size: 1.9em;
}

.offer-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1c2b39;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.all-inclusive {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
    font-weight: 600;
    color: #1c2b39;
}

@media (max-width: 768px) {
    .offer-label {
        font-size: 1.1rem;
    }
}

/* Styles pour le captcha */
.captcha-group {
    background-color: rgba(103, 148, 111, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(103, 148, 111, 0.3);
    margin-bottom: 25px;
}

.captcha-group label {
    font-weight: 600;
    color: #1c2b39;
}

.captcha-input {
    max-width: 200px;
    text-align: center;
    font-size: 1.1rem;
    margin: 0 auto;
    display: block;
    padding: 12px 15px;
}

.captcha-error {
    color: #d73a49;
    background-color: rgba(215, 58, 73, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(215, 58, 73, 0.3);
}

/* Media queries pour le captcha sur mobile */
@media (max-width: 480px) {
    .captcha-group {
        padding: 12px;
    }
    
    .captcha-input {
        max-width: 160px;
        font-size: 1rem;
    }
}

/* Message de succès après envoi du formulaire */
.success-message {
    text-align: center;
    padding: 20px;
    background-color: rgba(103, 148, 111, 0.15);
    border-radius: 15px;
    margin: 20px 0;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    color: #67946f;
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.success-message h4 {
    font-size: 1.4rem;
    color: #1c2b39;
    margin-bottom: 15px;
}

.success-message p {
    color: #1c2b39;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Adaptation pour mobile */
@media (max-width: 480px) {
    .success-message {
        padding: 15px;
    }
    
    .success-icon {
        font-size: 2.5rem;
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    
    .success-message h4 {
        font-size: 1.2rem;
    }
    
    .success-message p {
        font-size: 1rem;
    }
}

.show-more-reviews, .show-more-reviews:visited, .show-more-reviews:active {
    color: #fff !important;
}
.show-more-reviews:hover, .show-more-reviews:focus {
    color: #fff !important;
} 