/* =====================================================
   JITF ECOPOLIS
   MAIN STYLESHEET
   Modern Corporate Design
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary: #1d3442;
    --primary-dark: #142832;

    --green: #35b96b;
    --green-dark: #279653;
    --green-light: #eaf8f0;

    --red: #d71920;

    --white: #ffffff;
    --light: #f5f7f8;
    --light-2: #eef2f4;

    --border: #e5e7eb;

    --text: #263238;
    --muted: #7a858c;

    --container: 1200px;

    --shadow-sm: 0 5px 20px rgba(29, 52, 66, 0.06);
    --shadow: 0 12px 35px rgba(29, 52, 66, 0.10);

    --transition: all 0.3s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.top-bar i {
    color: var(--green);
    font-size: 11px;
}

.top-right a {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.75);

    transition: var(--transition);
}

.top-right a:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}


/* =====================================================
   MAIN HEADER
===================================================== */

.main-header {
    height: 78px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(229, 231, 235, 0.8);

    position: relative;
    z-index: 1000;

    box-shadow: 0 3px 15px rgba(29, 52, 66, 0.035);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;

    transition: var(--transition);
}

.logo img {
    width: 125px;
    height: auto;

    object-fit: contain;

    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}


/* =====================================================
   NAVIGATION
===================================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    color: var(--green);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.35px;

    padding: 29px 0;

    transition: var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 18px;

    width: 0;
    height: 2px;

    background: var(--green);

    border-radius: 10px;

    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    transition: var(--transition);
}

.menu-toggle span {
    width: 22px;
    height: 2px;

    background: var(--primary);

    border-radius: 5px;

    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--green);
    border-color: var(--green);
}

.menu-toggle:hover span {
    background: var(--white);
}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {
    display: none;

    position: absolute;

    top: 116px;
    left: 0;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    box-shadow: 0 15px 35px rgba(29, 52, 66, 0.12);

    z-index: 999;
}

.mobile-nav a {
    display: block;

    padding: 15px 5%;

    color: var(--primary);

    border-bottom: 1px solid var(--border);

    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--green);
    background: var(--green-light);
    padding-left: 6%;
}

.mobile-nav.show {
    display: block;
}


/* =====================================================
   HOME INTRO
===================================================== */

.home-intro {

    min-height: calc(100vh - 116px);

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f5f7f8 0%,
            #ffffff 55%,
            #f8fbf9 100%
        );
}


/* Decorative circle */

.home-intro::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(53, 185, 107, 0.075);

    top: -280px;
    right: -160px;
}


/* Second decorative circle */

.home-intro::after {

    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(29, 52, 66, 0.035);

    bottom: -190px;
    left: -150px;
}


/* =====================================================
   INTRO CONTENT
===================================================== */

.intro-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 90px 0;
}


