:root {
    --leda-dark: #050b10;
    --leda-dark-2: #0b141c;
    --leda-panel: #111d27;
    --leda-gold: #c8a13a;
    --leda-lime: #9aa514;
    --leda-lime-2: #b5bf18;
    --leda-text: #1f2933;
    --leda-light: #f5f7fa;
    --leda-border: rgba(255,255,255,.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: var(--leda-text);
    overflow-x: hidden;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    color: #fff;
    background: rgba(5, 11, 16, .55);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-social-bar {
    border-bottom: 1px solid rgba(200,161,58,.28);
    padding: 7px 0;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--leda-lime-2);
    font-weight: 900;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: 0;
    color: #fff;
}

.social-links a,
.footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
    transition: .25s ease;
}

.social-links a:hover,
.footer-social a:hover {
    background: var(--leda-lime);
    border-color: var(--leda-lime);
    color: #fff;
    transform: translateY(-2px);
}

.main-navbar {
    padding: 12px 0;
}

.navbar-brand img {
    height: 78px;
    max-width: 240px;
    object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.95);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 8px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    height: 3px;
    width: 0;
    background: var(--leda-lime-2);
    position: absolute;
    left: 8px;
    bottom: 2px;
    transition: .25s ease;
}

.navbar-dark .navbar-nav .nav-link.active::after,
.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 28px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-box {
    border: 1px solid rgba(200,161,58,.8);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    background: rgba(0,0,0,.25);
    transition: .25s ease;
}

.phone-box:hover {
    color: #fff;
    background: rgba(154,165,20,.2);
}

.mini-login-form {
    display: flex;
    gap: 8px;
    border: 1px solid rgba(200,161,58,.6);
    border-radius: 12px;
    padding: 8px;
    background: rgba(0,0,0,.48);
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0,0,0,.28);
}

.mini-login-form div {
    display: grid;
    gap: 5px;
}

.mini-login-form input {
    width: 138px;
    height: 31px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 12px;
    outline: none;
}

.mini-login-form input:focus {
    border-color: var(--leda-lime-2);
    background: rgba(255,255,255,.13);
}

.mini-login-form input::placeholder {
    color: rgba(255,255,255,.72);
}

.mini-login-form button {
    width: 86px;
    border: 0;
    background: linear-gradient(135deg, var(--leda-gold), var(--leda-lime));
    color: #fff;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .25s ease;
}

.mini-login-form button:hover {
    transform: translateY(-1px);
}

/* HERO SLIDER */

.hero-slider {
    min-height: 780px;
    position: relative;
    color: #fff;
    overflow: hidden;
    background: var(--leda-dark);
}

.hero-slide {
    min-height: 780px;
    background-size: cover;
    background-position: center;
    padding-top: 220px;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition:
        opacity .9s ease,
        visibility .9s ease,
        transform 7s linear;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 24px;
    width: 140%;
    height: 125px;
    background: linear-gradient(90deg, var(--leda-lime), var(--leda-lime-2));
    transform: rotate(-4deg);
    z-index: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 40%, rgba(0,174,255,.13), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(181,191,24,.14), transparent 28%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: auto, auto, 80px 80px, 80px 80px;
    opacity: .5;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-tag,
.section-tag {
    color: var(--leda-lime-2);
    letter-spacing: 6px;
    font-weight: 900;
    font-size: 13px;
}

.hero-slider h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 24px;
    text-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.hero-slider h1 span {
    color: var(--leda-lime-2);
}

.hero-text {
    max-width: 720px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-leda {
    background: linear-gradient(135deg, var(--leda-gold), var(--leda-lime));
    border: 0;
    color: #fff;
    font-weight: 900;
    border-radius: 10px;
    padding: 14px 24px;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(154,165,20,.32);
    transition: .25s ease;
}

.btn-leda:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(154,165,20,.42);
}

.btn-dark-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    font-weight: 900;
    border-radius: 10px;
    padding: 14px 24px;
    text-transform: uppercase;
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    transition: .25s ease;
}

.btn-dark-outline:hover {
    border-color: var(--leda-lime);
    background: rgba(154,165,20,.18);
    color: #fff;
    transform: translateY(-2px);
}

.event-board {
    background: rgba(7,13,19,.78);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 22px;
    padding: 34px;
    backdrop-filter: blur(16px);
    box-shadow: 0 34px 90px rgba(0,0,0,.42);
}

.event-board p {
    color: var(--leda-lime-2);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
}

.event-board h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 22px;
}

.event-line {
    width: 45px;
    height: 3px;
    background: var(--leda-lime);
    margin-bottom: 20px;
}

.event-board span {
    display: block;
    margin: 13px 0;
    color: rgba(255,255,255,.9);
}

.slider-arrow {
    position: absolute;
    top: 52%;
    z-index: 20;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(0,0,0,.32);
    color: var(--leda-lime-2);
    border-radius: 50%;
    font-size: 42px;
    line-height: 42px;
    cursor: pointer;
    transition: .25s ease;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: var(--leda-lime);
    color: #fff;
    border-color: var(--leda-lime);
    transform: translateY(-2px);
}

