.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: #f1f2f6;
    border-radius: 20px;
    padding: 30px 20px 20px;
    z-index: 5001;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.contact-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.contact-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.contact-modal-logo {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: contain;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.contact-section {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-section-title {
    font-size: 1rem;
    color: #111;
    margin: 0 0 10px 10px;
    font-weight: 600;
}

.contact-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    border-bottom: 1px solid #f1f2f6;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-list-item.default-cursor {
    cursor: default;
}

.contact-list-item:hover:not(.default-cursor) {
    background: #f9fafb;
}

.contact-list-item.no-border {
    border-bottom: none;
}

.contact-item-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.contact-item-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item-value {
    color: #6366f1;
    font-size: 0.95rem;
}

.contact-item-link {
    color: #6366f1;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-item-link:hover {
    text-decoration: underline;
}

.contact-item-arrow {
    color: #cbd5e1;
}