/* =====================================================
   SECTION TAG
===================================================== */

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.section-tag::before {

    content: "";

    width: 35px;
    height: 2px;

    background: var(--green);

    border-radius: 5px;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.intro-content h1 {

    margin: 0;

    max-width: 850px;

    color: var(--primary);

    font-size: clamp(42px, 6vw, 74px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;
}

.intro-content h1 span {

    display: block;

    color: var(--green);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.intro-content p {

    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   INNER PAGES
===================================================== */

.inner-page {

    min-height: 520px;

    padding: 10px 0;

    background: var(--light);
}

.page-heading {

    max-width: 800px;
}

.page-heading > span {

    display: inline-block;

    color: var(--green);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.page-heading h1 {

    margin-top: 10px;

    color: var(--primary);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.8px;
}

.page-heading p {

    margin-top: 20px;

    max-width: 700px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: rgba(255, 255, 255, 0.65);

    margin-top: 0;
}


/* =====================================================
   FOOTER GRID
===================================================== */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        1fr
        1.1fr;

    gap: 70px;

    padding: 70px 0 60px;
}


/* =====================================================
   FOOTER COLUMN
===================================================== */

.footer-column h3 {

    position: relative;

    color: var(--white);

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 25px;

    padding-bottom: 12px;
}

.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    background: var(--green);

    border-radius: 5px;
}


/* =====================================================
   FOOTER INFORMATION
===================================================== */

.footer-info p {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 12px;
}

.footer-info i {

    flex-shrink: 0;

    color: var(--green);

    width: 15px;

    margin-top: 4px;
}


/* =====================================================
   FOOTER SOCIAL
===================================================== */

.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.footer-social a {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50%;

    color: rgba(255,255,255,0.75);

    transition: var(--transition);
}

.footer-social a:hover {

    background: var(--green);

    border-color: var(--green);

    color: var(--white);

    transform: translateY(-3px);
}


/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {

    list-style: none;
}

.footer-links li {

    margin-bottom: 12px;
}

.footer-links a {

    display: inline-flex;

    align-items: center;

    font-size: 13px;

    color: rgba(255,255,255,0.65);

    transition: var(--transition);
}

.footer-links a:hover {

    color: var(--green);

    transform: translateX(4px);
}

.footer-links i {

    margin-right: 8px;

    color: var(--green);

    font-size: 10px;
}


/* =====================================================
   FOOTER GALLERY
===================================================== */

.footer-gallery {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}

.gallery-placeholder {

    height: 68px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04)
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 5px;

    transition: var(--transition);
}

.gallery-placeholder:hover {

    background: rgba(53,185,107,0.20);

    border-color: rgba(53,185,107,0.40);

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-bottom-inner {

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    font-size: 11px;

    color: rgba(255,255,255,0.48);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .main-nav {
        gap: 22px;
    }

    .footer-grid {
        gap: 40px;
    }

}


@media (max-width: 768px) {

    /* Top Bar */

    .top-bar-inner {
        justify-content: center;
    }

    .top-left {
        display: none;
    }

    .top-right {
        gap: 10px;
    }


    /* Header */

    .main-header {
        height: 68px;
    }

    .header-inner {
        height: 68px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        width: 110px;
    }


    /* Mobile Navigation */

    .mobile-nav {
        top: 68px;
    }


    /* Home */

    .home-intro {

        min-height:
            calc(100vh - 68px);
    }

    .intro-content {
        padding: 70px 0;
    }

    .intro-content h1 {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .intro-content p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Inner Pages */

    .inner-page {
        padding: 70px 0;
    }


    /* Footer */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 55px 0 45px;
    }

    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 15px 0;
    }

}


@media (max-width: 480px) {

    .container {
        width: 90%;
    }


    /* Top Bar */

    .top-bar {
        font-size: 11px;
    }

    .top-right span {
        display: none;
    }


    /* Logo */

    .logo img {
        width: 105px;
    }


    /* Home */

    .home-intro {
        min-height: auto;
    }

    .intro-content {
        padding: 75px 0;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .intro-content h1 {
        font-size: 37px;
        letter-spacing: -0.5px;
    }

    .intro-content p {
        font-size: 15px;
    }


    /* Footer */

    .footer-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom p {
        font-size: 10px;
    }

}

/* =====================================================
   HOME BANNER SLIDER
===================================================== */

.home-slider {

    width: 100%;

    height: calc(100vh - 116px);

    min-height: 560px;

    position: relative;

    overflow: hidden;

    background: var(--primary);
}


/* =====================================================
   SLIDER TRACK
===================================================== */

.slider-track {

    width: 100%;

    height: 100%;

    display: flex;

    animation: bannerSlider 12s infinite;
}


/* =====================================================
   SLIDE
===================================================== */

.slide {

    min-width: 100%;

    height: 100%;

    position: relative;

    overflow: hidden;
}


/* =====================================================
   SLIDE IMAGE
===================================================== */

.slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.slide-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 40, 50, 0.82) 0%,
            rgba(20, 40, 50, 0.55) 42%,
            rgba(20, 40, 50, 0.15) 100%
        );

    z-index: 1;
}


/* =====================================================
   SLIDE CONTENT
===================================================== */

.slide .container {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: center;
}


.slide-content {

    max-width: 720px;

    padding: 40px 0;

    color: var(--white);
}


/* =====================================================
   SECTION TAG
===================================================== */

