.contact-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #FFFFFF;
    border: 1px solid rgba(184, 138, 90, 0.1);
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: #B88A5A;
    box-shadow: 0 20px 40px rgba(184, 138, 90, 0.1);
}
.gradient-text {
    color: #B88A5A;
}
.glass-card {
    background: #FFFFFF;
    border: 1px solid rgba(184, 138, 90, 0.1);
}
.btn-modern {
    background: #B88A5A;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}
.btn-modern:hover {
    background: #D1A373;
    transform: translateY(-2px);
}
.modern-input {
    background: #F9FAFB;
    border: 1px solid rgba(184, 138, 90, 0.2);
    color: #0B0B0B;
    transition: all 0.3s ease;
}
.modern-input:focus {
    border-color: #B88A5A;
    box-shadow: 0 0 0 3px rgba(184, 138, 90, 0.1);
    background: #FFFFFF;
}
.contact-info-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.contact-info-item:hover {
    border-left-color: #B88A5A;
    background: rgba(184, 138, 90, 0.05);
}
.social-icon {
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 138, 90, 0.1);
    background: #FFFFFF;
    color: #B88A5A;
}
.social-icon:hover {
    border-color: #B88A5A;
    transform: translateY(-3px);
    background: #B88A5A;
    color: #0B0B0B;
}
