.page-title {
    color: #1a1a2e;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Container Kartu */
.cards-column {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Jarak antar kartu */
    position: relative;
}

/* Style Kartu */
.value-card {
    background-color: #ffffff; /* Solid putih */
    border-radius: 15px;
    padding: 20px 20px 20px 70px; /* Padding kiri besar untuk lingkaran */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2; /* Pastikan kartu di atas garis */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Lingkaran Nomor */
.value-card .number-badge {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: #9bc53d; /* Hijau muda */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 3;
}

.value-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.value-card .card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Foto Tim */
.photo-container {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 505px; /* Tinggi minimal agar sejajar dengan kartu */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    color: #ccc;
    font-size: 2rem;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .photo-container {
        margin-top: 30px;
        min-height: 350px;
    }
    .page-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .value-card {
        padding: 15px 15px 15px 60px;
    }
    .value-card .number-badge {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        left: 15px;
    }
    /* Sesuaikan posisi garis di mobile */
    .value-card:not(:last-child)::after {
        left: 32px;
        bottom: -15px;
    }
}

.section-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.facility-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-badge::before {
    content: none !important;
}
.icon-badge {
    width: 70px;
    height: 70px;
    background: #c8e629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-badge i {
    font-size: 2rem;
}

.card-title {
    color: #0C5B7F;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: left;
    letter-spacing: 3px !important;
}

.card-text {
    color: #0C5B7F;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .facilities-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .facility-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
        margin: -60px auto 20px;
    }

    .icon-badge i {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.2rem;
        color: #0C5B7F;
        letter-spacing: 3px !important;
    }

    .card-text {
        font-size: 0.9rem;
        color: #0C5B7F;
    }
}

/* ============ TESTIMONIAL SECTION ============ */
.custom-quote {
    padding-left: 5px !important;
    border-left: 4px solid #0d6efd; /* Garis penanda visual (opsional) */
}
.custom-quote p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
}
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile-container strong {
    font-size: 1.1rem;
    color: #333;
}
.profile-container small {
    font-size: 0.85rem;
}
@media (max-width: 767px) {
    .custom-quote {
        padding-left: 0 !important;
        border-left: none;
        border-top: 3px solid #0d6efd;
        padding-top: 15px;
        text-align: center;
    }
    .custom-quote p {
        text-align: center;
    }
}

/* ============ REKRUTMEN SECTION ============ */
.rekrutmen-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.rekrutmen-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.flowchart-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flow-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flow-pill {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    min-width: 160px;
}

.pill-green {
    background-color: #22c55e;
}

.pill-blue {
    background-color: #2563eb;
}

.pill-yellow {
    background-color: #eab308;
}

.pill-blue-dark {
    background-color: #1e40af;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

.flow-arrow-dashed {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    border-bottom: 3px dashed #333;
    padding-bottom: 2px;
}

/* ============ LIFE AT DUMI SECTION ============ */
.life-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.social-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: 100%;
    background: linear-gradient(180deg, #1e40af 0%, #1e3a8a 100%);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.social-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.social-card .card-overlay {
    position: relative;
    z-index: 1;
    padding: 25px;
    color: #fff;
}

.card-overlay .pov-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.card-overlay .card-title-text {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.card-top-icons {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.card-top-icons span {
    font-size: 0.8rem;
    color: #fff;
    opacity: 0.8;
}

.btn-show-all {
    background-color: #2563eb;
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s;
}

.btn-show-all:hover {
    background-color: #1d4ed8;
    color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .avatar-circle {
        width: 150px;
        height: 150px;
    }

    .testimonial-card {
        margin-top: 30px;
    }

    .rekrutmen-section {
        padding: 40px 0;
    }

    .flow-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .flow-pill {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .social-card {
        min-height: 300px;
        margin-bottom: 20px;
    }
}

/*==========CTA BAGIAN BAWAH==========*/
.cta-section {
    position: relative;
    background-image: url('https://placehold.co/1920x500?text=Background+Team+Photo');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Blue Overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 140, 200, 0.80);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.cta-title {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #fff;
}

.cta-subtitle-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    white-space: nowrap;
    color: #fff;
}

.btn-cta {
    background-color: #c8e629;
    color: #1a1a2e;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #b8d619;
    color: #1a1a2e;
    transform: scale(1.05);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cta-section {
        min-height: 260px;
        padding: 30px 0;
    }

    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 8px 24px;
        font-size: 0.9rem;
    }

    .cta-subtitle-row {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*===========SOCIAL MEDIA==========*/
.social-section {
    padding: 50px 0;
    text-align: center;
}

.social-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 35px;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.social-item:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icon svg {
    width: 56px;
    height: 56px;
}

.social-label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 400;
}

/* Instagram Gradient */
.instagram-gradient {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 14px;
    padding: 2px;
}

.instagram-gradient i {
    color: #fff;
    font-size: 2.2rem;
}

/* Facebook */
.facebook-bg {
    background-color: #1877F2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.facebook-bg i {
    color: #fff;
    font-size: 2.2rem;
}

/* TikTok */
.tiktok-bg {
    background-color: #010101;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.tiktok-bg i {
    color: #fff;
    font-size: 2rem;
}

/* LinkedIn */
.linkedin-bg {
    background-color: #0A66C2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.linkedin-bg i {
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 576px) {
    .social-icons-wrapper {
        gap: 25px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 48px;
        height: 48px;
    }

    .instagram-gradient i,
    .facebook-bg i {
        font-size: 1.8rem;
    }

    .social-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
}

/*==========HERO BANNER==========*/
.hero-section {
    position: relative;
    min-height: 500px;
    background-image: url('https://placehold.co/1920x700?text=Office+Team+Photo');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blue-box {
    background: linear-gradient(135deg, #0066CC 0%, #00BFFF 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    margin-right: 50px;
}

.blue-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.blue-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #fff;
}

.btn-custom {
    background-color: #c8e629;
    color: #0976A6;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #b8d619;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .blue-box {
        margin-top: 30px;
        padding: 30px 25px;
    }

    .blue-box h1 {
        font-size: 1.8rem;
    }

    .blue-box {
        margin-right: 20px;
    }
}

.btn-instagram-xl {
    font-size: 1.5rem;
    padding: 18px 50px;
    font-weight: 700;
    border-radius: 50px;
    line-height: 1.6;
}
