

.modalContact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modalContact .modal-content {
    background: linear-gradient(135deg, #0a0f1e, #131a35);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 150, 255, 0.2);
}

.modalContact .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(10, 132, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(0, 208, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.modalContact .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(100, 150, 255, 0.1);
    position: relative;
    z-index: 1;
}

.modalContact .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.modalContact .close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modalContact .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modalContact .modal-body {
    padding: 30px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.modalContact .icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.4);
}

.modalContact .icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.modalContact .service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    background: linear-gradient(to right, #00f2c3, #00d0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modalContact .service-description {
    font-size: 1.1rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modalContact .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modalContact .feature-item {
    background: rgba(15, 30, 60, 0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(100, 150, 255, 0.2);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modalContact .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(15, 30, 60, 0.8);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.2);
}

.modalContact .contact-btn {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 198, 255, 0.3);
}

.modalContact .contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.5);
}

.modalContact .service-highlight {
    font-size: 0.9rem;
    color: rgba(230, 241, 255, 0.7);
    margin-top: 20px;
    line-height: 1.6;
}