/* Kapcsolat Modal Stílusok */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.contact-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-modal-header {
    background: linear-gradient(135deg, #3b9dd8 0%, #2d8bc7 100%);
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px 12px 0 0;
    position: relative;
    text-align: center;
}

.contact-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 40px;
    color: #32325d;
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-profile-photo {
    width: 100px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid #3b9dd8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.contact-profile-info {
    flex: 1;
}

.contact-profile-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #32325d;
    margin: 0 0 15px 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #495057;
}

.contact-info-item i {
    color: #3b9dd8;
    font-size: 1.1rem;
    width: 20px;
}

.contact-info-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #3b9dd8;
    text-decoration: underline;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.contact-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3b9dd8;
    margin-top: 25px;
}

.contact-cta p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.contact-cta strong {
    color: #32325d;
    font-weight: 600;
}

/* Scrollbar stílus */
.contact-modal-content::-webkit-scrollbar {
    width: 8px;
}

.contact-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.contact-modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-modal-header {
        padding: 25px 30px;
    }

    .contact-modal-header h2 {
        font-size: 1.5rem;
    }

    .contact-modal-body {
        padding: 30px 25px;
    }

    .contact-profile {
        flex-direction: column;
        text-align: center;
    }

    .contact-profile-photo {
        width: 120px;
        height: 150px;
    }

    .contact-profile-info {
        width: 100%;
    }

    .contact-info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-modal.show {
        padding: 10px;
    }

    .contact-modal-header {
        padding: 20px;
    }

    .contact-modal-header h2 {
        font-size: 1.3rem;
    }

    .contact-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .contact-modal-body {
        padding: 25px 20px;
    }

    .contact-profile {
        padding: 15px;
    }

    .contact-profile-photo {
        width: 100px;
        height: 130px;
    }

    .contact-description,
    .contact-cta p {
        font-size: 0.95rem;
    }
}
