.contact_card {
    min-height: 10rem;
    width: 100%;
    padding: .75rem;
    background-color: var(--skin__bg_2);
}
.left_contact_card {
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    position: absolute;
    border-radius: 100%;
    border: 2px solid var(--skin__bs_topnav_bg);
    box-shadow: 0 0 5px #00000075;
}
img.contact_img {
    position: relative;
    bottom: 1.85rem;
}
/*.contact_divider {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    text-align: start;
}*/
.contact_divider {
    grid-template-columns: 20% 80%;
}
.text_contact_small {
    color: var(--skin__neutral_2);
    font-size: .85rem;
    line-height: 1.5;
}
.contact_btn {
    border: 1.5px solid var(--skin__primary);
    color: var(--skin__primary);
    border-radius: 6px;
    padding: 3px 6px;
    width: fit-content;
    font-size: .75rem;
}
input.digit-input {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg, #00e462 50%, #00e8a5 50%);
    -webkit-background-clip: text;
}
i.fas.fa-headset.fa-lg {
    width: 100%;
    height: 100%;
    font-size: 1.5rem !important;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    line-height: 3.25rem;
}
.contact-floating-btn {
    position: relative;
    display: inline-block;
}

/* Updated dropdown to match your dark card style */
.contact-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #1a1a1a; /* Dark background like your cards */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 12px;
    min-width: 200px;
    display: none;
    margin-bottom: 10px;
    border: 1px solid #333; /* Dark border */
}

.contact-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Updated contact items to match your UI style */
.contact-item {
    display: flex;
    align-items: center;
    
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: background-color 0.2s;
}

.contact-item:hover {
    background-color: #333; /* Dark hover like your UI */
    color: #FFD700; /* Golden color on hover */
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Style the badges to match your yellow/golden theme */
.contact-item .badge {
    background-color: #FFD700 !important; /* Golden yellow like your logo */
    color: #000 !important; /* Black text on golden background */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}