/* ==========================================================
   East Africa Transport, Logistics & Road Safety Awards Page
   Standalone stylesheet — no dependency on safety.css
   ========================================================== */

:root {
    --rsc-bg-dark: #0a1931;
    --rsc-bg-card: #050912;
    --rsc-orange: #ffc947;
    --rsc-orange-hover: #e5b43f;
    --rsc-blue: #06b6d4;
    --rsc-text-light: #f2f2f2;
    --rsc-text-muted: #cccccc;
    --rsc-green: #3cb043;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #d1d5db;
    line-height: 1.7;
    background-color: var(--rsc-bg-dark);
}

.rsc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}



.rsc-center {
    text-align: center;
}

.rsc-hidden {
    display: none;
}

/* ---------------- BUTTONS ---------------- */
.rsc-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
}

.rsc-btn-orange {
    background-color: var(--rsc-orange);
    color: #1a1a1a;
}

.rsc-btn-orange:hover {
    background-color: var(--rsc-orange-hover);
}

.rsc-btn-green {
    background-color: var(--rsc-green);
    color: #fff;
}

.rsc-btn-green:hover {
    background-color: #2e9436;
}

.rsc-read-more-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    background-color: var(--rsc-bg-dark);
}

/* ---------------- HERO ---------------- */
.rsc-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    background-image: url('../images/safety1.jpg');
    animation: moveBackground 15s linear infinite;
    background-position: center;
    background-size: 110% 110%;
    background-repeat: no-repeat;
    @media (width < 760px) {
        background-size: cover;
        padding-top: 10px !important;
    }
}


    @keyframes moveBackground {
        0% {
            background-position: 0% center;
        }

        50% {
            background-position: 100% center;
        }

        100% {
            background-position: 0% center;
        }
    }

    .rsc-awards-hero-inner {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 24px;
        min-height: 480px;
    }

    .rsc-awards-hero-content {
        text-align: right;
    }

    .rsc-awards-hero-content h1 {
        color: var(--rsc-orange);
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 1.3;
    }




    /* ---------------- CAROUSEL ---------------- */
    .rsc-carousel {
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .rsc-carousel-track {
        position: relative;
        width: 100%;
        height: 360px;
    }

    .rsc-carousel-slide {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .rsc-carousel-slide.rsc-active {
        display: block;
    }

    .rsc-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rsc-carousel-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
        padding: 24px 20px 18px;
    }

    .rsc-carousel-caption h3 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .rsc-carousel-caption p {
        color: #e0e0e0;
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .rsc-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .rsc-carousel-arrow:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .rsc-carousel-prev {
        left: 14px;
    }

    .rsc-carousel-next {
        right: 14px;
    }

    /* ---------------- ABOUT AWARDS BOX ---------------- */
    .rsc-no-pad-top {
        padding-top: 40px;
    }

    .rsc-awards-box {
        background-color: var(--rsc-bg-card);
        color: #ffffff;
        padding: 40px 48px;
        border-radius: 4px;
    }

    .rsc-awards-heading {
        color: #ffffff;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .rsc-awards-box p {
        color: #ffffff;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .rsc-awards-box p:last-child {
        margin-bottom: 0;
    }

    .rsc-awards-box strong {
        color: #ffffff;
    }

    /* ---------------- DARK CARDS (Road Safety / Growing Partnership) ---------------- */
    .rsc-dark-card {
        background-color: #15151a;
        padding: 32px;
        border-radius: 6px;
    }

    .rsc-section-heading {
        color: var(--rsc-orange);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .rsc-dark-card p {
        color: var(--rsc-text-muted);
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .rsc-dark-card p:last-child {
        margin-bottom: 0;
    }

    .rsc-roadsafety-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "heading heading"
            "image text";
        gap: 24px;
        align-items: center;
    }

    .rsc-roadsafety-grid .rsc-section-heading {
        grid-area: heading;
        margin-bottom: 0;
    }

    .rsc-roadsafety-grid .rsc-image {
        grid-area: image;
    }

    .rsc-roadsafety-grid .rsc-image img {
        width: 100%;
        border-radius: 6px;
        display: block;
    }

    .rsc-roadsafety-grid .rsc-text {
        grid-area: text;
    }

    /* ---------------- LOOKING INTO THE FUTURE ---------------- */
    .rsc-future-heading {
        color: var(--rsc-text-light);
        font-size: 1.6rem;
        font-weight: 700;
        margin-top: 60px;
        margin-bottom: 16px;
    }

    .rsc-future-intro {
        max-width: 750px;
        margin: 0 auto 40px;
        color: var(--rsc-text-muted);
        line-height: 1.7;
    }

    .rsc-future-subheading {
        color: var(--rsc-text-light);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .rsc-future-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .rsc-future-card {
        background-color: #15151a;
        border: 1px solid #2a2a30;
        border-radius: 6px;
        padding: 24px;
    }

    .rsc-future-card h4 {
        color: var(--rsc-text-light);
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .rsc-future-card p {
        color: var(--rsc-text-muted);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .rsc-future-list {
        list-style: disc;
        padding-left: 20px;
    }

    .rsc-future-list li {
        color: var(--rsc-text-muted);
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .rsc-future-list strong {
        color: var(--rsc-text-light);
    }

    .rsc-future-card-wide {
        margin-bottom: 40px;
    }

    .rsc-participate-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
    }

    .rsc-btn-uppercase {
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 860px) {
        .rsc-awards-hero-inner {
            grid-template-columns: 1fr;
            min-height: auto;
            padding-bottom: 40px;
        }

        .rsc-awards-hero-content {
            text-align: center;
        }

        .rsc-awards-hero-content h1 {
            font-size: 1.6rem;
        }

        .rsc-carousel-track {
            height: 260px;
        }

        .rsc-carousel-slide img {
            height: 260px;
        }

        .rsc-awards-box {
            padding: 28px 24px;
        }

        .rsc-hero {
            min-height: 380px;
        }

        .rsc-roadsafety-grid {
            grid-template-columns: 1fr;
            grid-template-areas:
                "heading"
                "image"
                "text";
        }

        .rsc-future-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ==========================================================
   FEEDBACK/CTA SECTION - FULL WIDTH WITH CENTERED CONTENT
   ========================================================== */
    #feedback-cta {
        width: 100%;
        padding: 4rem 0;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feedback-wrapper {
        width: 100%;
        max-width: 1200px;
        padding: 0 24px;
        display: flex;
        justify-content: center;
    }

    .feedback-card-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
        background: linear-gradient(135deg,
                rgba(10, 25, 47, 0.9) 0%,
                rgba(5, 15, 30, 0.95) 100%);
        border: 1px solid rgba(6, 182, 212, 0.2);
        border-radius: 24px;
        padding: 3rem 4rem;
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(6, 182, 212, 0.05);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 1100px;
    }

    .feedback-card-cta::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle,
                rgba(6, 182, 212, 0.08) 0%,
                rgba(6, 182, 212, 0) 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .feedback-card-cta:hover {
        transform: translateY(-5px);
        border-color: rgba(6, 182, 212, 0.45);
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(6, 182, 212, 0.12);
    }

    .feedback-info {
        flex: 1;
    }

    .feedback-info .section-label {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 600;
        color: #06b6d4;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .feedback-info h3 {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        color: #ffffff;
    }

    .feedback-info h3 .text-cyan {
        color: #06b6d4;
    }

    .feedback-info p {
        color: #94a3b8;
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 600px;
    }

    .feedback-action {
        cursor: pointer;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 700;
        padding: 1.1rem 2.2rem;
        font-size: 1rem;
        border-radius: 12px;
        border: none;
        background: #06b6d4;
        color: #ffffff;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .feedback-action:hover {
        background: #0891b2;
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    }

    /* ==========================================================
   RESPONSIVE
   ========================================================== */
    @media (max-width: 991px) {
        .feedback-card-cta {
            flex-direction: column;
            text-align: center;
            padding: 2.5rem 2rem;
            gap: 1.5rem;
        }

        .feedback-info h3 {
            font-size: 1.8rem;
        }

        .feedback-info p {
            max-width: 100%;
            margin: 0 auto;
        }

        .feedback-action {
            width: auto;
            min-width: 200px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        #feedback-cta {
            padding: 3rem 0;
        }

        .feedback-wrapper {
            padding: 0 16px;
        }

        .feedback-card-cta {
            padding: 2rem 1.5rem;
            border-radius: 16px;
        }

        .feedback-info h3 {
            font-size: 1.5rem;
        }

        .feedback-info p {
            font-size: 0.95rem;
        }

        .feedback-action {
            padding: 0.9rem 1.8rem;
            font-size: 0.9rem;
            min-width: 100%;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .feedback-card-cta {
            padding: 1.5rem 1rem;
        }

        .feedback-info h3 {
            font-size: 1.2rem;
        }

        .feedback-action {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
        }
    }

    .hero-content {
        width: 100%;
        height: 85%;
        max-width: 1100px;
        margin-inline: auto;
        margin-block: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 5;
        background-color: black;
        padding-top: 2rem;
        border-radius: 2.5em;
        opacity: .7;
    }

    @keyframes moveBackground {
        0% {
            background-position: 0% center;
        }

        50% {
            background-position: 100% center;
        }

        100% {
            background-position: 0% center;
        }
    }