/* Callback Drawer - Être rappelé (sans email) */
.nh-callback-drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nh-callback-drawer__overlay--active {
    opacity: 1;
    visibility: visible;
}

.nh-callback-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: #f3f3f3;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.nh-callback-drawer--open {
    right: 0;
}

.nh-callback-drawer__header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.nh-callback-drawer__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #292B52;
    margin: 0;
    padding: 0;
}

.nh-callback-drawer__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #8795bd;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.nh-callback-drawer__close:hover {
    color: #292b52;
}

.nh-callback-drawer__close i {
    font-size: 20px;
}

.nh-callback-drawer__content {
    padding: 30px;
    background: #f3f3f3;
}

.nh-callback-drawer__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.nh-callback-drawer__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nh-callback-drawer__form-group {
    width: 100%;
}

.nh-callback-drawer__form-group:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nh-callback-drawer__input {
    width: 100%;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #d3d4d9;
    transition: border-color 0.3s ease;
    border-radius: 6px;
    box-sizing: border-box;
}

.nh-callback-drawer__input:focus {
    border-color: #42609B;
    outline: none;
}

.nh-callback-drawer__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.nh-callback-drawer__textarea {
    width: 100%;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #d3d4d9;
    transition: border-color 0.3s ease;
    border-radius: 6px;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
}

.nh-callback-drawer__textarea:focus {
    border-color: #42609B;
    outline: none;
}

.nh-callback-drawer__select-wrapper {
    position: relative;
    width: 100%;
}

.nh-callback-drawer__select {
    width: 100%;
    padding: 12px 50px 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #a5a5a5;
    background-color: #ffffff;
    border: 1px solid #d3d4d9;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
    border-radius: 6px;
    box-sizing: border-box;
}

.nh-callback-drawer__select:not(:invalid),
.nh-callback-drawer__select.nh-callback-drawer__select--selected {
    color: #000000;
}

.nh-callback-drawer__select:focus {
    border-color: #42609B;
    outline: none;
}

.nh-callback-drawer__select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 17px;
    pointer-events: none;
    opacity: 0.6;
}

.nh-callback-drawer__form-group--checkbox {
    display: flex;
    align-items: flex-start;
}

.nh-callback-drawer__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.nh-callback-drawer__checkbox {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 3px;
    border: 1px solid #42609B;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    position: relative;
}

.nh-callback-drawer__checkbox:checked {
    background-color: #48A0CE;
}

.nh-callback-drawer__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.nh-callback-drawer__checkbox-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    line-height: 1.5;
    flex: 1;
}

.nh-callback-drawer__submit-btn {
    width: 100%;
    max-width: 300px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #292B52 0%, #234980 49.51%, #42609B 78.91%, #8795BD 100%);
    border: none;
    border-radius: 600px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nh-callback-drawer__submit-btn:hover {
    background: white;
    border: 1px solid rgb(28, 58, 102);
    color: rgb(28, 58, 102);
}

@media (max-width: 768px) {
    .nh-callback-drawer {
        max-width: 100%;
    }
    .nh-callback-drawer__header { padding: 20px; }
    .nh-callback-drawer__title { font-size: 24px; }
    .nh-callback-drawer__content { padding: 20px; }
    .nh-callback-drawer__subtitle { font-size: 14px; margin-bottom: 20px; }
    .nh-callback-drawer__form { gap: 15px; }
    .nh-callback-drawer__submit-btn { font-size: 20px; height: 70px; }
}

@media (max-width: 480px) {
    .nh-callback-drawer__header { padding: 15px; }
    .nh-callback-drawer__title { font-size: 20px; }
    .nh-callback-drawer__content { padding: 15px; }
    .nh-callback-drawer__close { width: 35px; height: 35px; }
    .nh-callback-drawer__close i { font-size: 18px; }
    .nh-callback-drawer__submit-btn { font-size: 18px; height: 60px; max-width: 100%; }
    .nh-callback-drawer__input,
    .nh-callback-drawer__textarea { font-size: 16px; padding: 15px; }
    .nh-callback-drawer__select { font-size: 16px; padding: 15px 45px 15px 15px; }
}
