/* ============================================================
   MUSADO HERO BACKGROUND SLIDER OVERRIDES
   ============================================================ */

/* Hero BG Container z-index lock */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Slider Frame */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Slider sits below grid lines and orbs */
}

/* Static Dark Premium Gradient Overlay over all slides */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(12, 28, 60, 0.78),
            rgba(22, 48, 95, 0.58),
            rgba(65, 110, 180, 0.32));
    z-index: 3;
    /* Overlay sits above active slides */
    pointer-events: none;
}

/* Stacking overlay elements on top of the dark slider */
.hero-grid {
    z-index: 2 !important;
    /* Tech grid pattern stands out clearly */
    pointer-events: none;
}

.hero-orb {
    z-index: 3 !important;
    /* Glowing orbs float above the slider & grid */
    pointer-events: none;
}

/* Base Slide Styles - Prepared off-screen to the left */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
    transform: translateX(-100%);
    /* Pre-positioned to the left */
    transition: transform 1.6s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.6s ease-in-out;
}

/* Active slide state - slides in from left to center */
.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0);
}

/* Exiting slide state - slides out to the right */
.hero-slide.exit {
    opacity: 1;
    /* Keep opaque so the transition looks solid and contiguous */
    z-index: 2;
    /* Keep on same layer as active slide */
    transform: translateX(100%);
    transition: transform 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Inner Slide Image - wider to support safe horizontal panning */
.hero-slide-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

/* Elegant slow panning/zoom animation on the active slide image */
.hero-slide.active .hero-slide-img {
    animation: panBackground 20s ease-in-out infinite alternate;
}

@keyframes panBackground {
    0% {
        transform: scale(1.02) translateX(-2%);
    }

    100% {
        transform: scale(1.10) translateX(2%);
    }
}

/* Slider Indicators Container */
.hero-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Indicator Dot Base */
.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}

.hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Active Pill Shape */
.hero-indicators .indicator.active {
    width: 36px;
    border-radius: 6px;
    background: var(--secondary-fixed-dim);
    /* Musado's Theme Gold */
    border-color: var(--secondary-fixed-dim);
    box-shadow: 0 0 12px rgba(246, 190, 57, 0.6);
}
/* ============================================================
   NEW HERO TWO-COLUMN GRID & NAVY THEME LAYOUT
   ============================================================ */

/* Ensure the wrapper stands above backgrounds and is interactive */
.hero-content {
    position: relative;
    z-index: 10 !important;
    padding: clamp(120px, 15vw, 130px) 0 clamp(80px, 10vw, 10px);
}

/* Grid Container */
.hero-grid-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    width: 100%;
}

.hero-left-col {
    flex-direction: column;
}

.hero-right-col {
    display: flex;
    justify-content: flex-end;
}

/* Mobile & Tablet responsiveness: collapse grid to single column */
@media(max-width: 980px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right-col {
        justify-content: center;
        width: 100%;
    }
}

/* Glowing Gold Badge Override */
.hero-badge {
    background: rgba(246, 190, 57, 0.08) !important;
    border: 1px solid rgba(246, 190, 57, 0.25) !important;
    color: var(--secondary-fixed-dim) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(246, 190, 57, 0.05);
}

/* Header Text Enhancements */
.hero-title {
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--secondary-fixed-dim), #ffe494) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.85 !important;
}


/* ============================================================
   CORE SECTORS / STRATEGY CARD REDESIGN
   ============================================================ */

.hero-card {
    background: rgba(10, 31, 68, 0.42) !important;
    /* Premium Frosted Navy */
    border: 1px solid rgba(246, 190, 57, 0.2) !important;
    /* Gold trim border */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: clamp(28px, 4vw, 38px) !important;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 32px 80px rgba(0, 8, 30, 0.6) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.hero-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(246, 190, 57, 0.45) !important;
    box-shadow: 0 40px 96px rgba(0, 8, 30, 0.8), 0 0 24px rgba(246, 190, 57, 0.15) !important;
}

.hero-card h4 {
    color: var(--secondary-fixed-dim) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(246, 190, 57, 0.2);
}

.hero-card-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual list item wrapper */
.hci {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease !important;
    cursor: default;
}

