/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-primary);
    box-shadow:
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.contact-item:hover {
    width: 140px;
    border-radius: 30px;
    box-shadow:
        inset 6px 6px 12px var(--shadow-dark),
        inset -6px -6px 12px var(--shadow-light);
}

.contact-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-item:hover .contact-icon {
    left: 20px;
    margin-left: 10px;
}

.contact-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease 0.1s;
    white-space: nowrap;
    margin-left: 20px;
}

.contact-item:hover .contact-text {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-primary);
    box-shadow:
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.social-link:hover {
    width: 140px;
    border-radius: 30px;
    box-shadow:
        inset 6px 6px 12px var(--shadow-dark),
        inset -6px -6px 12px var(--shadow-light);
    color: var(--blue-secondary);
}

.social-icon {
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.social-link:hover .social-icon {
    left: 20px;
    margin-left: 10px;
}

.social-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease 0.1s;
    white-space: nowrap;
    margin-left: 20px;
}

.social-link:hover .social-text {
    opacity: 1;
    transform: translateX(0);
}

/* Widen Orem location pod only in expanded hover state */
#location-contact:hover {
    width: 170px; /* Adjusted for Orem, Utah text */
}
