.contact-compact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 40px;
}

.contact-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-background);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-general);
    padding: 10px 25px;
    border-radius: 100px; /* Pill shape */
    box-shadow: var(--shadow-skill-category);
    gap: 15px;
    width: 100%;
}

.contact-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.action-btn.email {
    background: var(--primary-color);
    color: #fff;
}

.action-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.action-btn.call {
    background: var(--secondary-color);
    color: #fff;
}

.action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-socials a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.contact-socials a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-meta {
    font-size: 0.8rem;
    color: var(--dark-text);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-divider-small {
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-bar {
        border-radius: 24px;
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }
    
    .contact-divider {
        width: 60%;
        height: 1px;
    }

    .contact-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .contact-actions {
        flex-direction: column;
        width: 100%;
    }
    .action-btn {
        justify-content: center;
    }
}
