:root {
    --container: 1180px;
    --text: #1d232a;
    --muted: #5f6670;
    --accent: rgb(161, 207, 88);
    --light: #f4f6f8;
    --border: #d8dde3;
    --footer: #12161d;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent;
    color: #ffffff;
}

.header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    position: relative;
}

.brand-mark {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
}

.main-nav a {
    opacity: 0.95;
    position: relative;
    padding-bottom: 8px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 2px solid rgb(161, 207, 88);
    transition: width 180ms ease;
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.22);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    border-bottom: 2px solid #ffffff;
}

.hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 560ms ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    filter: brightness(0.56);
}

.hero-slide video {
    width: 100%;
    height: 590px;
    object-fit: cover;
    filter: brightness(0.56);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: #ffffff;
    z-index: 2;
}

.hero-kicker {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(22px, 1.65vw, 30px);
    color: #f2c54c;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: heroPop 700ms ease forwards;
    animation-delay: 180ms;
}

.hero h1 {
    margin: 0;
    font-size: clamp(41px, 3vw, 57px);
    line-height: 1.15;
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: normal;
    opacity: 0;
    transform: translateY(24px);
    animation: heroPop 780ms ease forwards;
    animation-delay: 300ms;
}

.hero-indicators {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-indicator {
    width: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    cursor: pointer;
    padding: 0;
}

.hero-indicator.is-active {
    background: #ffffff;
}

@keyframes heroPop {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.section {
    padding: 28px 0;
}

.section-title {
    margin: 0 0 26px;
    font-size: 36px;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: rgb(161, 207, 88);
    text-transform: uppercase;
    line-height: 1.05;
}

.section-title::after {
    content: "";
    display: block;
    width: 230px;
    height: 4px;
    margin-top: 16px;
    background: linear-gradient(to right, rgb(161, 207, 88) 0 43%, #d7d7d7 43% 100%);
}

.section-subtitle {
    margin: -8px 0 28px;
    color: var(--muted);
}

.services {
    padding: 20px;
}

.services-full-width {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-grid--exact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}

.service-title-tile,
.service-card {
    position: relative;
    min-height: 220px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    overflow: hidden;
}

.service-title-tile {
    display: grid;
    place-items: center;
    background: #ffffff url("../img/world_contact.png") center / 90% no-repeat;
}

.service-title-box {
    width: 68%;
    background: #ffffff;
    border: 1px solid #ececec;
    text-align: center;
    padding: 22px 10px 16px;
}

.service-title-box h2 {
    margin: 0;
    color: rgb(161, 207, 88);
    font-size: clamp(28px, 2.1vw, 46px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.service-title-box span {
    display: inline-block;
    width: 86px;
    margin-top: 14px;
    border-bottom: 4px solid rgb(161, 207, 88);
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    display: grid;
    place-items: center;
    padding: 16px;
    text-align: center;
}

.service-overlay h3 {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(18px, 1.2vw, 30px);
    line-height: 1.15;
    font-weight: normal;
    max-width: 78%;
}

.service-hover-content {
    position: absolute;
    inset: 0;
    background: rgb(161, 207, 88);
    color: #ffffff;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 220ms ease;
    padding: 24px;
}

.service-card:hover .service-hover-content,
.service-card:focus-within .service-hover-content {
    opacity: 1;
}

.service-hover-content p {
    margin: 0;
    font-size: clamp(14px, 1vw, 22px);
    line-height: 1.24;
    font-weight: normal;
    max-width: 92%;
}

.read-more {
    font-size: clamp(13px, 0.9vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    font-weight: 700;
}

.clientele {
    background:
        url("../img/396-3965468_original-png-clip-art-file-triangle-svg-images.png") right center / 36% no-repeat,
        var(--light);
}

.client-slider {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
}

.client-slider-track {
    display: flex;
    width: max-content;
    animation: client-slide 45s linear infinite;
}

.client-slider:hover .client-slider-track {
    animation-play-state: paused;
}

.logo-card {
    min-height: 90px;
    width: 180px;
    border-right: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
}

.logo-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

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

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strength {
    background: #fbfbfb url("../img/world_contact.png") left top / 420px no-repeat;
}

.strength-card {
    border: 1px solid var(--border);
    background: #ffffff;
    padding: 24px 18px;
    min-height: 370px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.strength-icon {
    width: 74px;
    height: 74px;
    object-fit: contain;
    margin: 4px auto 14px;
}

.strength-card h3 {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.strength-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
}

.kpi-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.kpi-grid div {
    background: rgb(161, 207, 88);
    color: #fff;
    text-align: center;
    padding: 16px;
}

.kpi-grid strong {
    display: block;
    font-size: 34px;
}

.kpi-grid span {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
}

.text-panel {
    padding: 24px;
}

.text-panel p {
    color: var(--muted);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.sustainability {
    padding-top: 12px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sustainability-card {
    color: #fff;
    padding: 26px;
    min-height: 210px;
}

.sustainability-card.green {
    background: #198b3d;
}

.sustainability-card.brown {
    background: #643b23;
}

.sustainability-card h3 {
    margin-top: 0;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    border: 1px solid var(--border);
    text-align: center;
    padding-bottom: 16px;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.team-card h3 {
    margin: 12px 12px 6px;
    font-size: 17px;
}

.team-card p {
    margin: 0 12px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    margin-top: 30px;
    background: var(--footer);
    color: #dbe1ea;
    padding: 44px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.2fr 1.2fr;
    gap: 36px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid h4 {
    margin: 0 0 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.2;
}

.footer-grid p {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.45;
    color: #b8c0cb;
}

.footer-brand-col {
    max-width: 320px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
}

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

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

.footer-links a {
    color: #b8c0cb;
    font-size: 13px;
    line-height: 1.35;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-highlight {
    color: #ffffff;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    font-size: 13px;
    color: #b8c0cb;
}

.service-page .site-header {
    position: static;
    background:rgb(161, 207, 88);
}

.service-page .header-inner {
    /* min-height: 78px; */
}

.main-nav a::after {
    border-bottom-color: #6f9333;
}

.service-main {
    padding: 38px 0 48px;
    background: #f3f3f3;
}

.service-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
}

.service-sidebar {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    align-self: start;
}

.service-sidebar h3 {
    margin: 0;
    padding: 16px 20px;
    background: rgb(161, 207, 88);
    color: #ffffff;
    font-size: 18px;
    text-transform: none;
}

.service-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-sidebar li + li {
    border-top: 1px solid #eeeeee;
}

.service-sidebar a {
    display: block;
    padding: 12px 14px;
    font-size: 12px;
    color: #555555;
}

.service-sidebar a.is-active {
    background: rgb(161, 207, 88);
    color: #ffffff;
}

.service-content-area h1 {
    margin: 0 0 16px;
    color: rgb(161, 207, 88);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
}

.service-intro p {
    margin: 0 0 12px;
    font-size: 13px;
    color: #4d4d4d;
}

.service-intro img {
    width: 100%;
    border: 1px solid #d8d8d8;
    height: 220px;
    object-fit: cover;
}

.feature-title {
    margin: 12px 0 8px;
    font-weight: 600;
    color: #3f3f3f;
    font-size: 14px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 26px;
}

.service-feature-grid h4 {
    margin: 0 0 8px;
    font-size: 28px;
    color: rgb(161, 207, 88);
    font-weight: 400;
}

.service-feature-grid ul {
    margin: 0;
    padding-left: 18px;
}

.service-feature-grid li {
    font-size: 14px;
    color: #494949;
    margin-bottom: 4px;
}

.contact-page .site-header {
    position: static;
    background: rgb(161, 207, 88);
}

.contact-main {
    background: #f3f3f3;
    padding: 44px 0 56px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.contact-intro {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 24px;
}

.contact-intro .section-title {
    margin-bottom: 18px;
}

.contact-intro p {
    margin: 0 0 18px;
    color: #4f4f4f;
    font-size: 14px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
}

.contact-info-grid article {
    border: 1px solid #e6e6e6;
    padding: 14px;
    background: #fbfbfb;
}

.contact-info-grid h3 {
    margin: 0 0 6px;
    color: rgb(161, 207, 88);
    font-size: 16px;
}

.contact-info-grid p {
    margin: 0;
    font-size: 14px;
    color: #444444;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 24px;
}

.contact-form-card h2 {
    margin: 0 0 14px;
    color: rgb(161, 207, 88);
    font-size: 26px;
    font-weight: 500;
}

.contact-form-card label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #3e3e3e;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    background: #ffffff;
    padding: 10px 12px;
    margin-bottom: 12px;
    font: inherit;
    color: #303030;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-form-card button {
    border: 0;
    background: rgb(161, 207, 88);
    color: #ffffff;
    font: inherit;
    padding: 10px 18px;
    cursor: pointer;
}

.gallery-page .site-header {
    position: static;
    background: rgb(161, 207, 88);
}

.gallery-main {
    background: #f3f3f3;
    padding: 42px 0 56px;
}

.gallery-intro {
    margin: -8px 0 22px;
    color: #5a5a5a;
    font-size: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-card h3 {
    margin: 0;
    padding: 12px 14px;
    font-size: 15px;
    color: #4f4f4f;
    font-weight: 500;
}

.about-page .site-header,
.accreditations-page .site-header,
.careers-page .site-header {
    position: static;
    background: rgb(161, 207, 88);
}

.about-main,
.accreditations-main,
.careers-main {
    background: #f3f3f3;
    padding: 42px 0 56px;
}

.about-main .split-layout {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    grid-template-columns: 1fr;
    padding: 20px;
}

.page-intro {
    margin: -8px 0 22px;
    color: #555555;
    font-size: 14px;
}

.accreditation-grid,
.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.accreditation-grid article,
.careers-grid article,
.career-apply-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 18px;
}

.accreditation-grid h3,
.careers-grid h3,
.career-apply-box h3 {
    margin: 0 0 8px;
    color: rgb(161, 207, 88);
    font-size: 20px;
    font-weight: 500;
}

.accreditation-grid p,
.careers-grid li,
.career-apply-box p {
    margin: 0;
    color: #4d4d4d;
    font-size: 14px;
}

.careers-grid ul {
    margin: 0;
    padding-left: 18px;
}

.career-apply-box {
    margin-top: 16px;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid--exact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-overlay h3 {
        font-size: 22px;
    }

    .client-slider-track {
        animation-duration: 42s;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .strength-card {
        min-height: 300px;
    }

    .strength-card h3 {
        font-size: 20px;
    }

    .strength-card p {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        background: rgba(16, 22, 30, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.15);
        z-index: 40;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 8px 2px;
        font-size: 14px;
    }

    .service-grid,
    .strength-grid,
    .kpi-grid,
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .strength {
        background-size: 300px;
    }

    .service-grid--exact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-indicators {
        right: 12px;
        gap: 12px;
    }

    .logo-card {
        width: 160px;
        min-height: 84px;
    }

    .logo-card img {
        height: 52px;
    }

    .split-layout,
    .sustainability-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-intro {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .accreditation-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero,
    .hero-slide img,
    .hero-slide video {
        height: 420px;
        min-height: 420px;
    }

    .hero-overlay {
        align-items: center;
        text-align: center;
    }

    .hero-kicker {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .brand-mark {
        left: 10px;
        height: 80px;
        width: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-grid,
    .strength-grid,
    .kpi-grid,
    .client-slider,
    .team-grid {
        width: 100%;
    }

    .client-slider-track {
        animation-duration: 36s;
    }

    .logo-card {
        width: 145px;
        min-height: 78px;
        padding: 10px;
    }

    .logo-card img {
        height: 60px;
    }

    .service-grid--exact {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid h4 {
        font-size: 13px;
    }

    .footer-grid p,
    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-grid h4 {
        font-size: 22px;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .strength-card h3 {
        font-size: 20px;
    }

    .strength-card p {
        font-size: 14px;
    }
}
