/* Professional Header Renovation */

/* Reset/base styles for header elements to ensure consistency */
.pro-header-wrapper {
    width: 100%;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 9999;
}

/* 1. Top Announcement Bar */
.pro-top-bar {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.pro-top-bar .container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.pro-top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 2. Main Sticky Header */
.pro-main-header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pro-main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.pro-logo {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pro-logo span {
    color: #da1884;
    /* Brand Color */
}

/* CTA Button */
.pro-cta-btn {
    background: #da1884;
    color: #fff !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 24, 132, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pro-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 24, 132, 0.4);
    background: #c01574;
}

/* 3. Trust Elements Bar (replacing old sub-banner) */
.pro-trust-bar {
    background-color: #f7f7f7;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
}

.pro-trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pro-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.pro-trust-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pro-top-bar {
        font-size: 11px;
    }

    .pro-logo {
        font-size: 18px;
    }

    .pro-cta-btn {
        padding: 9px 16px;
        font-size: 12px;
    }

    .pro-trust-bar .container {
        gap: 15px;
        justify-content: space-around;
    }

    .pro-trust-item {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        width: 30%;
        gap: 5px;
    }

    .m-hide {
        display: none !important;
    }
}