.stars {
    color: #2a77ec;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.contact-section {
    /* background: #ffffff; */
    /* padding: 10px 20px; */
}

.contact-row {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    margin-top: 50px;
    margin-right: -90px;
}

.contact-form {
    height: auto;
}

.contact-grid {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 100%;
    margin: 0 auto;
}

/* Partie gauche - infos */
.contact-badge {
    background: #e8f3ef;
    color: #1a6e4a;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 32px;
    /* color: #1a3a5c; */
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 16px;
    /* color: #3a4a5e; */
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    /* background: #f8fafd; */
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.contact-details div {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-note {
    font-size: 14px;
    color: #2c7a5c;
    background: #e8f3ef;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

/* Partie droite - formulaire */
.contact-form {
    /* background: #f8fafd; */
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e4edf5;
    width: 100%;
}

.contact-form h3 {
    font-size: 24px;
    /* color: #1a3a5c; */
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    /* color: #1a3a5c; */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0f2228;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    /* background: white; */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a5c;
}

.domain-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-input input {
    flex: 1;
}

.domain-ext {
    background: #e4edf5;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #1a3a5c;
    white-space: nowrap;
}

.form-group small {
    font-size: 12px;
    color: #6a7e9a;
    display: block;
    margin-top: 5px;
}

.btn-submit {
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0e2a44;
}

.form-footer {
    font-size: 12px;
    color: #8a9ab0;
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .contact-row {
        display: block;
        margin-right: 0px;
        margin-top: 50px;
    }

    .contact-section {
        /* background: #ffffff; */
        padding: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 100%;
    }
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a4a6e;
    margin-top: 50px;
    padding-bottom: 25px;
    padding-top: 25px;
    font-size: 13px;
    color: #8aaec0;
    width: 100%;
}

.footer-bottom a {
    color: #8aaec0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

.request_table .overflow-hidden {
    /* border-collapse: collapse; */
    /* width: 100%; */
    overflow: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.card-empty {
    padding: 50px;
}


#blog,
#about,
#pricing {
    padding-top: 15px;
    color: #116e97;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* invisible au départ */
    pointer-events: none;
    /* désactivé au départ */
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    padding: 20px;
    border-radius: 8px;
    min-width: 50%;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
    /* décalé vers le haut */
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
    /* animation vers le centre */
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.hidden2 {
    display: none;
}

#profile-toggle {
    z-index: 999;
}

#profile-menu {
    border-radius: 100%;
    padding: 10px 12px;
}

.dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.dropdown a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.dropdown a:hover {
    background: #f0f0f0;
}

.text-dashed {
    text-decoration: line-through;
}