/* Contact page specific overrides */

/* Disable growth animation for contact boxes on hover */
.contact-info:hover, 
.contact-form:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Keep icon animations */
.contact-info-item:hover i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

/* Increase description textarea height */
textarea#description {
    min-height: 180px;
}

/* Add subtle background effect on hover instead of growth */
.contact-info:hover::before,
.contact-form:hover::before {
    opacity: 1;
}