body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 90px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are {
    background: #f2f2f2;
    padding: 60px 0 30px;
}

.who-box {
    background: #f5a623;
    border-radius: 22px;
    padding: 35px 40px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.who-box h2 {
    margin: 0 0 20px;
    font-size: 38px;
    color: #1f3c88;
    font-weight: 700;
}

.who-box p {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #123D7A;
    backdrop-filter: blur(8px);
    z-index: 999;
    box-sizing: border-box;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
}

/* 🔥 INI KUNCINYA */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px; /* samakan dengan menu */
}

.main-nav {
    display: flex;
    gap: 20px; /* nilai sama */
}



.logo img {
    height: 65px;
    width: auto;
    display: block;
}

.main-nav a {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #f5a623;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-search {
     margin-left: 20px; /* atur: 10px / 15px / 20px */
}

.header-search input {
    width: 170px;
    height: 34px;
    border: none;
    border-radius: 20px;
    padding: 0 14px;
    outline: none;
    font-size: 14px;
}

.lang-switch {
    flex: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
}
.hero {
    height: 500px;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    box-sizing: border-box;
    height: var(--hero-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 90, 0.35);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
}

.hero-line {
    width: 200px;
    height: 4px;
    background: #f5a623;
    margin-top: 20px;
    border-radius: 3px;
}

.services {
    background: #f2f2f2;
    padding: 30px 0 70px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #2f4ea2;
    margin: 0 0 35px;
    font-weight: 700;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    width: 410px;
    min-height: 250px;
    background: #ececec;
    border-radius: 22px;
    padding: 28px 25px 22px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: 0.3s;
}

.service-card:hover {
    background: #f5a623; /* warna kuning */
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #2f4ea2;
    margin-bottom: 14px;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: #123D7A;
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
}

.service-desc {
    font-size: 18px;
    color: #222;
    margin-top: 4px;
}

/* ABOUT PAGE */
/* FIX ABOUT BANNER */
.about-hero {
    width: 100% !important;
    height: 375px !important;
    overflow: hidden !important;
    background: none !important;
    position: relative;
}

.about-hero img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 61, 122, 0.35);
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    text-align: justify;
}

.about-description br {
    display: block;
    margin-bottom: 14px;
    content: "";
}

.about-section {
    padding: 56px 0;
}

.about-section-light {
    background: #ffffff;
}

.about-section-gray {
    background: #e9e9e9;
}

.about-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}


.about-copy h2,
.section-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    color: #294aa5;
    font-weight: 700;
}

.about-copy .sub-heading {
    margin-top: 36px;
}

.about-copy p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.45;
    color: #111;
    text-align: justify;
}

.about-media {
    width: 100%;
    display: flex;
    align-items: center;
}

.about-media img {
    width: 100%;
    max-width: 520px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
}

.about-section-white {
    background: #ffffff;
}

.structure-wrap {
    background: #ffffff;
}

.structure-wrap img {
    background: #ffffff;
}

.media-right-edge {
    justify-self: end;
}

.media-right-edge img {
    max-width: 620px;
    border-radius: 28px 0 0 28px;
}

.media-left img {
    max-width: 620px;
    border-radius: 0 28px 28px 0;
}

.structure-wrap {
    margin-top: 24px;
    text-align: center;
}

.structure-wrap img {
    width: min(100%, 820px);
    display: inline-block;
}

.director-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 260px) !important;
    gap: 26px;
    justify-content: center;
    margin-top: 26px;
}

.director-card {
    width: 260px;
    position: relative;
    background: transparent;
    border-radius: 20px;
    text-align: center;
}

.director-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
    border: 2px solid #e5e5e5; /* FRAME 2mm */
}

.director-frame {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden; /* penting */
    background: #ffffff;
}

.director-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* badge nempel ke foto */
.director-badge {
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    background: #f3aa2b;
    border-radius: 999px;
    padding: 10px 20px;
    min-width: 170px;
}

.director-name {
    font-size: 13px;
    color: #294aa5;
    font-weight: 700;
}

.director-role {
    font-size: 11px;
    color: #294aa5;
}

@media (max-width: 991px) {
    .director-grid {
        grid-template-columns: repeat(2, 260px) !important;
    }
}

@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-media img {
        height: auto;
    }

    .media-right-edge,
    .media-left {
        justify-self: center;
    }

    .media-right-edge img,
    .media-left img {
        max-width: 100%;
        border-radius: 20px;
    }

    .about-hero img {
        height: 180px;
    }

    .director-grid {
        grid-template-columns: 1fr !important;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .director-card {
        margin: 0 auto;
    }
}

.footer {
    background: #0d3d86;
    color: #fff;
    padding: 50px 0 25px;
}

