@font-face {
    font-family: 'Inter';
    src: url('assets/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

:root {
    --primary: #1A3E6F;
    --accent: #BA9765;
    --dark: #111;
    --light: #F4F4F4;
    --white: #fff;
    --text: #333;

    --container-width: 1200px;
    --radius: 10px;
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    max-width: var(--container-width);
    margin: 0 auto;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-section {
    padding: 60px;
}

.py-section-vm {
    padding: 60px 0;
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-right {
    text-align: right;
}

.bg-light {
    background-color: var(--light);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-dark {
    background-color: var(--dark);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.w-full {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 5px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent);
}

.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: transparent;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 4px;
    bottom: 5px;
    width: 4px;
    background-color: var(--accent);
}

.section-title.center {
    padding-bottom: 10px;
}

.section-title.center::before {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    width: 60px;
    height: 4px;
}

.section-title.border-white::before {
    background-color: var(--white);
}

.section-title.border-accent::before {
    background-color: var(--accent);
}

.bg-primary .section-title,
.bg-accent .section-title,
.bg-dark .section-title {
    color: var(--white);
}

.bg-accent .section-title::before,
.bg-dark .section-title::before {
    background-color: var(--white);
}

.styled-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-main);
    font-weight: bold;
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.3, 0.0, 0.2, 1), opacity 0.4s ease;
    opacity: 1;
}

#site-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100px;
    padding-right: 20px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s;
}

