/* ==========================================================================
   TENTANG KAMI PAGE CSS
   ========================================================================== */

.tk-page {
    background: var(--Gray-200, #F9FAFB);
    min-height: 100vh;
}

.tk-hero {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.tk-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.tk-hero p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #606060;
}

.tk-hero-img-container {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

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

/* Visi Misi */
.tk-visimisi {
    padding-top: 80px;
    padding-bottom: 80px;
}

.tk-visimisi-container {
    display: flex;
    flex-wrap: wrap;
    gap: 140px;
}

.tk-visimisi-left {
    flex: 0 0 100%;
}

.tk-visimisi-right {
    flex: 0 0 100%;
}

@media (min-width: 992px) {
    .tk-visimisi-left {
        flex: 0 0 15%;
    }

    .tk-visimisi-right {
        flex: 1;
    }
}

.tk-visimisi-left h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 80px;
    color: #333333;
    margin: 0;
}

.tk-visimisi-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #B40000;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 0;
}

.tk-visimisi-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.tk-misi-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tk-misi-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tk-misi-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tk-misi-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .tk-visimisi-container {
        gap: 24px;
    }

    .tk-visimisi-left h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

/* Lokasi */
.tk-lokasi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 80px;
    padding-bottom: 40px;
}

.tk-lokasi-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #EF1313;
    margin: 0;
}

.tk-lokasi-right {
    text-align: right;
}

.tk-lokasi-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #333333;
    margin: 0 0 8px 0;
}

.tk-lokasi-address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #606060;
    margin: 0;
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.tk-lokasi-address::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #606060;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tk-lokasi-address:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 767px) {
    .tk-lokasi-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tk-lokasi-right {
        text-align: left;
    }
}

.tk-lokasi-img-container {
    width: 100%;
    height: 640px;
    overflow: hidden;
}

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

/* Kontak */
.tk-kontak {
    padding-top: 80px;
    padding-bottom: 80px;
}

.tk-kontak-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.tk-kontak-left {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 40px;
}

.tk-kontak-right {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .tk-kontak-left {
        flex: 0 0 40%;
        padding-right: 40px;
        margin-bottom: 0;
    }

    .tk-kontak-right {
        flex: 0 0 60%;
        flex-direction: row;
    }
}

.tk-kontak-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #B40000;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tk-kontak-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #333333;
    margin-bottom: 24px;
    margin-top: 0;
}

.tk-kontak-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #777777;
    margin: 0;
}

.tk-kontak-box {
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    justify-content: center;
    flex: 1;
}

.tk-kontak-box.bg-gray {
    background-color: #606060;
    margin-top: 20px;
}

.tk-kontak-box.bg-red {
    background-color: #B40000;
    margin-bottom: 20px;
}

.tk-box-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
}

.tk-box-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tk-box-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tk-box-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

.tk-box-text-group a {
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.tk-box-text-group a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tk-box-text-group a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 767px) {
    .tk-kontak-box {
        padding: 30px 20px;
    }

    .tk-kontak-box.bg-gray {
        margin-top: 0;
    }
}