/* ========================================
   ABOUT US PAGE
   ======================================== */

/* ===== HERO ===== */
.hero-full {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding: 100px 0 40px;
    background: url('images/about/sunset_at_rig.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-full .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-full .hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: rgba(0, 0, 0, 0.60);
    z-index: 2;
    transform: skewX(-12deg);
    transform-origin: top left;
    border-right: 4px solid #00a3ff;
}

.hero-full .hero-content-center {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0;
    padding: 0 20px 0 80px;
    width: 100%;
}

.hero-full .hero-text-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 750px;
    margin: 0;
}

.hero-full .hero-underline {
    width: 6px;
    min-height: 70px;
    background: #00a3ff;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 8px;
}

.hero-full .hero-text {
    text-align: left;
    flex: 1;
}

/* ===== JUDUL UTAMA (PUTIH, BESAR) ===== */
.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* ===== SUB JUDUL (BIRU, ANTON) ===== */
.hero-sub {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ========================================
   ABOUT CONTENT
   ======================================== */
.about-content {
    padding: 40px 0 80px;
    background: #f9fafc;
}

.about-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper.image-left {
    flex-direction: row;
}

.about-wrapper.image-right {
    flex-direction: row-reverse;
}

/* ===== GAMBAR ===== */
.about-image {
    flex: 0 0 38%;
    max-width: 38%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 180px;
    align-self: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

/* ===== GAMBAR VISI & MISI ===== */
.vision-img {
    flex: 0 0 42%;
    max-width: 42%;
    min-height: 260px;
}

.vision-img img {
    max-height: 450px;
}

/* ===== GAMBAR ORG CHART ===== */
.orgchart-img {
    flex: 0 0 35%;
    max-width: 35%;
    min-height: 100%;
    align-self: stretch;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    margin-left: -20px;
}

.orgchart-img img {
    width: 100%;
    height: 100%;
    max-height: 900px;
    object-fit: cover;
    display: block;
    padding: 0;
}

/* ===== TEKS ===== */
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2a43;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 15px;
    text-align: justify;
}

/* ========================================
   DESKTOP ONLY
   ======================================== */
.desktop-only {
    display: block;
}

/* ========================================
   PARTNERSHIP
   ======================================== */
.partnership-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.partnership-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2a43;
    border-bottom: 4px solid #00a3ff;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.partnership-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 15px;
    text-align: justify;
}

/* ========================================
   PARTNERSHIP - MARQUEE INFINITY LOOP
   ======================================== */
.partnership-marquee-container {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 0;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.partnership-marquee-track {
    display: flex;
    gap: 20px;
    animation: scrollPartnership 30s linear infinite;
    width: max-content;
}

.partnership-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 90px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: 0.3s;
    flex-shrink: 0;
}

.partnership-marquee-item:hover {
    border-color: #00a3ff;
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.partnership-marquee-item img {
    max-height: 50px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
    filter: none;
    opacity: 1;
}

.partnership-marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes scrollPartnership {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   LOGO GRID - LICENCE & APPROVAL (2x2)
   ======================================== */
.logo-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 15px;
    max-width: 500px;
}

.logo-item {
    background: white;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: 0.3s;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    border-color: #00a3ff;
}

.logo-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 6px;
}

.logo-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a2a43;
}

/* ========================================
   ORGANIZATION CHART
   ======================================== */
.org-chart-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

.org-chart-modern .org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.org-chart-modern .org-card {
    background: white;
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
    transition: 0.3s;
    min-width: 140px;
    flex: 1;
    max-width: 200px;
}

.org-chart-modern .org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border-color: #00a3ff;
}

.org-chart-modern .org-card .org-icon {
    font-size: 1.3rem;
    color: #00a3ff;
    margin-bottom: 4px;
}

.org-chart-modern .org-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: normal;
    text-align: center !important;
}

.org-chart-modern .org-card p {
    font-size: 0.65rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.3;
    text-align: center !important;
}

.org-chart-modern .org-card.ceo {
    background: #0a2a43;
    border-color: #0a2a43;
    min-width: 180px;
    max-width: 240px;
}

.org-chart-modern .org-card.ceo .org-icon {
    color: #66ccff;
}

.org-chart-modern .org-card.ceo h4 {
    color: white;
    font-size: 0.85rem;
    text-align: center !important;
}

.org-chart-modern .org-card.ceo p {
    color: #88c0ff;
    font-size: 0.7rem;
    text-align: center !important;
}

.org-chart-modern .org-card.highlight {
    background: #f0f6fe;
    border-color: #00a3ff;
}

/* ========================================
   FACILITIES - GRID 2x2
   ======================================== */
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.facility-item {
    background: #f7fafc;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: 0.3s;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    border-color: #00a3ff;
}

.facility-item i {
    font-size: 2rem;
    color: #00a3ff;
    margin-bottom: 6px;
}

.facility-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 4px;
}

.facility-item p {
    font-size: 0.8rem;
    color: #4a5568;
}

/* ========================================
   VISION & MISSION
   ======================================== */
.vm-item {
    background: #f0f6fe;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.vm-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a2a43;
    margin-bottom: 8px;
    border-left: 4px solid #00a3ff;
    padding-left: 12px;
}

.vm-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #2d3748;
    text-align: justify;
}

.vm-item ul {
    list-style: none;
    padding-left: 8px;
}

.vm-item ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #1a202c;
    line-height: 1.6;
}

