/* ================= GLOBAL TYPOGRAPHY ================= */

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 16px;
    color: #f1f1f1;
    background: #000;
    line-height: 1.6;
}

/* Headings use League Spartan */
h1, h2, h3, h4, h5, h6,
.uw-section-title,
.uw-event-title,
.hero-title,
.uw-watch-title {
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Stronger, MMA-style look for big headings */
h1, .hero-title {
    font-size: 3rem;
    font-weight: 700;
}

h2, .uw-section-title, .uw-watch-title {
    font-size: 2.3rem;
    font-weight: 600;
}

h3, .uw-event-title {
    font-size: 1.7rem;
    font-weight: 600;
}



/* ================================================
   GLOBAL MTVSPORT BUTTON (btn-uw)
   Black base → Yellow hover (#ffc107)
   ================================================= */

.btn-uw {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    background: #000;
    color: #ffc107;
    border: 2px solid #ffc107;

    transition: 
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-uw:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.35);
}

.btn-uw:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.25);
}
.btn-uw.pulse:hover {
    animation: uwBtnPulse 0.8s forwards;
}

@keyframes uwBtnPulse {
    0% { box-shadow: 0 0 0 rgba(255,193,7,0.0); }
    100% { box-shadow: 0 0 30px rgba(255,193,7,0.55); }
}


/* =========================================
   GLOBAL BUTTON – SECONDARY
   Yellow background → Black hover
   ========================================= */
.uw-btn-secondary {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 12px 26px;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
}

.uw-btn-secondary:hover {
    background: #000;
    color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}










.uw-header {
        background: #000;
        padding: 10px 0;
        transition: all 0.3s ease-in-out;
    }
    .uw-header.sticky {
        background: rgba(0,0,0,0.92);
        padding: 8px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    }
    .uw-logo img {
        height: 90px;
        transition: 0.3s ease;
    }
    .sticky .uw-logo img {
        height: 60px;
        transition: 0.3s ease;
    }
    .sticky .navbar-expand-lg,
    .navbar-brand
    {
        padding: 0;
    }
    .uw-nav a {
        font-weight: 600;
        color: #fff !important;
        margin: 0 6px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        transition: color 0.3s ease;
    }
    .uw-nav a:hover {
        color: #ffc107 !important;
    }

    /* underline animation */
    .uw-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: #ffc107;
        transition: 0.3s ease-in-out;
    }
    .uw-nav a:hover::after {
        width: 100%;
    }
/* Active menu link */
.uw-nav .nav-link.active {
    color: #ffc107 !important;
}

.uw-nav .nav-link.active::after {
    width: 100%;
}

    /* CTA button */
    .uw-cta .btn {
        font-weight: 600;
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 14px;
        text-transform: uppercase;
        transition: 0.3s ease;
    }
    .uw-cta .btn:hover {
        transform: translateY(-3px);
    }

    /* Mobile Nav */
    .navbar-toggler {
        border: none;
        background: #ffc107;
        margin-right: 10px;

    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        filter: invert(100%);
    }








    /* Fullscreen YouTube Hero */
/* FULL-WIDTH, FIXED-HEIGHT HERO VIDEO */
.uw-hero-video {
    position: relative;
    width: 100vw;                  /* full viewport width */
    height: 800px;                 /* fixed height on desktop */
    overflow: hidden;
    background: #000;

    /* break out of any centered layout (.container etc.) */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Zoom/crop the video to remove bars */
.uw-hero-video iframe {
    position: absolute;
    left: 0;
    top: -200%;        /* push up */
    width: 100%;
    height: 500%;      /* very tall – like revslider */
    border: 0;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 992px) {
    .uw-hero-video {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .uw-hero-video {
        height: 260px;
    }
}












/* NEXT EVENT SECTION – Cage Warriors style */
.uw-next-event {
    background: #050505;
    color: #fff;
    padding: 60px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.uw-section-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.uw-section-subtitle {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 340px;
}


.uw-next-cta {
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
}

/* Event card */
.uw-event-card p,
.uw-event-detail,
.uw-event-description,
.uw-event-focus {
    font-family: 'Inter', sans-serif;
    color: #dddddd;
    font-size: 0.9rem;
}

.uw-event-card {
    background: #0c0c0c;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 24px 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.uw-event-meta {
    margin-bottom: 10px;
}

.uw-event-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffc107;
    color: #000;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.uw-event-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.uw-event-detail {
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.uw-event-description {
    margin-top: 14px;
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: #cfcfcf;
}

.uw-event-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.85rem;
    border-top: 1px solid #262626;
    padding-top: 10px;
}

.uw-event-focus {
    color: #999;
}

.uw-event-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}
.uw-event-link:hover {
    text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .uw-event-card {
        padding: 18px 18px;
    }
}
/* --- NEXT EVENT: Image & badge --- */

.uw-next-thumb {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    transform: translateY(0);
    animation: uwFloat 6s ease-in-out infinite alternate;
}

.uw-next-thumb img {
    display: block;
    width: 100%;
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

.uw-next-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.1) 60%
    );
    pointer-events: none;
}

