:root {
    --v3-red: #e30613;
    --v3-text-dark: #1a1a1a;
    --v3-text-gray: #666666;
    --v3-card-bg: #ffffff;
    --v3-shadow: rgba(0, 0, 0, 0.08);
}

.v3-contacts-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.v3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.v3-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.v3-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    gap: 40px;
    justify-content: center;
}

/* Карточка */
.v3-contact-card {
    background: var(--v3-card-bg);
    border-radius: 24px; /* Более мягкое скругление */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.v3-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--v3-red);
}

/* Фото */
.v3-contact-photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f0f0f0;
}

.v3-contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Имя */
.v3-contact-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--v3-text-dark);
    margin-bottom: 15px;
}

/* Детали (Телефон и Почта) */
.v3-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.v3-contact-details a {
    text-decoration: none;
    font-size: 18px; /* Увеличили размер */
    font-weight: 500;
    color: var(--v3-text-dark);
    transition: color 0.3s;
}

.v3-contact-details a.v3-email {
    font-size: 16px;
    color: var(--v3-text-gray);
    font-weight: 400 !important; /* Добавляем !important для надежности */
    margin-top: 2px;
}

.v3-contact-details a:hover {
    color: var(--v3-red);
}

/* Мессенджеры по центру */
.v3-contact-socials {
    display: flex;
    gap: 15px;
    justify-content: center; /* Центрирование */
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.v3-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Современная форма (squircle) */
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v3-social-link.whatsapp { background-color: #25D366; }
.v3-social-link.telegram { background-color: #0088cc; }

.v3-social-link:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.v3-email {
    opacity: 0.8;
}
.v3-email:hover {
    opacity: 1;
    color: var(--v3-red) !important;
}