.nav-link-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.lang-icon {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 750px;
    max-height: 760px;
    height: 117vh;
    display: flex;
    align-items: center;
    background: url('assets/image/BG\ Building\ 2.png') center/cover no-repeat;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 62, 111, 0.9) 0%, rgba(26, 62, 111, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .hero-title {
    color: var(--accent);
    padding-top: var(--header-height);
}

.hero-content .hero-subtitle {
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
}

.stats-box {
    position: absolute;
    bottom: -140px;
    right: 20px;
    background: var(--white);
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

.stat-item {
    padding: 30px 40px;
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border: none;
}

.stat-number {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.era-global {
    padding-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.profil-image {
    width: 100%;
    height: auto;
    max-height: 600px;
}

.profil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profil-content p {
    line-height: 1.6;
    font-size: 17px;
}

.profil-content a {
    margin-bottom: 15px;
    line-height: 1.6;
}

.profil-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.profil-points {
    margin-top: 150px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light);
    padding: 12px 6px;
    font-weight: 600;
    border-left: 4px solid var(--accent);
}

.point-item img {
    width: 24px;
    height: 24px;
}

.galeri-slider {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.slider-decoration-svg {
    position: absolute;
    top: 365px;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 755px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.relative-container {
    position: relative;
    z-index: 2;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.slider-wrapper .slide {
    display: none;
    width: 100%;
}

.slider-wrapper .slide.active {
    display: block;
}

.slider-wrapper .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tim-profesional {
    padding-bottom: 0;
    padding-top: 20px;
}

.tim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tim-content p {
    margin-bottom: 15px;
}

.tim-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.tim-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.point-item img {
    width: 24px;
    height: 24px;
}

.tim-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding-top: 0;
    padding-bottom: 0;
}

.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}

.vm-wrapper {
    display: flex;
    flex-direction: column;
}

.vm-card {
    background: var(--white);
    padding: 20px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vm-header img {
    width: 32px;
    height: 32px;
    margin-left: 10px;
}

.vm-header h3 {
    color: var(--primary);
    font-size: 22px;
}

.styled-list {
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 10px;
}

.visi-misi-image {
    display: flex;
}

.visi-misi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 604px;
    min-height: 604px;
}

@media (max-width: 992px) {
    .visi-misi-grid {
        grid-template-columns: 1fr;
    }

    .visi-misi-image {
        order: -1;
    }
}

.kantor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-placeholder {
    width: 100%;
    height: 230px;
    background: #ccc;
    margin-top: 0px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.kantor-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 290px;
}

.kantor-info h3 {
    font-size: 24px;
}

.kantor-info p {
    margin-top: 13px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-top: 10px;
}

.pelatihan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: stretch;
    margin-top: 20px;
}

.pelatihan-box {
    background: var(--white);
    padding: 15px;
}

.pelatihan-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.styled-list {
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 8px;
}

.pelatihan-image {
    position: relative;
    display: flex;
}

.pelatihan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-homebar {
    position: relative;
    bottom: -255px;
    left: 600px;
    width: 50%;
    height: 25px;
    background: linear-gradient(to right, #1f3c88, #c9a66b);
}

.image-bar {
    position: absolute;
    bottom: -15px;
    left: 59%;
    transform: translateX(-50%);
    width: 82.2%;
    height: 20px;
    background: linear-gradient(to right, #1f3c88, #c9a66b);
}

.produk-bar {
    position: relative;
    bottom: 73px;
    left: -80px;
    width: 50%;
    height: 25px;
    background: linear-gradient(to right, #1f3c88, #c9a66b);
}

.produk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.jasa-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.produk-image-collage {
    position: relative;
    width: 450px;
    height: 578px;
    margin: 0 auto;
    max-width: 100%;
}

.produk-image-pelatihan {
    position: relative;
    width: 580px;
    height: 580px;
    margin: 0 auto;
    max-width: 100%;
}

.pelatihan-item {
    position: absolute;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.collage-item {
    position: absolute;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.img-front-office {
    width: 250px;
    top: -30px;
    right: -20px;
    z-index: 1;
}

.img-security {
    width: 292px;
    top: 0px;
    left: 0;
    z-index: 2;
}

.img-cleaning {
    width: 247px;
    bottom: 0px;
    right: 19px;
    z-index: 3;
}

.img-pelatihan {
    width: 100%;
    top: 165px;
    left: 10px;
}

.sectors-grid-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.sectors-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 35%;
}

.center-asw-logo {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.center-text {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
}

.center-text::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: var(--accent);
}

.center-asw-logo img {
    width: 180px;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary);
}

.left-col .sector-item {
    justify-content: flex-start;
}

.right-col .sector-item {
    justify-content: flex-end;
    text-align: right;
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-icon img {
    width: 100%;
}

.sector-text {
    position: relative;
    display: inline-block;
    font-size: 18px;
}

.sector-text::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: var(--accent);
}

.right-col .sector-text::before {
    left: auto;
    right: -8px;
    flex-direction: row-reverse;
}

.left-col .indent {
    transform: translateX(100px);
}

.right-col .indent {
    transform: translateX(-100px);
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
}

.marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 8s linear infinite;
    gap: 50px;
    align-items: center;
}

.marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 8s linear infinite;
    gap: 50px;
    align-items: center;
}

.marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 8s linear infinite;
    gap: 50px;
    align-items: center;
}

.marquee-content img {
    height: 60px;
    object-fit: contain;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-51%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.benefit-list {
    display: grid;
    gap: 15px;
}

.benefit-list li {
    position: relative;
    padding-left: 20px;
}

.benefit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.testimonial-strip {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-strip img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.testimonial-content {
    position: absolute;
    right: 10%;
    max-width: 500px;
    color: var(--white);
    z-index: 2;
    font-size: 16px;
    line-height: 1.8;
}

.cta-section {
    position: relative;
    background: url('assets/image/Career\ 1.png') center/cover no-repeat;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.footer-container {
    padding: 40px 20px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-size: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fb-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {


    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        display: none;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }


    .header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .header-container {
        justify-content: end;
        gap: 20px;
    }

    .header-right {
        position: absolute;
        left: 75%;
        transform: translateX(50%);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-right .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: 20px;
    }

    .lang-switch span {
        font-size: 12px;
    }

    .lang-icon {
        width: 16px;
    }

    .max-w-lg p {
        font-size: 13px;
    }

    .profil-points {
        margin-top: 30px;
    }

    .stats-box {
        flex-wrap: wrap;
        position: relative;
        bottom: 0;
        top: 70px;
        right: 0;
    }

    .stat-item {
        flex: 1;
        min-width: 30%;
        border-bottom: 1px solid #eee;
    }

    .stat-item {
        padding: 10px 10px;
        text-align: center;
        border-right: 1px solid #eee;
    }

    .galeri-slider {
        position: relative;
        padding: 80px 0;
        overflow: hidden;
    }

    .slider-wrapper {
        max-width: 800px;
    }

    .slider-decoration-svg {
        position: absolute;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 1050px;
        height: auto;
        z-index: 0;
        pointer-events: none;
    }

    .tim-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tim-points {
        gap: 12px;
        margin-top: 20px;
    }

    .jasa-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
        font-size: 25px;
    }

    .profil-grid {
        grid-template-columns: 1fr;
    }

    .profil-image {
        order: -1;
    }

    .kantor-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-placeholder {
        height: 280px;
    }

    .kantor-info {
        height: auto;
        gap: 20px;
    }

    .kantor-info h3 {
        font-size: 22px;
    }

    .profil-grid,
    .tim-grid,
    .visi-misi-grid,
    .kantor-grid,
    .pelatihan-grid,
    .produk-grid {
        grid-template-columns: 1fr;
    }

    .pelatihan-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pelatihan-image {
        order: -1;
    }

    .pelatihan-image img {
        max-height: 400px;
    }

    .image-bar {
        bottom: -12px;
        left: 57.5%;
        transform: translateX(-50%);
        width: 85%;
        height: 18px;
    }

    .image-homebar,
    .produk-bar {
        display: none;
    }

    .produk-image-collage {
        width: 300px;
        height: 400px;
        margin: 30px auto 0;
    }

    .produk-image-pelatihan {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
    }

    .img-front-office {
        width: 180px;
        top: -50px;
        right: -16;
    }

    .img-security {
        width: 200px;
        top: -20px;
        left: 0;
    }

    .img-cleaning {
        width: 180px;
        bottom: -20px;
        right: 10px;
    }

    .img-pelatihan {
        width: 100%;
        top: 0;
        left: 0;
    }

    .image-homebar,
    .produk-bar {
        display: none;
    }

    .tim-image img {
        height: 40%;
        width: 40%;
        object-fit: cover;
        margin-left: 30%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .center-asw-logo img {
        width: 150px;
    }

    .benefit-list {
        gap: 12px;
    }

    .benefit-list li {
        font-size: 15px;
        padding-left: 18px;
    }

    .testimonial-strip img {
        height: 350px;
    }

    .testimonial-content {
        right: 5%;
        max-width: 400px;
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 30px;
    }

    .max-w-lg {
        max-width: 400px;
    }

    .py-section {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-container {
        display: flex;
        justify-content: end;
        align-items: center;
        height: 100%;
    }

    .galeri-slider {
        position: relative;
        padding: 55px 0;
        overflow: hidden;
    }

    .slider-decoration-svg {
        position: absolute;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 250px;
        height: auto;
        z-index: 0;
        pointer-events: none;
    }

    .era-global {
        padding-top: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid>div {
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .profil-points {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .galeri-slider {
        padding: 40px 0;
    }

    .slider-wrapper {
        max-width: 100%;
    }

    .slider-decoration-svg {
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        max-width: 350px;
    }

    .tim-profesional {
        padding-bottom: 0;
    }

    .tim-grid {
        gap: 20px;
    }

    .tim-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tim-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .tim-item {
        padding: 12px;
        font-size: 14px;
    }

    .tim-image img {
        height: 70%;
        width: 70%;
        object-fit: cover;
        margin-left: 15%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .kantor-grid {
        gap: 20px;
    }

    .map-placeholder {
        height: 220px;
    }

    .kantor-info {
        height: auto;
        gap: 15px;
    }

    .kantor-info h3 {
        font-size: 20px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item img {
        width: 20px;
        height: 20px;
    }

    .pelatihan-grid {
        gap: 20px;
    }

    .pelatihan-box {
        padding: 12px;
    }

    .pelatihan-box p {
        font-size: 14px;
        line-height: 1.5;
    }

    .styled-list {
        padding-left: 18px;
    }

    .styled-list li {
        font-size: 14px;
    }

    .pelatihan-image img {
        max-height: 250px;
    }

    .image-bar {
        bottom: -7px;
        width: 82%;
        height: 15px;
        left: 59.1%;
    }

    .image-homebar,
    .produk-bar {
        display: none;
    }

    .produk-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .jasa-columns {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .produk-image-collage {
        position: relative;
        width: 450px;
        height: 578px;
        margin: 0 auto;
        max-width: 100%;
    }

    .produk-image-pelatihan {
        position: relative;
        width: 580px;
        height: 580px;
        margin: 0 auto;
        max-width: 100%;
    }

    .pelatihan-item {
        position: absolute;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    }

    .collage-item {
        position: absolute;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    }

    .img-front-office {
        width: 50%;
        top: 20px;
        right: 100px;
        z-index: 1;
    }

    .img-security {
        width: 50%;
        top: 80px;
        left: 0;
        z-index: 2;
    }

    .img-cleaning {
        width: 50%;
        bottom: 10px;
        right: 134px;
        z-index: 3;
    }

    .img-pelatihan {
        width: 100%;
        top: 165px;
        left: 10px;
    }

    .sectors-grid-layout {
        flex-direction: column;
        gap: 25px;
    }

    .sectors-col {
        width: 100%;
        gap: 15px;
    }

    .center-asw-logo {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .sector-item {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .right-col .sector-item {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .right-col .sector-item .sector-icon {
        order: -1;
    }

    .right-col .sector-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .sector-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .sector-text {
        font-size: 15px;
    }

    .sector-text::before {
        left: -8px;
        right: auto;
    }

    .right-col .sector-text::before {
        left: -8px;
        right: auto;
    }

    .left-col .indent,
    .right-col .indent {
        transform: none;
    }

    .sector-item {
        padding: 10px;
        border-radius: 8px;
        background: #f8f8f8;
    }

    .map-placeholder {
        height: 235px;
    }

    .benefit-list {
        gap: 10px;
    }

    .benefit-list li {
        font-size: 14px;
        padding-left: 16px;
    }

    .testimonial-strip {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 280px;
    }

    .testimonial-strip img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .testimonial-strip::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .testimonial-content {
        position: absolute;
        z-index: 3;
        padding: 30px;
        max-width: 90%;
        margin: 0 auto;
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .testimonial-content * {
        text-align: center;
        font-size: 12px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        display: none;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-right {
        position: absolute;
        left: 75%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-right .btn {
        display: none;
    }

    .lang-switch span {
        font-size: 12px;
    }

    .lang-icon {
        width: 16px;
    }

    .max-w-lg p {
        font-size: 13px;
    }

    .max-w-lg {
        max-width: 400px;
    }

    .footer-contact,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .nav-link-header {
        display: none;
    }

    html {
        background-color: var(--white);
    }

    body {
        max-width: 1200px;
        margin: 0 auto;
        background-color: var(--white);
        box-shadow: none;
        position: relative;
    }

    #site-header {
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 1200px;
    }
}

@media (max-width: 380px) {
    .img-front-office {
        width: 45%;
        top: 20px;
        right: 135px;
        z-index: 1;
    }

    .img-security {
        width: 45%;
        top: 70px;
        left: -10;
        z-index: 2;
    }

    .img-cleaning {
        width: 45%;
        bottom: 70px;
        right: 165px;
        z-index: 3;
    }
}