.slide-content .section-tag {

    color: var(--green);

    display: inline-flex;

    align-items: center;

    gap: 11px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.slide-content .section-tag::before {

    content: "";

    width: 35px;

    height: 2px;

    background: var(--green);

    border-radius: 5px;
}


/* =====================================================
   SLIDER HEADING
===================================================== */

.slide-content h1 {

    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5.5vw, 70px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.slide-content h1 span {

    display: block;

    color: var(--green);
}


/* =====================================================
   SLIDER DESCRIPTION
===================================================== */

.slide-content p {

    max-width: 620px;

    margin-top: 22px;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   AUTOMATIC SLIDER
===================================================== */

@keyframes bannerSlider {

    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100%);
    }

    90% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .home-slider {

        height: calc(100vh - 68px);

        min-height: 500px;
    }

    .slide-content {

        max-width: 90%;

        padding: 30px 0;
    }

    .slide-content h1 {

        font-size: 46px;

        letter-spacing: -1px;
    }

    .slide-content p {

        font-size: 16px;

        line-height: 1.7;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

    .home-slider {

        height: 600px;

        min-height: 600px;
    }

    .slide img {

        object-position: center;
    }

    .slide-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(20,40,50,0.82),
                rgba(20,40,50,0.40)
            );
    }

    .slide-content {

        max-width: 100%;
    }

    .slide-content .section-tag {

        font-size: 10px;

        letter-spacing: 2px;
    }

    .slide-content h1 {

        font-size: 37px;

        letter-spacing: -0.5px;
    }

    .slide-content p {

        font-size: 15px;
    }

}


/* =====================================================
   LOCATION & CONNECT SECTION
===================================================== */

.location-section {

    position: relative;

    background: var(--white);

    overflow: hidden;
}


/* =====================================================
   LOCATION GRID
===================================================== */

.location-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 500px;
}


/* =====================================================
   MAP
===================================================== */

.location-map {

    position: relative;

    min-height: 500px;

    overflow: hidden;

    background: var(--primary);
}

.location-map img {

    width: 100%;

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.8s ease;
}

.location-map:hover img {

    transform: scale(1.03);
}


/* =====================================================
   MAP DARK EFFECT
===================================================== */

.location-map::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(29,52,66,0.12),
            transparent 65%
        );

    pointer-events: none;
}


/* =====================================================
   MAP LABEL
===================================================== */

.map-label {

    position: absolute;

    left: 30px;

    bottom: 30px;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 17px;

    background: rgba(29,52,66,0.90);

    color: var(--white);

    border-radius: 7px;

    font-size: 12px;

    font-weight: 500;

    box-shadow: 0 8px 25px rgba(0,0,0,0.20);
}

.map-dot {

    width: 9px;

    height: 9px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(53,185,107,0.18);
}


/* =====================================================
   CONNECT CONTENT
===================================================== */

.connect-content {

    position: relative;

    padding: 65px 8%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f8fafb,
            #ffffff
        );
}


/* Decorative element */

.connect-content::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(53,185,107,0.06);

    right: -70px;

    top: -70px;
}


/* =====================================================
   CONNECT HEADING
===================================================== */

.connect-content .section-tag {

    margin-bottom: 12px;

    position: relative;

    z-index: 2;
}

.connect-content h2 {

    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--primary);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1px;
}