.uw-next-thumb:hover img {
    transform: scale(1.08);
}

.uw-next-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Floating animation for the image card */
@keyframes uwFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

/* --- Scroll reveal animation --- */

.js-uw-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.uw-reveal-active {
    opacity: 1;
    transform: translateY(0);
}












/* INSIDE THE SYSTEM SECTION */
.uw-inside-system {
    background: #f4f4f4;
    padding: 80px 0;
}

.uw-section-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #111;
}

.uw-section-header p {
    max-width: 520px;
    margin: 0 auto 32px;
    color: #555;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

/* Cards */
.uw-inside-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 24px 22px;
    height: 100%;
    text-decoration: none;
    color: #111;
    border: 1px solid #e2e2e2;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.uw-inside-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    border-color: #ffc107;
}

/* icon circle */
.uw-inside-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.uw-inside-icon i {
    color: #ffc107;
    font-size: 1.4rem;
}

/* Card title + text */
.uw-inside-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #111;
}

.uw-inside-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

/* link at bottom */
.uw-inside-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.uw-inside-link::after {
    content: "→";
    font-size: 0.85rem;
    transition: transform 0.22s ease;
}

.uw-inside-card:hover .uw-inside-link::after {
    transform: translateX(3px);
}
/* Section background + subtle pattern */
.uw-inside-system {
    position: relative;
    background: #f4f4f4;
    padding: 80px 0;
    overflow: hidden;
}

.uw-inside-system::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(0,0,0,0.06), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255,193,7,0.07), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

/* Small label above heading */
.uw-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.uw-section-kicker i {
    font-size: 0.8rem;
    color: #ffc107;
}

/* Card hover upgrades */
.uw-inside-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 24px 22px;
    height: 100%;
    text-decoration: none;
    color: #111;
    border: 1px solid #e2e2e2;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.uw-inside-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 40%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255,255,255,0.45), rgba(255,255,255,0.0));
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.uw-inside-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.uw-inside-card:hover::after {
    opacity: 1;
    transform: translateX(220%);
    transition: transform 0.6s ease-out, opacity 0.3s ease-out;
}

/* Icon circle animation */
.uw-inside-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 0 0 rgba(255,193,7,0.0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.uw-inside-icon i {
    color: #ffc107;
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.uw-inside-card:hover .uw-inside-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(255,193,7,0.45);
}

.uw-inside-card:hover .uw-inside-icon i {
    transform: scale(1.05) rotate(-3deg);
}

/* Slight stagger feel on desktop */
@media (min-width: 768px) {
    .uw-inside-system .col-md-4:nth-child(2) .uw-inside-card {
        transition-delay: 0.03s;
    }
    .uw-inside-system .col-md-4:nth-child(3) .uw-inside-card {
        transition-delay: 0.06s;
    }
}

















/* WATCH THE SYSTEM IN ACTION */
.uw-watch-section {
    position: relative;
    background: #0a0a0a;
    color: #ffffff;
    padding: 70px 0;
    border-top: 1px solid #191919;
    border-bottom: 1px solid #191919;
    overflow: hidden;
}

/* subtle background glow */
.uw-watch-section::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, rgba(255,193,7,0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.9), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.uw-watch-title {
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.uw-watch-text {
    font-size: 0.95rem;
    color: #d0d0d0;
    max-width: 430px;
    margin-bottom: 20px;
}

/* reuse global button look but keep pill shape */
.uw-watch-btn {
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid #ffc107;
    background: transparent;
    color: #ffc107;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.uw-watch-btn:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
}

/* Right-hand media card */
.uw-watch-card {
    background: #111111;
    border-radius: 14px;
    border: 1px solid #252525;
    padding: 14px 14px 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: visible;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.uw-watch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.85);
}

/* Thumbnail */
.uw-watch-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.uw-watch-thumb img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

/* dark gradient over the bottom to make text/glow look good later if needed */
.uw-watch-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
    pointer-events: none;
}

