.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-title {
    color: #333;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-title {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.contact-item-text {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
}

.contact-item-subtext {
    margin: 0.5rem 0 0 0;
    color: #888;
    font-size: 0.9rem;
}

.address-text {
    line-height: 1.5;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    text-decoration: none;
    font-size: 1.5rem;
}

.telegram {
    color: #0088cc;
}

.vk {
    color: #4a76a8;
}

.instagram {
    color: #e4405f;
}

.no-contacts {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.no-contacts p {
    color: #666;
}

.form-title {
    color: #333;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 30rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #764ba2 !important;
    transform: translateY(-2px);
}

.form-group-message {
    min-height: 10rem;
}

.form-textarea {
    min-height: 10rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