.connect-content h2 span {

    display: block;

    color: var(--green);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.connect-description {

    position: relative;

    z-index: 2;

    max-width: 550px;

    margin: 18px 0 28px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CONTACT ITEM
===================================================== */

.contact-item {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 17px;
}

.contact-icon {

    flex-shrink: 0;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green-light);

    color: var(--green);

    border-radius: 8px;

    font-size: 14px;

    transition: var(--transition);
}

.contact-item:hover .contact-icon {

    background: var(--green);

    color: var(--white);

    transform: translateY(-2px);
}

.contact-item small {

    display: block;

    color: var(--muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 2px;
}

.contact-item p {

    margin: 0;

    color: var(--primary);

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;
}


/* =====================================================
   CONNECT BUTTON
===================================================== */

.connect-btn {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: fit-content;

    margin-top: 12px;

    padding: 13px 21px;

    background: var(--primary);

    color: var(--white);

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);

    box-shadow: 0 8px 20px rgba(29,52,66,0.12);
}

.connect-btn i {

    color: var(--green);

    transition: var(--transition);
}

.connect-btn:hover {

    background: var(--green);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(53,185,107,0.20);
}

.connect-btn:hover i {

    color: var(--white);

    transform: translateX(4px);
}


/* =====================================================
   HIGHLIGHTS SECTION
===================================================== */

.highlights-section {

    padding: 55px 0;

    background: var(--white);
}


/* =====================================================
   HIGHLIGHTS GRID
===================================================== */

.highlights-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* =====================================================
   HIGHLIGHT CARD
===================================================== */

.highlight-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.highlight-card:hover {

    transform: translateY(-5px);

    border-color: rgba(53,185,107,0.35);

    box-shadow: var(--shadow);
}


/* =====================================================
   HIGHLIGHT NUMBER
===================================================== */

.highlight-number {

    flex-shrink: 0;

    color: var(--green);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    padding-top: 3px;
}


/* =====================================================
   HIGHLIGHT CONTENT
===================================================== */

.highlight-card h3 {

    color: var(--primary);

    font-size: 16px;

    margin-bottom: 5px;
}

.highlight-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   LOCATION RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .location-grid {

        grid-template-columns: 1fr;
    }

    .location-map {

        min-height: 420px;
    }

    .location-map img {

        min-height: 420px;
    }

    .connect-content {

        padding: 60px 7%;
    }

    .highlights-grid {

        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .location-map {

        min-height: 350px;
    }

    .location-map img {

        min-height: 350px;
    }

    .map-label {

        left: 18px;

        bottom: 18px;

        font-size: 11px;

        padding: 9px 13px;
    }

    .connect-content {

        padding: 50px 6%;
    }

    .connect-content h2 {

        font-size: 36px;
    }

    .connect-description {

        font-size: 13px;
    }

    .highlight-card {

        padding: 20px;
    }

}

/* =====================================================
   SPACE BETWEEN SLIDER & LOCATION SECTION
===================================================== */

.location-section {
    margin-top: 45px;
}

/* =====================================================
   SITE UNDER CONSTRUCTION MARQUEE
===================================================== */

.construction-marquee {

    width: 100%;

    height: 42px;

    overflow: hidden;

    display: flex;

    align-items: center;

    position: relative;

    background: var(--primary);

    color: var(--white);

    border-bottom: 2px solid var(--green);

    box-shadow: 0 4px 12px rgba(29, 52, 66, 0.12);

}


/* Moving Track */

.marquee-track {

    display: flex;

    align-items: center;

    width: max-content;

    white-space: nowrap;

    animation: constructionMarquee 22s linear infinite;
}


/* Text */

.marquee-track span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 0 28px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


/* Warning Icon */

.marquee-track i {

    color: var(--green);

    font-size: 13px;

}


/* Separator */

.marquee-track .marquee-separator {

    color: var(--green);

    font-size: 18px;

    padding: 0 5px;
}


/* =====================================================
   MARQUEE ANIMATION
===================================================== */

@keyframes constructionMarquee {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}


/* =====================================================
   HOVER - PAUSE
===================================================== */

.construction-marquee:hover .marquee-track {

    animation-play-state: paused;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .construction-marquee {

        height: 38px;

    }

    .marquee-track span {

        font-size: 10px;

        letter-spacing: 0.8px;

        padding: 0 18px;

    }

}


@media (max-width: 480px) {

    .construction-marquee {

        height: 36px;

    }

    .marquee-track span {

        font-size: 9px;

        padding: 0 14px;

    }

}

/* =====================================================
   EHS / INNER PAGE SLIDER
===================================================== */

.inner-slider {

    width: 100%;

    height: 620px;

    position: relative;

    overflow: hidden;

    background: var(--primary);
}


/* =====================================================
   SLIDER TRACK
===================================================== */

.inner-slider-track {

    width: 100%;

    height: 100%;

    display: flex;

    animation: ehsSlider 18s infinite;
}


/* =====================================================
   INNER SLIDE
===================================================== */

.inner-slide {

    min-width: 100%;

    height: 100%;

    position: relative;

    overflow: hidden;
}


/* =====================================================
   SLIDE IMAGE
===================================================== */

.inner-slide img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}


/* =====================================================
   SLIDE OVERLAY
===================================================== */

.inner-slide-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 40, 50, 0.82) 0%,
            rgba(20, 40, 50, 0.55) 45%,
            rgba(20, 40, 50, 0.12) 100%
        );

    z-index: 1;
}


/* =====================================================
   SLIDE CONTENT
===================================================== */

.inner-slide .container {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: center;
}


.inner-slide-content {

    max-width: 750px;

    padding: 50px 0;

    color: var(--white);
}


/* =====================================================
   SECTION TAG
===================================================== */