.uw-watch-card:hover .uw-watch-thumb img {
    transform: scale(1.08);
}

/* Play button */
.uw-watch-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #000;
    transition: 0.25s ease;
    box-shadow: 0 0 0 0 rgba(255,193,7,0.0);
}

.uw-watch-thumb:hover .uw-watch-play {
    background: #ffc107;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 25px rgba(255,193,7,0.6);
}

/* Platforms row */
.uw-watch-platforms {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.uw-watch-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-right: 4px;
}

.uw-watch-platforms img {
    height: 22px;
    filter: grayscale(0.2);
    opacity: 0.9;
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.uw-watch-card:hover .uw-watch-platforms img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

/* small responsive tweak */
@media (max-width: 767.98px) {
    .uw-watch-section {
        padding: 50px 0;
        text-align: center;
    }
    .uw-watch-text {
        margin-left: auto;
        margin-right: auto;
    }
    .uw-watch-platforms {
        justify-content: center;
    }
}
















/* PARTNERS / ASSOCIATIONS STRIP */
.uw-partners {
    position: relative;
    background: #f4f4f4;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

/* Subtle background texture */
.uw-partners::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, rgba(0,0,0,0.06), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255,193,7,0.07), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.uw-partners-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.uw-partners-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    color: #111;
}

.uw-partners-text {
    max-width: 420px;
    font-size: 0.92rem;
    color: #555;
    font-family: 'Inter', sans-serif;
}

/* Icon grid */
.uw-partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

/* Individual partner card */
.uw-partner-item {
    flex: 0 0 calc(50% - 24px);
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

/* Icon inside the card */
.uw-partner-icon {
    width: 55px;
    height: 55px;
    border-radius: 999px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uw-partner-icon i {
    color: #ffc107;
    font-size: 1.45rem;
    transition: transform 0.25s ease;
}

.uw-partner-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 0.5px;
}

/* Hover effect */
.uw-partner-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    opacity: 1;
    border-color: #ffc107;
}

.uw-partner-item:hover .uw-partner-icon {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255,193,7,0.45);
}

.uw-partner-item:hover .uw-partner-icon i {
    transform: scale(1.1) rotate(-3deg);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .uw-partners-title,
    .uw-partners-text,
    .uw-partners-tag {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .uw-partners-logos {
        justify-content: center;
    }

    .uw-partner-item {
        flex: 0 0 46%;
    }
}





















/* NEWSLETTER CTA ABOVE FOOTER */
.uw-newsletter-cta {
    position: relative;
    background: #050505;
    color: #ffffff;
    padding: 45px 0;
    border-top: 1px solid #191919;
    overflow: hidden;
}

/* subtle background glow */
.uw-newsletter-cta::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, rgba(255,193,7,0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.9), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

/* small label above title */
.uw-news-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaaaaa;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.uw-news-kicker i {
    color: #ffc107;
    font-size: 0.85rem;
}

.uw-news-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.uw-news-text {
    font-size: 0.92rem;
    color: #d0d0d0;
    max-width: 420px;
}

/* form */
.uw-news-form {
    text-align: left;
}

.uw-news-input-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 6px;
}

.uw-news-input-wrap input[type="email"] {
    flex: 1 1 auto;
    border-radius: 999px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.uw-news-input-wrap input[type="email"]::placeholder {
    color: #777;
}

.uw-news-input-wrap input[type="email"]:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 1px rgba(255,193,7,0.4);
    background-color: #151515;
}

/* button */
.uw-news-btn {
    flex: 0 0 auto;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid #ffc107;
    background: transparent;
    color: #ffc107;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'League Spartan', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background-color 0.25s ease, color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease;
}

.uw-news-btn:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,193,7,0.4);
}

.uw-news-note {
    font-size: 0.75rem;
    color: #999;
}

/* Mobile stack */
@media (max-width: 767.98px) {
    .uw-newsletter-cta {
        text-align: center;
    }

    .uw-news-text {
        margin-left: auto;
        margin-right: auto;
    }

    .uw-news-input-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .uw-news-btn {
        width: 100%;
        text-align: center;
    }
}
























