/* Contact Info Component Styles */
.contact-info {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info .contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d58c6;
    margin-bottom: 2rem;
}

.contact-info .contact-methods {
    margin-bottom: 2rem;
}

.contact-info .contact-methods .contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info .contact-methods .contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info .contact-methods .contact-method .contact-method-icon {
    width: 50px;
    height: 50px;
    background: #0d58c6;
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info .contact-methods .contact-method .contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0d58c6;
    margin-bottom: 0.25rem;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-value {
    margin-bottom: 0.5rem;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-value a {
    color: #0d58c6;
    text-decoration: none;
    font-weight: 500;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-value a:hover {
    text-decoration: underline;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-value span {
    color: #374151;
    font-weight: 500;
}

.contact-info .contact-methods .contact-method .contact-method-content .contact-method-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Social Links */
.contact-info .social-links {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info .social-links .social-links-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d58c6;
    margin-bottom: 1rem;
}

.contact-info .social-links .social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info .social-links .social-links-list .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
    color: #374151;
}

.contact-info .social-links .social-links-list .social-link:hover {
    background: #f3f4f6;
}

.contact-info .social-links .social-links-list .social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-info .social-links .social-links-list .social-link.social-link-telegram {
    color: #0088cc;
}

.contact-info .social-links .social-links-list .social-link.social-link-whatsapp {
    color: #25d366;
}

.contact-info .social-links .social-links-list .social-link.social-link-vk {
    color: #4680c2;
}

.contact-info .social-links .social-links-list .social-link span {
    font-weight: 500;
}

/* Emergency Contact */
.contact-info .emergency-contact {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.contact-info .emergency-contact .emergency-contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.contact-info .emergency-contact .emergency-contact-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-info .emergency-contact .emergency-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
}

.contact-info .emergency-contact .emergency-contact-link:hover {
    background: #b91c1c;
    color: white;
}

.contact-info .emergency-contact .emergency-contact-link svg {
    width: 18px;
    height: 18px;
}

.contact-info .emergency-contact .emergency-contact-note {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0.5rem 0 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info .contact-methods .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info .social-links .social-links-list {
        align-items: center;
    }
} 