.inner-slide-content .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.inner-slide-content .section-tag::before {

    content: "";

    width: 35px;

    height: 2px;

    background: var(--green);

    border-radius: 5px;
}


/* =====================================================
   HEADING
===================================================== */

.inner-slide-content h1 {

    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 5.5vw, 70px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.inner-slide-content h1 span {

    display: block;

    color: var(--green);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.inner-slide-content p {

    max-width: 600px;

    margin-top: 23px;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   EHS SLIDER ANIMATION
===================================================== */

@keyframes ehsSlider {

    0% {
        transform: translateX(0);
    }

    27% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    93% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }

}


/* =====================================================
   EHS CONTENT BELOW SLIDER
===================================================== */

.inner-content-section {

    padding: 85px 0;

    background: var(--white);
}


.inner-content-heading {

    max-width: 850px;
}


.inner-content-heading h2 {

    margin-top: 10px;

    color: var(--primary);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    letter-spacing: -1px;
}


.inner-content-heading h2 span {

    color: var(--green);
}


.inner-content-heading p {

    max-width: 760px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.9;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .inner-slider {

        height: 550px;

    }


    .inner-slide-content {

        max-width: 90%;

    }


    .inner-slide-content h1 {

        font-size: 46px;

        letter-spacing: -1px;

    }


    .inner-slide-content p {

        font-size: 16px;

        line-height: 1.7;

    }


    .inner-content-section {

        padding: 65px 0;

    }

}


@media (max-width: 480px) {

    .inner-slider {

        height: 600px;

    }


    .inner-slide-content h1 {

        font-size: 37px;

        letter-spacing: -0.5px;

    }


    .inner-slide-content p {

        font-size: 15px;

    }


    .inner-content-section {

        padding: 55px 0;

    }

}

/* =========================================================
   CR SLIDER
========================================================= */

.cr-slider {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.cr-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.cr-slide.active {
    display: block;
}

.cr-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================
   SLIDER BUTTONS
========================================================= */

.cr-prev,
.cr-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;

    font-size: 22px;
    cursor: pointer;

    z-index: 10;

    transition: all 0.3s ease;
}

.cr-prev {
    left: 20px;
}

.cr-next {
    right: 20px;
}

.cr-prev:hover,
.cr-next:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.05);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .cr-slider {
        height: 380px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .cr-slider {
        height: 280px;
        margin-top: 25px;
        border-radius: 8px;
    }

    .cr-prev,
    .cr-next {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .cr-prev {
        left: 10px;
    }

    .cr-next {
        right: 10px;
    }

}


/* =========================================================
   CR DOCUMENTS
========================================================= */

.cr-documents {
    padding: 70px 0;
    background: #f7f9f8;
}

.documents-heading {
    text-align: center;
    margin-bottom: 40px;
}

.documents-heading span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    letter-spacing: 1.5px;
}

.documents-heading h2 {
    margin: 0 0 12px;
    font-size: 34px;
    color: #222;
}

.documents-heading p {
    margin: 0 auto;
    max-width: 650px;
    color: #666;
    line-height: 1.7;
}


/* =========================================================
   PDF GRID
========================================================= */

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================================
   PDF CARD
========================================================= */

.pdf-card {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 30px;

    background: #ffffff;
    border-radius: 12px;

    border: 1px solid #e5e5e5;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   PDF ICON
========================================================= */

.pdf-icon {
    flex-shrink: 0;

    width: 65px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d32f2f;
    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    border-radius: 8px;
}


/* =========================================================
   PDF CONTENT
========================================================= */

.pdf-content {
    flex: 1;
}

.pdf-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #222;
}

.pdf-content p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.pdf-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdf-buttons a {
    display: inline-block;
    padding: 9px 17px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.pdf-view {
    background: #2e7d32;
    color: #ffffff;
}

.pdf-view:hover {
    background: #1b5e20;
}

.pdf-download {
    background: #eeeeee;
    color: #333;
}

.pdf-download:hover {
    background: #dddddd;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .pdf-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .cr-documents {
        padding: 50px 0;
    }

    .documents-heading h2 {
        font-size: 27px;
    }

    .pdf-card {
        padding: 22px;
        gap: 18px;
    }

    .pdf-icon {
        width: 55px;
        height: 65px;
        font-size: 15px;
    }

    .pdf-content h3 {
        font-size: 17px;
    }

}