/* ================= FOOTER ================= */
.site-footer {
    position: relative;
    background: #050505;
    color: #cccccc;
    padding: 40px 0 20px;
    font-size: 0.9rem;
    border-top: 1px solid #191919;
    overflow: hidden;
}

/* subtle glow */
.site-footer::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top center, rgba(255,193,7,0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.9), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.site-footer a:hover {
    color: #ffc107;
    opacity: 0.9;
}

/* Grid layout */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-about h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column h5 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Links list */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #cccccc;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.22s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

/* round icon badge */
.footer-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.footer-social i {
    font-size: 0.9rem;
}

.footer-social a:hover .footer-social-icon {
    border-color: #ffc107;
    background-color: rgba(255,193,7,0.15);
    box-shadow: 0 0 12px rgba(255,193,7,0.35);
    transform: translateY(-2px);
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact i {
    font-size: 0.95rem;
    color: #ffc107;
}

.footer-contact-text {
    margin-bottom: 8px;
    color: #bbbbbb;
}

/* Bottom strip */
.footer-bottom {
    border-top: 1px solid #191919;
    padding-top: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: #888888;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 767.98px) {
    .footer-grid {
        flex-direction: column;
    }
}


















/* ============= GLOBAL BREADCRUMB (used on all inner pages) ============= */
.uw-breadcrumb {
    position: relative;
    background: #050505;
    border-bottom: 1px solid #191919;
    padding: 14px 0;               /* more breathing room */
    margin-top: 82px;              /* sits clean under fixed header */
    font-size: 0.85rem;            /* slightly more readable */
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 5;
}

.uw-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.uw-breadcrumb .breadcrumb-item,
.uw-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.78);   /* brighter, readable */
}

.uw-breadcrumb .breadcrumb-item a:hover {
    color: #ffc107;
}

.uw-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);   /* visible separator */
}








/* ============= PAGE HERO (History & other inner pages can reuse) ============= */
.page-hero {
    background: #050505;
    color: #ffffff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #191919;
}

.page-hero-history {
    background:
        radial-gradient(circle at top left, rgba(255,193,7,0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.95), transparent 60%),
        #050505;
}

.page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbbbbb;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.page-hero h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.page-hero-subtitle {
    max-width: 620px;
    font-size: 0.96rem;
    color: #d0d0d0;
}






/* =========================================
   HISTORY PAGE – CAGE WARRIORS (2001–2008)
   ========================================= */

/* =========================================
   HISTORY PAGE – OFFICIAL CAGE WARRIORS LIST
   ========================================= */

.uw-history-hof {
    background: radial-gradient(140% 200% at top, #222 0, #050505 55%, #000 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uw-history-hof .uw-section-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
}

.uw-history-hof h2 {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
}

/* The list itself */
.uw-hof-list {
    list-style: none;
    counter-reset: hof-counter;
    padding-left: 0;
    margin-top: 1.5rem;
}

/* 2-column layout on desktop, 1 column on mobile */
@media (min-width: 992px) {
    .uw-hof-list {
        columns: 2;
        column-gap: 24px;
    }
}

.uw-hof-list > li {
    counter-increment: hof-counter;
    position: relative;
    padding: 0.85rem 1.2rem 0.8rem 3.3rem;
    margin-bottom: 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(
        90deg,
        rgba(255, 193, 7, 0.18),
        rgba(0, 0, 0, 0.9)
    );
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
    break-inside: avoid;
}

/* Yellow number badge */
.uw-hof-list > li::before {
    content: counter(hof-counter);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffc107;
}

/* Text styles inside the card */
.uw-hof-name {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.uw-hof-meta {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.15rem;
}

.uw-hof-meta span {
    color: #ffffff;
}

.uw-hof-quote {
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}










/* ============= TIMELINE SECTION (History page) ============= */
.timeline-section {
    background: #f4f4f4;
    padding: 70px 0 80px;
}

.timeline-item {
    background: #ffffff;
    border-radius: 14px;
    border-left: 3px solid #ffc107;
    padding: 22px 22px 18px;
    margin-bottom: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.timeline-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.timeline-item h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #111;
}

.timeline-item p,
.timeline-item ul {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
}

.timeline-item ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.timeline-item blockquote {
    margin: 10px 0;
    padding-left: 14px;
    border-left: 3px solid #ffc107;
    font-style: italic;
    color: #333;
}

/* CTA under timeline */
.cta-section {
    background: #0a0a0a;
    color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #191919;
}

.cta-section h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-section p {
    max-width: 640px;
    margin: 0 auto 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #d0d0d0;
}



























/* ============= PAGE HERO – COACHING SYSTEM ============= */
.page-hero-coaching {
    background:
        radial-gradient(circle at top right, rgba(255,193,7,0.18), transparent 55%),
        radial-gradient(circle at bottom left, rgba(0,0,0,0.95), transparent 60%),
        #050505;
}

/* ============= COACHING – THREE PILLARS ============= */
.coaching-pillars-section {
    background: #f4f4f4;
    padding: 70px 0 70px;
}

.coaching-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid #e4e4e4;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.coaching-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 40%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255,255,255,0.5), rgba(255,255,255,0.0));
    transform: translateX(-100%);
    opacity: 0;
}

.coaching-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    border-color: #ffc107;
}

