/* ==============================================
   AHMED PAPER DECORATIONS
   Promo Bar - Marquee Animation
   ============================================== */


/* ==========================================
   PROMO BAR WRAPPER
   ========================================== */

.promo-bar {
    width: 100%;
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #D4AF37;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 42px;
    display: flex;
    align-items: center;
}


/* Background Shimmer */
.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.08) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


/* ==========================================
   PROMO BAR CONTAINER
   ========================================== */

.promo-bar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}


/* ==========================================
   LEFT - SOCIAL ICONS
   ========================================== */

.promo-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.promo-social-text {
    font-size: 11px;
    color: #A3A3A3;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-social-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 11px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.promo-social-icon:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px) scale(1.15);
}


/* ==========================================
   CENTER - MARQUEE MESSAGE (ANIMATED!)
   ========================================== */

.promo-bar-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 30px;
}

/* Marquee Wrapper */
.promo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Track */
.promo-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: promoMarquee 25s linear infinite;
    padding-left: 100%;
}

.promo-marquee:hover .promo-marquee-track {
    animation-play-state: paused;
}

@keyframes promoMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Marquee Items */
.promo-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #D4AF37;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-marquee-item:hover {
    color: #E5C158;
}

.promo-marquee-item i {
    color: #E5C158;
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Separator */
.promo-marquee-separator {
    color: rgba(212, 175, 55, 0.4);
    font-size: 18px;
}


/* ==========================================
   RIGHT - CONTACT INFO
   ========================================== */

.promo-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.promo-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #D4D4D4;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.promo-contact-item:hover {
    color: #D4AF37;
}

.promo-contact-item i {
    font-size: 12px;
    color: #D4AF37;
}

.promo-contact-divider {
    width: 1px;
    height: 14px;
    background: rgba(212, 175, 55, 0.3);
}