.slider-left {
    left: 35px;
}

.slider-right {
    right: 35px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots span {
    width: 34px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255,255,255,.72);
    cursor: pointer;
    transition: .25s ease;
}

.slider-dots span.active {
    width: 48px;
    background: var(--leda-lime-2);
}

/* IMPACT */

.impact-panel {
    margin-top: -45px;
    position: relative;
    z-index: 8;
}

.impact-grid {
    background: rgba(5,11,16,.96);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,.25);
}

.impact-item {
    min-height: 112px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.16);
}

.impact-item:last-child {
    border-right: 0;
}

.impact-icon {
    color: var(--leda-lime-2);
    font-size: 34px;
}

.impact-item strong {
    display: block;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}

.impact-item span {
    color: rgba(255,255,255,.8);
}

/* SECTIONS */

.quick-access {
    padding: 90px 0 75px;
    background:
        radial-gradient(circle at left center, rgba(154,165,20,.08), transparent 30%),
        radial-gradient(circle at right center, rgba(154,165,20,.08), transparent 30%),
        #fff;
}

.quick-access h2,
.mandate-section h2,
.news-preview h2 {
    font-weight: 900;
}

.quick-card {
    min-height: 175px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom: 3px solid var(--leda-lime);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    padding: 28px 15px;
    text-align: center;
    text-decoration: none;
    color: var(--leda-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.quick-card:hover {
    transform: translateY(-9px);
    color: var(--leda-lime);
    box-shadow: 0 24px 55px rgba(15,23,42,.13);
}

.quick-card i {
    font-style: normal;
    font-size: 38px;
    color: var(--leda-lime);
}

.quick-card span {
    font-weight: 900;
}

.quick-card b {
    font-size: 25px;
}

.mandate-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(154,165,20,.18), transparent 25%),
        linear-gradient(135deg, #03080d, #111d27);
    color: #fff;
}

.mandate-section p {
    color: rgba(255,255,255,.78);
}

.mandate-card {
    min-height: 165px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(154,165,20,.55);
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.mandate-card:hover {
    background: rgba(154,165,20,.14);
    color: #fff;
    transform: translateY(-6px);
}

.mandate-card span {
    color: var(--leda-lime-2);
    font-size: 28px;
}

.news-preview {
    padding: 85px 0;
    background: #f5f7fa;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    min-height: 235px;
    box-shadow: 0 16px 45px rgba(15,23,42,.08);
    border: 1px solid #edf0f4;
    transition: .25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15,23,42,.13);
}

.news-card span {
    color: var(--leda-lime);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.news-card h4 {
    font-weight: 900;
    margin-top: 12px;
}

.news-card a {
    color: var(--leda-lime);
    font-weight: 900;
    text-decoration: none;
}

/* FOOTER */

.site-footer {
    background: #050b10;
    color: #fff;
    padding: 55px 0 22px;
}

.footer-logo {
    width: 210px;
    max-height: 90px;
    object-fit: contain;
}

.footer-tag {
    color: var(--leda-lime-2);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 900;
}

.site-footer h5 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,.72);
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.site-footer a:hover {
    color: var(--leda-lime-2);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 11px;
    font-size: 13px;
}

.newsletter-form button {
    border: 0;
    width: 44px;
    background: var(--leda-lime);
    color: #fff;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

/* INNER PAGES */

.inner-hero {
    padding: 230px 0 95px;
    background:
        linear-gradient(110deg, rgba(8,16,24,.96), rgba(8,16,24,.78)),
        radial-gradient(circle at 80% 20%, rgba(200,161,58,.25), transparent 35%);
    color: #fff;
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
}

.inner-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.78);
}

.content-section {
    padding: 70px 0;
    background: #f5f7fa;
}

.content-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(15,23,42,.08);
}

/* RESPONSIVE */

@media (max-width: 1400px) {
    .navbar-dark .navbar-nav .nav-link {
        margin: 0 6px;
        font-size: 11px;
    }

    .phone-box {
        padding: 10px 13px;
        font-size: 13px;
    }

    .mini-login-form input {
        width: 120px;
    }
}

@media (max-width: 1200px) {
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 18px;
    }

    .mini-login-form input {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .site-header {
        position: relative;
        background: var(--leda-dark);
    }

    .top-social-bar {
        display: none;
    }

    .navbar-brand img {
        height: 65px;
    }

    .navbar-dark .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 0;
    }

    .hero-slider,
    .hero-slide {
        min-height: auto;
    }

    .hero-slide {
        padding: 95px 0 150px;
    }

    .hero-slide::before {
        height: 80px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-item {
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .section-heading,
    .footer-bottom {
        display: block;
    }

    .slider-arrow {
        display: none;
    }
}

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

    .hero-slider h1 {
        font-size: 38px;
    }

    .mini-login-form {
        display: block;
    }

    .mini-login-form button {
        width: 100%;
        margin-top: 8px;
        height: 36px;
    }

    .hero-actions {
        display: block;
    }

    .hero-actions a {
        width: 100%;
        margin-bottom: 10px;
    }
}