.coaching-card:hover::after {
    opacity: 1;
    transform: translateX(240%);
    transition: transform 0.6s ease-out, opacity 0.3s ease-out;
}

.coaching-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 0 0 rgba(255,193,7,0.0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coaching-card-icon i {
    color: #ffc107;
    font-size: 1.5rem;
    transition: transform 0.25s ease;
}

.coaching-card:hover .coaching-card-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(255,193,7,0.5);
}

.coaching-card:hover .coaching-card-icon i {
    transform: scale(1.05) rotate(-3deg);
}

.coaching-card h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    color: #111;
}

.coaching-card-lead {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
}

.coaching-card ul {
    padding-left: 18px;
    margin-bottom: 8px;
}

.coaching-card ul li {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 4px;
}

.coaching-card-note {
    font-size: 0.82rem;
    color: #777;
    font-family: 'Inter', sans-serif;
}

/* colour accents if you ever want variations later */
.coaching-card-striking { }
.coaching-card-ground { }
.coaching-card-conditioning { }

/* ============= COACHING – SECTIONS SHARED ============= */
.coaching-section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #111;
}

.coaching-section-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #555;
}

/* ============= HOW THE SYSTEM OPERATES ============= */
.coaching-process-section {
    background: #ffffff;
    padding: 60px 0;
}

.coaching-step {
    background: #0b0b0b;
    color: #ffffff;
    border-radius: 14px;
    padding: 16px 14px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    border: 1px solid #202020;
    height: 100%;
}

.coaching-step-number {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffc107;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}

.coaching-step h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.coaching-step p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #d3d3d3;
}

/* ============= COACHING PHILOSOPHY ============= */
.coaching-philosophy-section {
    background: #f4f4f4;
    padding: 70px 0;
}

.coaching-bullets {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0;
}

.coaching-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: #555;
}

.coaching-bullets li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #ffc107;
}

.coaching-quote-block {
    background: #050505;
    border-radius: 16px;
    padding: 20px 18px 18px;
    border: 1px solid #191919;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(0,0,0,0.6);
}

.coaching-quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 6px;
}

.coaching-quote-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffc107;
    margin-bottom: 8px;
}

.coaching-quote-text {
    font-size: 0.86rem;
    color: #d0d0d0;
}

/* ============= APPLICATION & LEGACY ============= */
.coaching-application-section {
    background: #ffffff;
    padding: 70px 0 80px;
}

.coaching-panel {
    background: #0a0a0a;
    color: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    border: 1px solid #191919;
    box-shadow: 0 16px 38px rgba(0,0,0,0.7);
}

.coaching-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbbbbb;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.coaching-panel p {
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: #e2e2e2;
}

/* responsive tweaks */
@media (max-width: 767.98px) {
    .coaching-pillars-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

























/* ============= PAGE HERO – MEDIA ARCHIVE ============= */
.page-hero-media {
    background:
        radial-gradient(circle at top left, rgba(255,193,7,0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.96), transparent 60%),
        #050505;
}

/* Featured video block in hero */
.media-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.media-featured-thumb {
    flex: 0 0 320px;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
    position: relative;
}

.media-featured-thumb img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.media-featured-thumb:hover img {
    transform: scale(1.07);
}

.media-play-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,193,7,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.media-featured-thumb:hover .media-play-icon {
    transform: scale(1.08);
    box-shadow: 0 0 26px rgba(255,193,7,0.65);
    background: #ffc107;
}

.media-featured-copy {
    flex: 1 1 260px;
    min-width: 0;
}

.media-featured-copy h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.media-featured-copy p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.media-featured-note {
    font-size: 0.8rem;
    color: #bbbbbb;
}

/* ============= MEDIA ARCHIVE SECTIONS ============= */
.media-archive-section {
    background: #f4f4f4;
    padding: 60px 0;
}

.media-archive-section.media-archive-alt {
    background: #ffffff;
}

.media-section-header {
    margin-bottom: 18px;
}

.media-section-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #111;
}

