/* Top Header Bar */
.top-header-bar {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 10px 0;
    display: none;
    /* Hidden on mobile by default */
    position: relative;
    z-index: 101;
    transition: transform 0.4s ease, opacity 0.4s ease, height 0.4s ease;
    overflow: hidden;
    height: auto;
    opacity: 1;
}

@media (min-width: 1025px) {
    .top-header-bar {
        display: block;
    }
}

.top-header-bar.hide-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    pointer-events: none;
}

.top-header-bar .container {
    display: flex;
    justify-content: space-between;
    /* Phone on left, Socials on right */
    align-items: center;
}

/* Top Bar Phone Style */
.top-bar-phone {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-phone i {
    color: var(--color-primary, #ff7600);
    font-size: 0.85rem;
}

.top-bar-phone:hover {
    color: var(--color-primary, #ff7600);
}

/* Online Payments Header Button (White Bar) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-payments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-primary, #ff7600);
    border: 2px solid var(--color-primary, #ff7600);
    background-color: transparent;
    line-height: 1;
    white-space: nowrap;
}

.btn-payments:hover {
    background-color: var(--color-primary, #ff7600);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 118, 0, 0.2);
}

.btn-payments i {
    font-size: 0.95rem;
}

.top-header-bar .social-icons-wrapper {
    gap: 15px;
}

.top-header-bar .social-icon {
    width: 26px;
    height: 26px;
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
}

.top-header-bar .social-icon:hover {
    color: var(--color-primary, #ff7600);
    transform: translateY(-2px);
}

/* Cleanup main header visibility */
@media (min-width: 1025px) {

    .header-actions .phone-link,
    .header-actions .social-icons-wrapper {
        display: none !important;
        /* Hide original phone and socials in white header on desktop */
    }
}

/* Home link visibility is now handled by JavaScript or default browser behavior */

/* Dropdown trigger cleanup */
.dropdown .dropdown-trigger {
    cursor: pointer;
}

/* Social Icon Base Styles */
.social-icons-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-primary-light, rgba(255, 118, 0, 0.1));
    color: var(--color-primary, #ff7600);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 118, 0, 0.2);
}

.social-icon:hover {
    background-color: var(--color-primary, #ff7600);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 118, 0, 0.3);
}

/* Social Media Section Fixes */
.social-media-section {
    padding: var(--space-xl, 6rem) 0;
    background-color: var(--color-bg, #F9F7F9);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.social-media-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-media-section .social-icon {
    width: 54px;
    height: 54px;
}

.social-media-section .social-icon i {
    font-size: 24px;
}