.hci:hover {
    background: rgba(246, 190, 57, 0.08) !important;
    /* Soft Amber background */
    border-color: rgba(246, 190, 57, 0.25) !important;
    transform: translateX(6px) !important;
    /* Interactive glide offset */
    color: #ffffff !important;
}

.hci span.material-symbols-outlined {
    font-size: 18px !important;
    color: var(--secondary-fixed-dim) !important;
    transition: transform 0.3s ease;
}

.hci:hover span.material-symbols-outlined {
    transform: scale(1.15) rotate(-5deg);
}

/* ============================================================
   STATS BAND REDESIGN
   ============================================================ */

.hero-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    animation: fadeUp .9s ease .95s both;
    gap: 24px 0;
}

.hero-stat {
    flex: 1 1 200px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0 32px !important;
    transition: transform 0.3s ease !important;
}

.hero-stat:hover {
    transform: translateY(-4px) !important;
}

.hero-stat:first-child {
    padding-left: 0 !important;
}

.hero-stat:last-child {
    border-right: none !important;
}

.stat-num {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 6px !important;
}

.stat-num span {
    color: var(--secondary-fixed-dim) !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
}

/* Responsive adjustment for stats */
@media(max-width: 768px) {
    .hero-stat {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 16px 0 !important;
    }

    .hero-stat:last-child {
        border-bottom: none !important;
    }
}

/* ============================================================
   WHY CHOOSE MUSADO SECTION REDESIGN
   ============================================================ */

.why-section {
    background: #ffffff;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(48px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 190, 57, 0.08);
    border: 1px solid rgba(246, 190, 57, 0.3);
    color: #f6be39;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.why-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #f6be39;
    border-radius: 50%;
    display: inline-block;
}

.why-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 800;
    color: var(--primary);
    /* Deep Navy */
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-title span {
    color: var(--secondary-fixed-dim);
    /* Gold/Amber */
}

.why-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 16.5px);
    color: #64748b;
    /* Slate Gray */
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Why Card Design */
.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 8, 30, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Top/Bottom Accent Highlight on Hover or Active */
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-fixed-dim);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 190, 57, 0.3);
    box-shadow: 0 20px 40px rgba(0, 8, 30, 0.06), 0 0 0 1px rgba(246, 190, 57, 0.05);
}

.why-card:hover::before {
    transform: scaleX(1);
}