.footer {
    background: #123D7A;
    color: #fff;
    padding: 45px 0 38px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 26px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    display: block;
}

.footer-main-text {
    margin: 0 0 38px;
    font-size: 15px;
    line-height: 1.45;
}

.footer-content-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: end;
    margin-bottom: 38px;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

.footer-bottom-row p {
    margin: 0;
}

.lang-switch {
    margin-left: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
}

.lang-switch a:hover {
    opacity: 1;
    text-decoration: underline;
}

.service-main-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #2f4ea2;
    margin: 60px 0 30px;
}

.services-focus-section {
    background: #fff;
    padding: 80px 0;
}

.services-focus-wrap {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-focus-card,
.service-ghost {
    width: 360px;
    height: 210px;
    border-radius: 18px;
    text-align: center;
    box-sizing: border-box;
    padding: 22px 20px;
}

.service-focus-card {
    background: #f5a623;
    z-index: 2;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
}

.service-focus-card.active {
    background: #f5a623;
    transform: scale(1.05);
}

.service-ghost {
    background: rgba(245, 166, 35, 0.12);
    opacity: 0.28;
}

.service-focus-card {
    margin: 0 -35px;
}

.service-focus-card img,
.service-ghost img {
    height: 90px;
    width: auto;
    margin: 10px 0;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f3c88;
}

.service-desc {
    font-size: 16px;
    color: #111;
}

.service-detail-section {
    background: #ffffff;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-detail-row.reverse .service-img {
    order: 2;
}

.service-detail-row.reverse .service-white-text {
    order: 1;
}

.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-blue-text,
.service-white-text {
    display: flex;
    align-items: center;
    padding: 60px;
}

.service-blue-text {
    background: #123D7A;
    color: #fff;
}

.service-white-text {
    background: #fff;
    color: #111;
}

.service-blue-text p,
.service-white-text p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .services-focus-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .service-focus-card {
        margin: 0;
    }

    .service-ghost {
        opacity: 1;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-row.reverse .service-img {
        order: 1;
    }
    
    .service-detail-row.reverse .service-white-text {
        order: 2;
    }

    .service-blue-text,
    .service-white-text {
        padding: 40px 24px;
    }
}

.contact-page {
    background: #ffffff;
    padding: 70px 0;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 34px;
    color: #294aa5;
    margin: 0 0 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.contact-list {
    margin-top: 24px;
}

.contact-box {
    background: #f2f2f2;
    border-radius: 18px;
    padding: 35px;
}

.contact-box h3 {
    margin: 0 0 20px;
    color: #294aa5;
    font-size: 24px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
}

.contact-box textarea {
    height: 130px;
    resize: vertical;
}

.contact-box button {
    background: #f5a623;
    color: #123D7A;
    border: none;
    border-radius: 999px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

.contact-list p {
    margin: 4px 0;   /* sebelumnya mungkin 10–16px */
    line-height: 1.4;
    font-size: 15px;
}

.contact-list strong {
    display: inline-block;
    min-width: 80px;
}

p {
    margin-bottom: 12px;
}

.lang-switch a {
    font-family: 'Inter', sans-serif; /* samakan dengan menu */
    font-size: 14px;                  /* samakan */
    font-weight: 600;                 /* samakan */
    color: #fff;
    text-decoration: none;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switch a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* 🔥 separator */
.lang-switch a:first-child::after {
    content: "|";
    margin-left: 6px;
    color: #fff;
}

.lang-switch a:first-child::after {
    content: "|";
    margin-left: 6px;
    color: rgba(255,255,255,0.6);
}

/* Responsive Styles */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.header-nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    /* Header */
    .mobile-menu-btn {
        display: block;
    }
    
    .header-nav-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #123D7A;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-sizing: border-box;
        gap: 20px;
        display: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .header-nav-wrap.active {
        display: flex;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .main-nav a {
        padding: 10px 0;
        display: block;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 10px;
        width: 100%;
    }

    .header-search {
        margin-left: 0;
        width: 100%;
    }

    .header-search input {
        width: 100%;
        max-width: 100%;
    }

    .lang-switch {
        margin-left: 0;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 42px;
    }

    /* Footer */
    .footer-content-row,
    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-row {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        width: 90%;
    }

    /* Hero */
    .hero {
        min-height: 500px;
        height: auto;
        padding: 120px 5% 60px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    /* Who We Are */
    .who-box {
        padding: 25px 20px;
    }

    .who-box h2 {
        font-size: 28px;
    }

    /* Services */
    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .service-list {
        gap: 20px;
    }

    /* Footer */
    .footer-social {
        justify-self: start;
        margin-top: 10px;
    }
}