/* ===== MODAL CYBER PREMIUM - ZÉRO SCROLL ===== */
.modal-cyber {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 8, 23, 0.95);
    backdrop-filter: blur(8px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-cyber.active {
    display: flex;
    animation: cyberFadeIn 0.4s ease;
}

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

.modal-cyber-container {
    width: 100%;
    max-width: 1300px;
    height: 95vh;
    background: linear-gradient(135deg, #0b1a2f 0%, #0d1e3a 50%, #0f2645 100%);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 255, 255, 0.1), 0 0 30px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: cyberSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* BOUTON FERMETURE VISIBLE */
.modal-cyber-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 255, 0.15);
    border: 2px solid #00ffff;
    border-radius: 50%;
    color: #00ffff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.modal-cyber-close:hover {
    background: #00ffff;
    color: #0a1a2f;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px #00ffff;
}

/* CONTENU PRINCIPAL - SANS SCROLL */
.modal-cyber-content {
    display: flex;
    height: 100%;
    padding: 15px;
    gap: 15px;
    overflow: hidden;
}

/* PARTIE GAUCHE */
.modal-cyber-left {
    flex: 1.1;
    background: rgba(10, 25, 45, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cyber-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    width: fit-content;
    text-transform: uppercase;
}

.cyber-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 5px;
}

.cyber-title span {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: relative;
}

.cyber-title span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

/* SERVICES CLIQUABLES */
.cyber-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 5px 0;
}

.cyber-service-item {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
	color:white;
}

.cyber-service-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.cyber-service-item.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.service-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1rem;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
}

.service-check {
    color: #00ffff;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-service-item.active .service-check {
    opacity: 1;
}

/* TESTIMONIAL */
.cyber-testimonial {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    position: relative;
    margin-top: auto;
}

.quote-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    color: rgba(0, 255, 255, 0.2);
    font-size: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding-right: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author i {
    font-size: 2rem;
    color: #00ffff;
}

.testimonial-author strong {
    color: white;
    font-size: 0.85rem;
    display: block;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* PARTIE DROITE */
.modal-cyber-right {
    flex: 1;
    background: rgba(5, 15, 30, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    overflow: hidden;
}

.form-title {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FORMULAIRE SANS SCROLL */
.cyber-form {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-field {
    flex: 1;
}

.form-field.full-width {
    width: 100%;
}

.form-field label {
    display: block;
    color: #00ffff;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.form-field label i {
    margin-right: 5px;
    font-size: 0.7rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-field select {
    color: white;
    cursor: pointer;
}

.form-field select option {
    background: #0a1a2f;
    color: white;
}

.form-field textarea {
    resize: none;
}

/* CHECKBOX CYBER */
.checkbox-field {
    margin: 5px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #00ffff;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkbox-custom {
    background: #00ffff;
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a1a2f;
    font-size: 0.6rem;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.checkbox-text a {
    color: #00ffff;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* BOUTON SUBMIT */
.cyber-submit-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #00ffff;
    border-radius: 12px;
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.cyber-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cyber-submit-btn:hover {
    background: #00ffff;
    color: #0a1a2f;
    box-shadow: 0 0 30px #00ffff;
    transform: translateY(-2px);
}

.cyber-submit-btn:hover::before {
    left: 100%;
}

.cyber-submit-btn i {
    transition: transform 0.4s ease;
}

.cyber-submit-btn:hover i {
    transform: translateX(5px);
}

/* NOTE DE SÉCURITÉ */
.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(0, 255, 255, 0.6);
    font-size: 0.7rem;
    padding: 5px 0;
}

.security-note i {
    font-size: 0.8rem;
}

/* ANIMATIONS DES SERVICES */
@keyframes servicePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); }
}

.cyber-service-item.active {
    animation: servicePulse 2s infinite;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .modal-cyber-content {
        flex-direction: column;
    }
    
    .cyber-services-grid {
        grid-template-columns: 1fr;
    }
}