/* Icon Container */
.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(246, 190, 57, 0.07);
    border: 1px solid rgba(246, 190, 57, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.why-icon-box span.material-symbols-outlined {
    font-size: 24px;
    color: var(--secondary-fixed-dim);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon-box {
    background: var(--secondary-fixed-dim);
    border-color: var(--secondary-fixed-dim);
}

.why-card:hover .why-icon-box span.material-symbols-outlined {
    color: #ffffff;
    transform: scale(1.1);
}

/* Card Heading */
.why-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

/* Card Description */
.why-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #404854;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   PREMIUM MUSADO FOOTER STYLING OVERRIDES
   ============================================================ */
.musado-footer {
    background: #1b3a7a !important;
    border-top: 1px solid rgba(246, 190, 57, 0.15) !important;
    padding: 80px 0 40px !important;
    font-family: var(--font-body) !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.musado-footer .footer-top {
    padding-bottom: 40px;
}

.musado-footer h4 {
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

.musado-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary-fixed-dim) !important;
}

.musado-footer .footer-about p {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-top: 16px !important;
    margin-bottom: 24px !important;
}

.musado-footer .social-links {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

.musado-footer .social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
}

.musado-footer .social-links a:hover {
    background: var(--secondary-fixed-dim) !important;
    border-color: var(--secondary-fixed-dim) !important;
    color: var(--primary) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(246, 190, 57, 0.25) !important;
}

.musado-footer .footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.musado-footer .footer-links ul li a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.musado-footer .footer-links ul li a:hover {
    color: var(--secondary-fixed-dim) !important;
    transform: translateX(6px) !important;
}

.musado-footer .footer-newsletter-form {
    display: flex !important;
    gap: 8px !important;
    margin-top: 16px !important;
}

.musado-footer .footer-newsletter-form input {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    color: #ffffff !important;
    font-size: 13.5px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.musado-footer .footer-newsletter-form input:focus {
    border-color: var(--secondary-fixed-dim) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 1px var(--secondary-fixed-dim) !important;
}

.musado-footer .footer-newsletter-form button {
    background: var(--secondary-fixed-dim) !important;
    color: var(--primary) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 11px 22px !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.musado-footer .footer-newsletter-form button:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
}

.musado-footer .copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 24px !important;
    margin-top: 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.musado-footer .copyright-bar a {
    color: var(--secondary-fixed-dim) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.musado-footer .copyright-bar a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.musado-footer .footer-cities {
    display: flex !important;
    gap: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

.musado-footer .footer-cities span {
    position: relative !important;
}

.musado-footer .footer-cities span:not(:last-child)::after {
    content: '•' !important;
    position: absolute !important;
    right: -10px !important;
    color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
    .musado-footer .copyright-bar {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .musado-footer .footer-cities {
        justify-content: center !important;
        margin-top: 8px !important;
    }
}

/* ============================================================
   GLOBAL PRESENCE MAP PINS
   ============================================================ */
.map-wrapper {
    position: relative;
    display: block;
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.pin-core {
    width: 10px;
    height: 10px;
    background: var(--secondary-fixed-dim);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(246, 190, 57, 0.8);
    z-index: 2;
    transition: transform 0.3s ease;
}

.map-pin:hover .pin-core {
    transform: translate(-50%, -50%) scale(1.3);
}

.pin-pulse {
    width: 100%;
    height: 100%;
    background: var(--secondary-fixed-dim);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    animation: mapPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.pin-tooltip {
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: var(--primary);
    color: var(--on-primary);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    pointer-events: none;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.map-pin:hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* ============================================================
   NAV LOGO TAGLINE (Sourcing World from A to Z)
   ============================================================ */
.nav-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo-tagline {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--secondary-fixed-dim, #f6be39);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUpFade 0.8s ease forwards 0.5s;
    text-shadow: 0 0 5px rgba(246, 190, 57, 0.2);
}

#nav.scrolled .nav-logo-tagline {
    font-size: 10px;
    transition: font-size 0.3s ease;
}

@media (max-width: 991px) {
    .nav-logo-tagline {
        font-size: 9px;
        letter-spacing: 0.08em;
    }
    #nav.scrolled .nav-logo-tagline {
        font-size: 8.5px;
    }
}

@media (max-width: 576px) {
    .nav-logo-tagline {
        font-size: 7.5px;
        letter-spacing: 0.05em;
        white-space: normal;
        text-align: center;
        max-width: 130px;
        line-height: 1.2;
    }
    #nav.scrolled .nav-logo-tagline {
        font-size: 7px;
    }
    .nav-logo-icon {
        width: 65px !important;
        height: 55px !important;
    }
    .nav-logo-icon img {
        width: 45px !important;
        height: 45px !important;
    }
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Animation */
.nav-logo-wrapper:hover .nav-logo-tagline {
    animation: slideUpFade 0.8s ease forwards, glowText 1.5s infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 5px rgba(246, 190, 57, 0.2);
        color: var(--secondary-fixed-dim, #f6be39);
    }
    to {
        text-shadow: 0 0 15px rgba(246, 190, 57, 0.9), 0 0 25px rgba(246, 190, 57, 0.6);
        color: #ffffff;
    }
}

/* ============================================================
   FOOTER LOGO TAGLINE
   ============================================================ */
.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-tagline {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--secondary-fixed-dim, #f6be39);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUpFade 0.8s ease forwards 0.5s;
    text-shadow: 0 0 5px rgba(246, 190, 57, 0.2);
    margin-left: 58px;
    margin-top: -4px;
}

.footer-logo-wrapper:hover .footer-logo-tagline {
    animation: slideUpFade 0.8s ease forwards, glowText 1.5s infinite alternate;
}

/* ============================================================
   TOP BAR TAGLINE (Sourcing World from A to Z)
   ============================================================ */
.top-bar-left.text-white-50 {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    color: var(--secondary-fixed-dim, #f6be39) !important;
    text-shadow: 0 0 5px rgba(246, 190, 57, 0.2);
    transition: all 0.3s ease;
}

.top-bar-left.text-white-50:hover {
    animation: glowText 1.5s infinite alternate;
}

/* ============================================================
   CSR HIGHLIGHT IN NAVIGATION
   ============================================================ */
.csr-highlight {
    color: #ff3333 !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
}