/* ============================================
   TOP HEADER - CONTACT INFO & SOCIAL NETWORKS
   ============================================ */

.top-header {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    color: var(--white);
    padding: 0.375rem 0;
    font-size: 0.8125rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--primary-600);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-header-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.top-header-item:hover {
    transform: translateY(-1px);
}

.top-header-item i {
    color: var(--primary-300);
    font-size: 0.9rem;
    opacity: 0.9;
}

.top-header .top-header-link {
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-header .top-header-link:hover {
    color: var(--primary-200) !important;
}

.top-header-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-header-social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    position: relative;
    overflow: hidden;
}

.top-header-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Facebook - Official Brand Colors */
.top-header-social-link.facebook {
    background: #1877F2;
}

.top-header-social-link.facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 8px rgba(24, 119, 242, 0.4);
}

.top-header-social-link.facebook i {
    color: #ffffff !important;
}

/* LinkedIn - Official Brand Colors */
.top-header-social-link.linkedin {
    background: #0077B5;
}

.top-header-social-link.linkedin:hover {
    background: #005885;
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.4);
}

.top-header-social-link.linkedin i {
    color: #ffffff !important;
}

/* Instagram - Official Brand Gradient */
.top-header-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.top-header-social-link.instagram:hover {
    background: linear-gradient(45deg, #e8872a 0%, #d55a32 25%, #c92539 50%, #b81f5c 75%, #a6167e 100%);
    box-shadow: 0 4px 8px rgba(245, 133, 41, 0.4);
}

.top-header-social-link.instagram i {
    color: #ffffff !important;
}

/* Twitter/X - Official Brand Colors */
.top-header-social-link.twitter {
    background: #1DA1F2;
}

.top-header-social-link.twitter:hover {
    background: #1A91DA;
    box-shadow: 0 4px 8px rgba(29, 161, 242, 0.4);
}

.top-header-social-link.twitter i {
    color: #ffffff !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-header {
        padding: 0.375rem 0;
    }

    .top-header-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .top-header-contact {
        justify-content: center;
        gap: 1rem;
    }

    .top-header-item {
        flex-direction: column;
        gap: 0.15rem;
        text-align: center;
    }

    .top-header-social-links {
        gap: 0.4rem;
    }
}

