.contact-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;

    letter-spacing: 1px;
    text-transform: uppercase;

    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/*
.contact-container h2::after {
    content: "";
    width: 100px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}*/

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;

    position: relative;
    transition: var(--transition-flows);
}

.contact-card:hover {box-shadow: var(--shadow-hover);}

.contact-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 25px;
    bottom: 25px;
    width: 1px;
    background: rgba(0,0,0,0.06);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;

    padding: 10px;
    border-radius: 10px;

    transition: background 0.25s ease;
}

.contact-item:hover {background: rgba(0,0,0,0.03);}

.contact-item div {transition: transform 0.25s ease;}
.contact-item:hover div {transform: translateX(6px);}

.contact-item strong {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5eee7, #eadccd);

    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;

    flex-shrink: 0;

    box-shadow: inset 0 1px 2px rgba(255,255,255,0.5),
                0 2px 6px rgba(0,0,0,0.05);

    transition: background 0.3s ease;
    animation: subtleBgShift 4s ease-in-out infinite alternate;
}
@keyframes subtleBgShift {
    0% { background-color: #f5eee7; }
    100% { background-color: #eadccd; }
}

.name-icon {background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='8' r='4' fill='%236b4f3a'/><path d='M4 20c0-4 16-4 16 0' fill='%236b4f3a'/></svg>");}
.location-icon {background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b4f3a' d='M12 2C8 2 5 5 5 9c0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7z'/><circle cx='12' cy='9' r='2' fill='white'/></svg>");}
.phone-icon {background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b4f3a' d='M6 2h4l2 5-2 2c1 2 3 4 5 5l2-2 5 2v4c0 1-1 2-2 2C10 22 2 14 2 4c0-1 1-2 2-2z'/></svg>");}
.mail-icon {background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b4f3a' d='M2 4h20v16H2z'/><path d='M2 4l10 8 10-8' fill='white'/></svg>");}


.contact-item .email-link {
    /*color: var(--primary);*/
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-item .email-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-item:hover .email-link {
    color: #ff8a5c;
}

.contact-item:hover .email-link::after {
    width: 100%;
}

.address-value {
    font-size: 15px !important;
    font-weight: 700;
    text-align: left;
}

