        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1f4e79;
            --secondary-color: #d4af37;
            --primary-deep: #163a5b;
            --azure-soft: #2b628f;
            --embedded-form-height: 1167px;
            --embedded-form-width: 604px;
            --left-stack-gap: 27px;
            --white: #ffffff;
            --black: #000000;
            --text-dark: #000000;
            --text-light: #2d2d2d;
            --bg-light: #ffffff;
            --border-color: #ddd;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, sans-serif;
            font-size: 17px;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: #fcfdff;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image: url("aset/logo biru.png");
            background-repeat: repeat;
            background-position: 0 0;
            background-size: 220px 220px;
            opacity: 0.038;
            filter: grayscale(1) brightness(1.55);
            z-index: 2;
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        /* ===== HEADER & NAVIGATION ===== */
        header {
            background: linear-gradient(115deg, var(--primary-deep) 0%, var(--primary-color) 60%, var(--azure-soft) 100%);
            box-shadow: 0 6px 24px rgba(0, 20, 60, 0.35);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            color: white;
            padding: 12px 28px;
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-rows: auto auto;
            gap: 12px;
            align-items: center;
            position: relative;
        }

        .header-row {
            display: none;
        }

        .header-row-1 {
            display: none;
        }

        .header-row-2 {
            display: none;
        }

        .header-logo-img {
            grid-column: 1;
            grid-row: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-left-column {
            display: none;
        }

        .header-company-name {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            font-size: 32px;
            font-weight: bold;
            padding: 0;
            margin: 0;
        }

        .header-logo-title {
            grid-column: 1;
            grid-row: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-title {
            font-size: 32px;
            font-weight: bold;
        }

        .header-tagline {
            grid-column: 2;
            grid-row: 2;
            align-self: center;
            color: rgba(255, 255, 255, 0.92);
            font-size: 13px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1.3;
            padding: 0;
            margin: 0;
        }

        .header-right-column {
            display: none;
            flex-grow: 1;
        }

        .header-left {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex-grow: 0;
        }

        .logo-with-company {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-texts {
            display: flex;
            flex-direction: column;
            gap: 0;
            line-height: 1.15;
        }

        .logo-img {
            width: 96px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
            margin-top: 0;
            flex-shrink: 0;
        }

        .logo-title {
            color: var(--secondary-color);
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1;
        }

        .header-company-name {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .header-tagline {
            color: var(--secondary-color);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
            line-height: 1.1;
            margin-top: 2px;
        }

        .logo-subtitle {
            color: rgba(255, 255, 255, 0.92);
            font-size: 14px;
            letter-spacing: 1.6px;
            text-transform: uppercase;
        }

        .nav-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: flex-end;
            align-items: center;
            position: absolute;
            top: 54px;
            right: 28px;
            margin-left: auto;
        }

        .nav-btn {
            background: transparent;
            color: var(--secondary-color);
            border: none;
            padding: 4px 0;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s;
            white-space: nowrap;
            border-bottom: 2px solid transparent;
        }

        .nav-btn:hover {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }

        .more-nav {
            position: relative;
        }

        .more-nav-menu {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            min-width: 210px;
            background: var(--primary-deep);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 10px 24px rgba(0, 20, 60, 0.35);
            z-index: 1100;
            padding: 8px 0;
        }

        .more-nav-menu.is-open {
            display: block;
        }

        .more-nav-item {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--secondary-color);
            text-align: left;
            padding: 10px 14px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

        .more-nav-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        nav {
            display: none;
            background: var(--primary-deep);
            padding: 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            border-bottom: 2px solid var(--secondary-color);
            flex-direction: column;
        }

        nav.is-open {
            display: flex;
        }

        .mobile-nav-toggle {
            display: none;
            background: var(--primary-deep);
            color: white;
            border: none;
            padding: 10px 16px;
            font-weight: 600;
            letter-spacing: 0.4px;
            cursor: pointer;
            width: 100%;
            text-align: left;
        }

        nav a {
            color: var(--secondary-color);
            text-decoration: none;
            padding: 12px 0;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
            font-size: 14px;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        /* ===== SECTIONS ===== */
        section {
            padding: 80px 40px;
        }

        section.hidden {
            display: none;
        }

        h1 {
            font-size: 48px;
            color: var(--black);
            margin-bottom: 20px;
        }

        h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 30px;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 15px;
        }

        h3 {
            font-size: 26px;
            color: var(--secondary-color);
            margin-top: 20px;
            margin-bottom: 15px;
        }

        h4 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-top: 16px;
            margin-bottom: 12px;
        }

        p {
            color: var(--black);
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.8;
        }

        .about-intro,
        .about-intro p,
        .service-item p,
        .qna-item p,
        .team-card p,
        .value-card p,
        .contact-item p,
        .contact-item a,
        .contact-item strong,
        .excellence-intro,
        .team-quote p,
        .footer-content p,
        .hero-left p,
        .hero-right p,
        .hero-middle li {
            font-size: 18px;
            line-height: 1.75;
        }

        /* ===== HOME SECTION ===== */
        #home {
            background: #fcfdff;
            text-align: left;
            padding: 56px 40px;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 18px;
            align-items: stretch;
            max-width: 1120px;
            margin: 0 auto;
            position: relative;
        }

        .hero-card {
            position: relative;
            min-height: 440px;
            padding: 42px 34px;
            box-shadow: 0 18px 35px rgba(0, 30, 74, 0.12);
        }

        .hero-left {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.7);
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            backdrop-filter: blur(2px);
        }

        .hero-left h2 {
            color: var(--secondary-color);
            font-size: 40px;
            line-height: 1.06;
            margin-bottom: 18px;
            border: none;
            padding: 0;
            text-transform: uppercase;
        }

        .hero-left p {
            color: #2f2f2f;
            max-width: 44ch;
            line-height: 1.72;
            margin-bottom: 18px;
        }

        .hero-left strong {
            color: #111;
            font-size: 30px;
            line-height: 1.18;
            text-transform: uppercase;
            display: block;
            margin-bottom: 24px;
        }

        .hero-right {
            background: linear-gradient(145deg, #5ab0ff 0%, var(--primary-color) 57%, var(--primary-deep) 100%);
            border-top: 4px solid rgba(255, 255, 255, 0.28);
            border-left: 3px solid rgba(255, 255, 255, 0.24);
            color: #eaf5ff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: 34px;
        }

        .hero-right h3 {
            color: var(--secondary-color);
            font-size: 42px;
            margin: 0 0 10px 0;
            line-height: 1.05;
            text-transform: uppercase;
        }

        .hero-right h4 {
            font-size: 20px;
            color: #f2f8ff;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-right p {
            color: rgba(240, 247, 255, 0.93);
            margin-bottom: 14px;
            line-height: 1.66;
        }

        .hero-right ul {
            list-style: none;
            margin: 0 0 20px 0;
            padding: 0;
        }

        .hero-right li {
            color: rgba(237, 246, 255, 0.95);
            position: relative;
            padding-left: 18px;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .hero-right li::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 9px;
        }

        .hero-icons {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin-top: 6px;
            margin-bottom: 18px;
        }

        .hero-icon-item {
            text-align: center;
            font-size: 11px;
            color: #eaf3ff;
            letter-spacing: 0.5px;
        }

        .hero-icon-circle {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            margin: 0 auto 8px auto;
            background: rgba(255, 215, 0, 0.22);
            border: 1px solid rgba(255, 215, 0, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
        }

        .hero-privacy-link {
            color: #fff8c5;
            font-size: 13px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            border-top: 1px solid rgba(255, 255, 255, 0.35);
            padding-top: 10px;
            align-self: flex-start;
        }

        .hero-privacy-link:hover {
            color: var(--secondary-color);
        }

        .cta-button {
            background: linear-gradient(130deg, #ffe98e 0%, var(--secondary-color) 65%, #f0c900 100%);
            color: #202020;
            border: none;
            padding: 10px 18px;
            font-size: 15px;
            border-radius: 0;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
            margin-top: 8px;
            text-transform: uppercase;
            white-space: nowrap;
            box-shadow: 0 8px 18px rgba(107, 87, 0, 0.22);
        }

        .cta-button:hover {
            filter: brightness(1.04);
            transform: translateY(-1px);
            box-shadow: 0 12px 20px rgba(107, 87, 0, 0.28);
        }

        .hero-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0));
            margin-top: 6px;
        }

        .hero-middle {
            background: white;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 4px solid var(--secondary-color);
        }

        .hero-middle h2 {
            font-size: 28px;
            color: var(--black);
            margin: 0 0 20px 0;
            border: none;
            padding: 0;
            font-weight: bold;
            line-height: 1.3;
        }

        .hero-middle h3 {
            font-size: 20px;
            color: var(--black);
            font-weight: 600;
            margin: 15px 0 10px 0;
        }

        .hero-middle ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hero-middle li {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .hero-middle li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .hero-image {
            background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            display: none;
        }

        .tagline {
            font-size: 20px;
            color: var(--black);
            font-weight: 600;
            margin-bottom: 30px;
            display: none;
        }

        .description {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 40px;
            display: none;
        }

        /* ===== ABOUT US SECTION ===== */
        #about {
            background: #ffffff;
        }

        #about h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 18px;
            color: var(--primary-color);
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .about-divider {
            width: 100%;
            height: 1px;
            background: rgba(31, 78, 121, 0.22);
            margin: 0 0 28px 0;
        }

        .about-intro {
            width: 100%;
            max-width: none;
            margin: 28px 0 0;
            padding: 24px 30px;
            text-align: left;
            color: #111;
            font-family: Arial, sans-serif;
            font-size: 18px;
            line-height: 1.55;
            letter-spacing: 0;
            background: #ffffff;
            border-left: 4px solid var(--secondary-color);
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(22, 58, 91, 0.08);
        }

        .about-intro p {
            margin-bottom: 20px;
            text-wrap: pretty;
            color: #111;
            font-size: 18px;
            line-height: 1.75;
        }

        .about-intro p:first-child {
            color: #111;
            font-weight: 400;
        }

        .about-intro p:nth-child(2) {
            color: #111;
            font-weight: 400;
        }

        .about-intro p:last-child {
            color: #111;
        }

        .about-intro p:last-child {
            margin-bottom: 0;
        }

        .about-intro strong {
            color: #111;
            font-weight: 700;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            margin-top: 28px;
            align-items: stretch;
        }

        .about-item {
            text-align: center;
            height: 340px;
            background: rgba(255, 255, 255, 0.95);
            padding: 12px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            overflow: hidden;
            border: 1px solid rgba(31, 78, 121, 0.12);
        }

        .about-item img {
            width: 100%;
            height: 240px;
            object-fit: contain;
            object-position: center;
            display: block;
            margin-bottom: 10px;
            background: #ffffff;
            border-radius: 2px;
        }

        .about-gold-title {
            color: var(--secondary-color);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.2;
            line-clamp: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .about-blue-title {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .about-item p {
            color: #111;
            margin: 0;
            line-height: 1.55;
            font-size: 18px;
        }

        .about-image-section {
            width: 100%;
            margin: 28px auto;
            text-align: center;
            padding: 0 40px;
            display: flex;
            justify-content: center;
        }

        .about-section-image {
            max-width: 100%;
            width: 100%;
            height: auto;
            object-fit: contain;
            border: 1px solid rgba(31, 78, 121, 0.15);
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 20, 60, 0.1);
        }

        @media (max-width: 768px) {
            .about-image-section {
                padding: 0 20px;
            }
        }

        /* WhatsApp icon sizing inside contact box (global) */
        .contact-info-box .info-item {
            display: flex;
            align-items: flex-start; /* align icon with first line of text for multi-line items */
            gap: 10px;
        }

        .contact-info-box .info-item .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px; /* reserve consistent space for the icon */
        }

        .contact-info-box .info-item .icon img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            display: inline-block;
        }

        /* Give header, clients and footer logos a subtle gold tint (global) */
        .header-logo-img img,
        .clients-logo-section .client-item img,
        .footer-branding img {
            transition: filter 220ms ease, transform 220ms ease;
            filter: sepia(0.45) saturate(2.2) hue-rotate(12deg) brightness(0.98);
        }

        .clients-logo-section .client-item img:hover,
        .header-logo-img img:hover,
        .footer-branding img:hover {
            transform: translateY(-3px) scale(1.02);
            filter: sepia(0.55) saturate(2.6) hue-rotate(12deg) brightness(1.03);
        }

        /* Exclude the primary blue logo from gold tint (keep original colors) */
        .header-logo-img img.logo-img,
        .footer-branding img.footer-logo-img {
            filter: none !important;
            transition: transform 220ms ease; /* keep hover transform but no color filter */
        }

        /* ===== SERVICES SECTION ===== */
        #services {
            background: var(--bg-light);
        }

        #services h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 18px;
            color: var(--primary-color);
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        #excellence h2,
        #clients h2,
        #vision h2,
        #documentation h2,
        #contact h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 18px;
            color: var(--primary-color);
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .services-divider {
            width: 100%;
            height: 1px;
            background: rgba(31, 78, 121, 0.22);
            margin: 0 0 28px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .service-item {
            text-align: center;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 14px 14px 18px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
        }

        .service-item:hover {
            box-shadow: 0 8px 22px rgba(0,0,0,0.10);
            transform: translateY(-4px);
        }

        .service-item img {
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            object-fit: cover;
            display: block;
            margin-bottom: 10px;
            background: #f1f1f1;
            border-radius: 2px;
        }

        .service-gold-title {
            color: var(--secondary-color);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-blue-title {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .service-item p {
            color: #111;
            margin: 0;
            line-height: 1.55;
            font-size: 20px;
            text-align: justify;
        }

/* ===== CONTACT SECTION ===== */
#contact {
    background: #ffffff;
    padding: 80px 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

/* SISI KIRI: KARTU GELAP */
.contact-info-card {
    background: linear-gradient(135deg, #162841 0%, #2ab9fc 100%) !important;
    border-radius: 12px;
    padding: 50px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card-title {
    color: #e5c07b !important;
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
}

.contact-card-desc {
    color: #e5c07b !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-contact-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white !important;
    text-decoration: none;
    width: fit-content;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    background: transparent;
}

.btn-contact-outline:hover {
    background: white !important;
    color: #162841 !important;
}

/* Kotak Alamat di Sisi Kiri */
.contact-info-box {
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 24px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    font-size: 18px;
    margin-top: 2px;
}

.info-item p {
    margin: 0;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.6;
}

/* Maps Wrapper */
.contact-map-wrapper {
    margin-top: 25px;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@supports not (aspect-ratio: 1 / 1) {
    .contact-map-wrapper {
        height: 0;
        padding-top: 100%;
        position: relative;
    }

    .contact-map-wrapper iframe {
        position: absolute;
        inset: 0;
    }
}
.contact-form-side {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.form-side-title {
    color: #1a367e !important;
    font-size: 36px !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

.form-subtext {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-wrapper {
    width: 100%;
}

/* RESPONSIVE: Diubah ke 768px agar di layar laptop kecil tidak menumpuk ke bawah */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-card {
        padding: 40px 25px;
    }
}

        /* ===== TESTIMONIALS SECTION ===== */
        #testimonials {
            background: var(--bg-light);
        }

        #testimonials h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 18px;
            color: var(--primary-color);
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .testimonials-divider {
            width: 100%;
            height: 1px;
            background: rgba(31, 78, 121, 0.22);
            margin: 0 0 28px 0;
        }

        .testimonial-carousel {
            position: relative;
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr) 44px;
            align-items: center;
            gap: 14px;
        }

        .testimonial-viewport {
            overflow: hidden;
            width: 100%;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.45s ease;
            will-change: transform;
        }

        .testimonial-slide {
            min-width: 100%;
        }

        .testimonial-card {
            background: white;
            padding: 16px 16px 18px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-top: 4px solid var(--secondary-color);
            text-align: center;
            max-width: 920px;
            margin: 0 auto;
        }

        .testimonial-card img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
            margin-bottom: 16px;
            border-radius: 2px;
            background: #f1f1f1;
        }

        .testimonial-content {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .testimonial-source {
            font-weight: 600;
            color: var(--primary-color);
            font-style: normal;
        }

        .testimonial-slide-title {
            color: var(--secondary-color);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .testimonial-slide-subtitle {
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: none;
            background: rgba(31, 78, 121, 0.35);
            cursor: pointer;
            padding: 0;
            transition: all 0.25s ease;
        }

        .testimonial-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .testimonial-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: var(--primary-color);
            color: white;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(31, 78, 121, 0.24);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .testimonial-arrow:hover {
            background: var(--primary-deep);
            transform: translateY(-1px);
        }

        .testimonial-arrow:focus-visible,
        .testimonial-dot:focus-visible {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }

        /* ===== CLIENTS SECTION ===== */
        .clients-divider {
            width: 100%;
            height: 1px;
            background: rgba(31, 78, 121, 0.22);
            margin: 0 0 28px 0;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-top: 24px;
        }

        #client-segments-title {
            text-align: center;
            color: var(--primary-color);
        }

        #client-segments-desc {
            color: #111;
        }

        #team-title {
            text-align: center;
            color: var(--primary-color);
        }

        #clients h2 {
            text-align: center;
            color: var(--primary-color);
        }

        .clients-carousel {
            overflow: hidden;
            width: 100%;
            margin-top: 20px;
        }

        .clients-track {
            display: flex;
            gap: 18px;
            width: max-content;
            animation: clients-scroll 28s linear infinite;
            padding: 4px 0;
        }

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

        .client-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 20px;
            border-radius: 8px;
            height: 120px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        #clients .client-item {
            flex: 0 0 180px;
        }

        .client-item:hover {
            box-shadow: 0 4px 16px rgba(31, 78, 121, 0.15);
            transform: translateY(-2px);
        }

        .client-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @keyframes clients-scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(calc(-198px * 10));
            }
        }

        /* ===== QNA SECTION ===== */
        #qna {
            background: var(--white);
        }

        #qna h2 {
            text-align: center;
            border-bottom: none;
            margin-bottom: 18px;
            color: var(--primary-color);
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .qna-divider {
            width: 100%;
            height: 1px;
            background: rgba(31, 78, 121, 0.22);
            margin: 0 0 28px 0;
        }

        .qna-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .qna-item {
            text-align: center;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 14px 14px 18px;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
        }

        .qna-item img {
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            object-fit: cover;
            display: block;
            margin-bottom: 10px;
            background: #f1f1f1;
            border-radius: 2px;
        }

        .qna-gold-title {
            color: var(--secondary-color);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .qna-blue-title {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .qna-item p {
            color: #111;
            margin: 0;
            line-height: 1.55;
            font-size: 18px;
        }

        /* ===== CLIENTS SECTION ===== */
        #clients {
            background: white;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 28px;
            align-items: center;
            justify-items: center;
        }

        .clients-segments {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }

        .client-segment {
            border: 1px solid rgba(31, 78, 121, 0.18);
            background: linear-gradient(135deg, rgba(31, 78, 121, 0.05), rgba(212, 175, 55, 0.08));
            color: #173853;
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 18px;
            font-weight: 600;
        }

        .clients-logo-section {
            margin-top: 34px;
        }

        .clients-logo-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .client-logo {
            width: 160px;
            min-height: 160px;
            background: linear-gradient(145deg, #ffffff 0%, #f4f7fb 100%);
            border-radius: 8px;
            border: 1px solid rgba(31, 78, 121, 0.12);
            padding: 18px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s;
            cursor: default;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }

        .client-logo-mark {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-deep), var(--primary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .client-logo:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        /* ===== EXCELLENCE SECTION ===== */
        #excellence {
            background: var(--bg-light);
        }

        .excellence-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .excellence-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .excellence-item h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .excellence-intro {
            max-width: none;
            margin-top: 10px;
            margin-bottom: 26px;
            color: #111;
            text-align: center;
            font-size: 18px;
        }

        .team-section {
            background: #ffffff;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            margin-top: 28px;
        }

        .team-card {
            background: linear-gradient(135deg, rgba(31, 78, 121, 0.05) 0%, rgba(212, 175, 55, 0.08) 100%);
            border: 1px solid rgba(31, 78, 121, 0.12);
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .team-card h3 {
            margin-top: 0;
            color: var(--secondary-color);
            font-size: 24px;
        }

        .team-card p {
            margin-bottom: 0;
            color: #111;
        }

        .team-quote {
            margin-top: 22px;
            background: linear-gradient(120deg, var(--primary-deep) 0%, var(--primary-color) 100%);
            color: white;
            padding: 24px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 24px rgba(0, 20, 60, 0.16);
        }

        .team-quote p {
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 10px;
        }

        .team-quote strong {
            color: var(--secondary-color);
            font-size: 20px;
        }

        /* ===== WHY CHOOSE US ===== */
        #vision {
            background: #ffffff;
        }

        #vision-title {
            text-align: center;
            border: none;
            margin-bottom: 26px;
            color: var(--primary-color);
            text-transform: none;
        }

        .why-choose-wrap {
            width: 100%;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(31, 78, 121, 0.16);
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            padding: 14px 14px 18px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .why-card:hover {
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .why-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            display: block;
            margin-bottom: 10px;
            border-radius: 2px;
            background: #f1f1f1;
        }

        .why-card h3 {
            margin-top: 2px;
            margin-bottom: 14px;
            color: var(--secondary-color);
            text-align: center;
            font-size: 32px;
            font-weight: 700;
        }

        .why-card p {
            margin: 0;
            color: #111;
            font-size: 20px;
            line-height: 1.55;
            text-align: justify;
        }

        /* ===== DOCUMENTATION SECTION ===== */
        #documentation {
            background: var(--bg-light);
        }

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .doc-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .doc-item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-8px);
        }

        .doc-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .doc-item.is-hidden {
            display: none;
        }

        .docs-more-wrap {
            margin-top: 22px;
            display: flex;
            justify-content: center;
        }

        .docs-more-btn {
            background: var(--primary-color);
            color: var(--secondary-color);
            border: 1px solid var(--secondary-color);
            padding: 10px 26px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.4px;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .docs-more-btn:hover {
            background: var(--primary-deep);
        }

        /* ===== FOOTER ===== */
    
footer {
    background: linear-gradient(120deg, var(--primary-deep) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-img {
    width: 100px; /* Ukuran proporsional */
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.footer-company-name {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #d4af37 !important;
    margin: 0 0 5px 0 !important;
    border: none !important; /* Hilangkan garis bawah H2 global */
    padding: 0 !important;
    text-align: center !important;
    letter-spacing: 1px;
}

.footer-tagline-gold {
    color: #d4af37; /* Warna Gold sesuai website */
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.footer-thanks-message p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
}

#footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-left h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 968px) {
            #home {
                padding: 44px 24px;
            }

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

            .hero-card {
                min-height: auto;
                padding: 30px 24px;
            }

            .hero-right {
                margin-top: 0;
            }

            .hero-left strong {
                font-size: 24px;
            }

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

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

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

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

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

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

            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                padding: 12px 16px;
                grid-template-columns: auto 1fr;
                grid-template-rows: auto auto;
                gap: 10px;
            }

            .header-row {
                display: none;
            }

            .header-left-column {
                display: none;
            }

            .header-right-column {
                display: none;
            }

            .header-logo-img {
                grid-column: 1;
                grid-row: 1;
            }

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

            .header-logo-title {
                grid-column: 1;
                grid-row: 2;
                margin-top: 4px;
            }

            .logo-title {
                font-size: 16px;
            }

            .header-company-name {
                grid-column: 2;
                grid-row: 1;
                font-size: 13px;
            }

            .header-tagline {
                grid-column: 2;
                grid-row: 2;
                font-size: 9px;
                letter-spacing: 0.6px;
                margin-top: 2px;
            }

            .nav-buttons {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }

            nav a {
                padding: 10px 0;
            }

            section {
                padding: 50px 20px;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .hero-left h2 {
                font-size: 30px;
            }

            .hero-right h3 {
                font-size: 34px;
            }

            .testimonial-carousel {
                grid-template-columns: 36px minmax(0, 1fr) 36px;
                gap: 10px;
            }

            .testimonial-arrow {
                width: 36px;
                height: 36px;
                font-size: 24px;
            }

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

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .why-card h3 {
                font-size: 28px;
            }

            .why-card p {
                font-size: 19px;
            }

            .contact-info {
                padding: 28px 20px;
            }

            .contact-highlight {
                padding: 22px 20px;
            }

            .contact-highlight-lead {
                font-size: 22px;
            }

            .contact-highlight-brand {
                font-size: 24px;
            }

            .contact-highlight-address,
            .contact-highlight-lines {
                font-size: 18px;
            }

            .contact-visual {
                min-height: 260px;
            }

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

            .contact-side-column {
                width: 100%;
                min-height: auto;
            }

            .map-column {
                height: auto;
                grid-template-rows: auto auto;
            }

            .office-photo-box,
            .map-frame {
                aspect-ratio: 1 / 1;
                height: auto;
            }

            .form-column {
                width: 100%;
                height: auto;
            }

            .form-column > iframe {
                min-height: var(--embedded-form-height);
            }

            .form-heading h2 {
                text-align: center;
            }

            .about-intro {
                font-size: 18px;
                line-height: 1.55;
                padding: 20px 18px;
            }

            .service-item p,
            .qna-item p,
            .team-card p,
            .value-card p,
            .contact-item p,
            .contact-item a,
            .contact-item strong,
            .excellence-intro,
            .team-quote p,
            .footer-content p,
            .hero-left p,
            .hero-right p,
            .hero-middle li,
            .about-intro p {
                font-size: 18px;
                line-height: 1.68;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .client-item {
                height: 100px;
                padding: 16px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 22px;
            }

            .hero-left h2 {
                font-size: 18px;
            }

            .hero-left strong {
                font-size: 20px;
            }

            .hero-right h3 {
                font-size: 28px;
            }

            .testimonial-carousel {
                grid-template-columns: 32px minmax(0, 1fr) 32px;
                gap: 8px;
            }

            .testimonial-arrow {
                width: 32px;
                height: 32px;
                font-size: 20px;
            }

            .testimonial-card {
                padding: 14px 14px 16px;
            }

            .testimonial-slide-title {
                font-size: 22px;
            }

            .testimonial-slide-subtitle {
                font-size: 15px;
            }

            section {
                padding: 40px 15px;
            }

            .hero-icons {
                grid-template-columns: 1fr;
            }

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

            .about-item img {
                height: 220px;
            }

            .about-item {
                height: 310px;
            }

            .about-gold-title {
                font-size: 24px;
            }

            .about-blue-title {
                font-size: 20px;
            }

            .about-intro {
                font-size: 18px;
                line-height: 1.55;
                padding: 16px 14px;
            }

            .service-item p,
            .qna-item p,
            .team-card p,
            .value-card p,
            .contact-item p,
            .contact-item a,
            .contact-item strong,
            .excellence-intro,
            .team-quote p,
            .footer-content p,
            .hero-left p,
            .hero-right p,
            .hero-middle li,
            .about-intro p {
                font-size: 18px;
                line-height: 1.65;
            }

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

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

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

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

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

            .service-gold-title {
                font-size: 26px;
            }

            .service-blue-title {
                font-size: 22px;
            }

            .service-item p {
                font-size: 19px;
            }

            .qna-gold-title {
                font-size: 24px;
            }

            .qna-blue-title {
                font-size: 20px;
            }

            .clients-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .client-item {
                height: 90px;
                padding: 14px;
            }
        }

        /* ===== UTILITY CLASSES ===== */
        .max-width {
            max-width: 1200px;
            margin: 0 auto;
        }