.vm-item ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #00a3ff;
    position: absolute;
    left: 0;
    top: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column !important;
        gap: 30px;
        padding: 0 15px;
    }
    .about-image {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: 180px;
    }
    .about-image img {
        max-height: 280px !important;
    }
    .vision-img img {
        max-height: 320px !important;
    }
    .orgchart-img {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: 300px;
        margin-left: 0;
    }
    .orgchart-img img {
        max-height: 450px !important;
    }
    .about-text {
        width: 100%;
        padding: 0;
    }
    .logo-grid-2col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 25vh;
        padding: 50px 0 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-sub {
        font-size: 0.8rem;
        margin-top: -4px;
        max-width: 70%;
    }
    .hero-full .hero-content-center {
        padding: 0 16px;
    }
    .hero-full .hero-slant {
        width: 80%;
        transform: skewX(-8deg);
    }
    .hero-full .hero-underline {
        min-height: 50px;
        width: 4px;
    }
    .hero-full .hero-text-wrapper {
        gap: 12px;
    }

    .desktop-only {
        display: none !important;
    }

    .about-content {
        padding: 20px 0 40px;
    }

    .about-wrapper {
        gap: 20px;
        padding: 0 12px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }
    .about-text p {
        font-size: 0.9rem;
    }

    .partnership-content h2 {
        font-size: 1.5rem;
    }

    /* ORG CHART MOBILE - SEMUA CARD SAMA LEBAR */
    .org-chart-modern .org-card {
        min-width: 0;
        max-width: 45%;
        flex: 0 0 45%;
        padding: 6px 8px;
        text-align: center !important;
    }
    .org-chart-modern .org-card h4 {
        font-size: 0.6rem;
        white-space: normal;
        text-align: center !important;
    }
    .org-chart-modern .org-card p {
        font-size: 0.55rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.ceo {
        flex: 0 0 45%;
        max-width: 45%;
        min-width: 0;
        margin: 0;
    }
    .org-chart-modern .org-card.ceo h4 {
        font-size: 0.65rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.ceo p {
        font-size: 0.6rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.highlight {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .org-chart-modern .org-level {
        gap: 6px;
        justify-content: center;
    }
    .org-chart-modern .org-card .org-icon {
        font-size: 1rem;
    }

    .org-chart-modern .org-level:first-child .org-card,
    .org-chart-modern .org-level:has(.highlight) .org-card,
    .org-chart-modern .org-level:last-child .org-card {
        flex: 0 0 45%;
        max-width: 45%;
        margin: 0;
    }

    /* FACILITIES */
    .facilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .facility-item {
        padding: 12px 10px;
    }
    .facility-item i {
        font-size: 1.5rem;
    }
    .facility-item h4 {
        font-size: 0.8rem;
    }
    .facility-item p {
        font-size: 0.7rem;
    }

    .logo-grid-2col {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .partnership-marquee-item {
        width: 80px;
        height: 65px;
        padding: 6px;
    }
    .partnership-marquee-item img {
        max-height: 35px;
        max-width: 70%;
    }
    .partnership-marquee-track {
        gap: 12px;
        animation-duration: 20s;
    }

    .vm-item p {
        font-size: 0.9rem;
    }
    .vm-item ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-full {
        min-height: 22vh;
        padding: 40px 0 12px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-sub {
        font-size: 0.65rem;
        margin-top: -4px;
        max-width: 70%;
    }
    .hero-full .hero-underline {
        min-height: 35px;
        width: 3px;
    }

    .desktop-only {
        display: none !important;
    }

    .about-content {
        padding: 16px 0 30px;
    }

    .about-wrapper {
        gap: 16px;
        padding: 0 10px;
    }

    .about-text h2 {
        font-size: 1.2rem;
        padding-bottom: 8px;
        margin-bottom: 14px;
    }
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .partnership-content h2 {
        font-size: 1.2rem;
    }

    /* ORG CHART HP KECIL */
    .org-chart-modern .org-card {
        flex: 0 0 45%;
        max-width: 45%;
        padding: 4px 6px;
        text-align: center !important;
    }
    .org-chart-modern .org-card h4 {
        font-size: 0.5rem;
        white-space: normal;
        text-align: center !important;
    }
    .org-chart-modern .org-card p {
        font-size: 0.5rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.ceo {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .org-chart-modern .org-card.ceo h4 {
        font-size: 0.55rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.ceo p {
        font-size: 0.55rem;
        text-align: center !important;
    }
    .org-chart-modern .org-card.highlight {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .org-chart-modern .org-level {
        gap: 4px;
    }
    .org-chart-modern .org-card .org-icon {
        font-size: 0.9rem;
    }

    .org-chart-modern .org-level:first-child .org-card,
    .org-chart-modern .org-level:has(.highlight) .org-card,
    .org-chart-modern .org-level:last-child .org-card {
        flex: 0 0 45%;
        max-width: 45%;
        margin: 0;
    }

    /* FACILITIES */
    .facilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .facility-item {
        padding: 8px 6px;
    }
    .facility-item i {
        font-size: 1.2rem;
    }
    .facility-item h4 {
        font-size: 0.65rem;
    }
    .facility-item p {
        font-size: 0.55rem;
    }

    .logo-grid-2col {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .logo-item {
        padding: 8px 6px;
    }
    .logo-item img {
        height: 25px;
    }
    .logo-item span {
        font-size: 0.55rem;
    }

    .partnership-marquee-item {
        width: 65px;
        height: 50px;
        padding: 4px;
    }
    .partnership-marquee-item img {
        max-height: 28px;
        max-width: 70%;
    }
    .partnership-marquee-track {
        gap: 8px;
        animation-duration: 15s;
    }

    .vm-item p {
        font-size: 0.8rem;
    }
    .vm-item ul li {
        font-size: 0.8rem;
    }
}