.media-section-header p {
    max-width: 620px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
}

/* Media cards */
.media-card {
    background: #111111;
    border-radius: 14px;
    border: 1px solid #262626;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0,0,0,0.7);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(0,0,0,0.85);
    border-color: #ffc107;
}

.media-thumb {
    position: relative;
    display: block;
}

.media-thumb img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.media-card:hover .media-thumb img {
    transform: scale(1.08);
}

/* Play icon on cards */
.media-card-play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,193,7,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.media-card:hover .media-card-play {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(255,193,7,0.7);
    background: #ffc107;
}

.media-card-body {
    padding: 12px 14px 12px;
    flex: 1 1 auto;
}

.media-card-body h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    color: #ffffff;
}

.media-card-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    color: #d3d3d3;
    margin-bottom: 8px;
}

.media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.78rem;
    color: #aaaaaa;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
    .media-featured {
        flex-direction: column;
    }
    .media-featured-thumb {
        max-width: 480px;
    }
}

@media (max-width: 767.98px) {
    .media-archive-section {
        padding: 50px 0;
    }
}



















/* ============= PAGE HERO – SERVICES ============= */
.page-hero-services {
    background:
        radial-gradient(circle at top center, rgba(255,193,7,0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.96), transparent 60%),
        #050505;
}

/* ============= SERVICES – OVERVIEW ============= */
.services-overview-section {
    background: #f4f4f4;
    padding: 70px 0 60px;
}

.services-section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #111;
}

.services-section-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: #555;
    margin-bottom: 10px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px 14px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 40%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0), rgba(255,255,255,0.5), rgba(255,255,255,0.0));
    transform: translateX(-100%);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: #ffc107;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateX(240%);
    transition: transform 0.6s ease-out, opacity 0.3s ease-out;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 0 0 0 rgba(255,193,7,0.0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-icon i {
    color: #ffc107;
    font-size: 1.3rem;
    transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(255,193,7,0.45);
}

.service-card:hover .service-icon i {
    transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 4px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    color: #555;
}

/* ============= SERVICES – TACTICAL & MEDIA ============= */
.services-tactical-section {
    background: #ffffff;
    padding: 60px 0;
}

.services-bullets {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.services-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: #555;
}

.services-bullets li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: #ffc107;
}

.services-panel {
    background: #050505;
    color: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid #191919;
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.services-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbbbbb;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.services-panel p {
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: #e2e2e2;
}

/* ============= SERVICES – CONTACT SECTION ============= */
.services-contact-section {
    background: #f4f4f4;
    padding: 70px 0 80px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.contact-card .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.input-with-icon {
    position: relative;
}

.input-with-icon span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 0.85rem;
}

.input-with-icon input.form-control,
.input-with-icon select.form-select {
    padding-left: 32px;
}

.select-icon select {
    padding-left: 34px;
}

.contact-card .form-control,
.contact-card .form-select {
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 1px rgba(255,193,7,0.4);
}

.contact-card textarea.form-control {
    padding-left: 12px; /* no icon here */
}

.contact-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #888;
}

/* responsive tweaks */
@media (max-width: 767.98px) {
    .services-overview-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .services-contact-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}










/* ================================
   SPONSORS MARQUEE
================================ */
.uw-sponsors {
    background: #0a0a0a;
    padding: 28px 0;
    border-top: 1px solid #191919;
    border-bottom: 1px solid #191919;
}

.uw-sponsor-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.uw-sponsor-track {
    display: flex;
    gap: 60px;
    animation: sponsorScroll 22s linear infinite;
}

.uw-sponsor-track img {
    height: 120px;
    width: auto;
    opacity: 0.9;
    filter: grayscale(20%);
    transition: 0.3s ease;
}

.uw-sponsor-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes sponsorScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile sizing */
@media (max-width: 768px) {
    .uw-sponsor-track img {
        height: 40px;
    }
}
