/* Hero Section */
.hero-content {
    height: calc(100vh - 200px);
}

.hero-content h1 {
    color: #1F2666;
    font-family: 'Satoshi', sans-serif;
}

.hero-content p {
    font-family: 'Work Sans', sans-serif;
}

/* End Hero Section */

/* Service Section */
.service {
    padding: 100px 48px 100px;
}

.service .service-text {
    text-align: center;
    width: 100%;
    max-width: 988px;
    opacity: 0px;
    margin: 0px auto;
}

.service .service-text .title {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    color: #858585;
    margin-bottom: -10px;
}

.service .service-text h2 {
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    color: #1F2666;
}

.service .service-text p {
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    color: #858585;
}

.service-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 54px;
    margin: 50px auto 0px;
}
.service-card {
    width: 100%;
    transition: transform 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 365px;
    border-radius: 24px;
    object-fit: cover;
    object-position: 20% 20%;
    position: relative;
    z-index: 1;
}

.service-card .service-card-text {
    width: 100%;
    overflow: auto;
    margin-top: -70px;
    padding: 16px 24px 16px 24px;
    gap: 16px;
    border-radius: 0px 0px 16px 16px;
    opacity: 0px;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}



.service-card .service-card-text .title {
    font-family: 'Satoshi', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #1F2666;
}

.service-card .service-card-text p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #858585;
}

.service-card .service-card-text .icons {
    width: 40px;
    Height: 40px;
    background-color: #C93326;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card .service-card-header {
    display: flex;
    justify-content: space-between;
}
/* End Service */

/* Kelebihan Section */
.kelebihan-text {
    width: 100%;
    max-width: 988px;
    margin: 0px auto;
    padding: 0px 48px;
    opacity: 0;
    transform: translateY(50px);
    transition: 
        opacity 0.8s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.kelebihan-text.in-view {
    opacity: 1;
    transform: translateY(0);
}

.kelebihan-text h2 {
    font-family: 'Satoshi', sans-serif;
    color: #1F2666;
    transition: color 0.6s ease;
}

.kelebihan-text p {
    font-family: 'Work Sans', sans-serif;
    color: #858585;
}

/* ROW */
.row-kelebihan {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.row-kelebihan.row-show {
    opacity: 1;
    transform: translateY(0);
}

/* COL */
.col-kelebihan {
    opacity: 0;
    transform: translateY(50px);
    transition: 
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.col-kelebihan.col-show {
    opacity: 1;
    transform: translateY(0);
}

.card-kelebihan {
    background-color: #1F2666;
    cursor: pointer;
    border: 2px solid #1F2666;
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.574);
    transition: all 0.4s ease;
}

.card-kelebihan h3 {
    color: #f4f4f8;
    transition: color 0.4s ease;
    font-family: 'Satoshi', sans-serif;
}

.card-kelebihan p {
    display: none;
    transition: display 0.3s ease;
}

.icon1, .icon2 {
    transition: display 0.3s ease;
}

.icon1 {
    display: block;
}

.icon2 {
    display: none;
}

/* ============================= */
/* HOVER STATE (kalau belum opened) */
/* ============================= */

.card-kelebihan:not(.opened):hover {
    background-color: #f4f4f8;
}

.card-kelebihan:not(.opened):hover h3 {
    color: #1F2666;
}

.card-kelebihan:not(.opened):hover .icon1 {
    display: none;
}

.card-kelebihan:not(.opened):hover .icon2 {
    display: block;
}

/* ============================= */
/* OPENED STATE */
/* ============================= */

.card-kelebihan.opened {
    background-color: #f4f4f8;
}

.card-kelebihan.opened h3 {
    color: #1F2666;
}

.card-kelebihan.opened p {
    display: block;
}

.card-kelebihan.opened .icon1 {
    display: none;
}

.card-kelebihan.opened .icon2 {
    display: block;
}
/* End Kelebihan Section */

/* Contact us Section */

.inquiry-form-header {
    width: 100%;
    max-width: 988px;
    margin: 0px auto;
}

.inquiry-form-header h2 {
    font-family: 'Satoshi', sans-serif;
    color: #1F2666;
}

.inquiry-form-header p {
    font-family: 'Work Sans', sans-serif;
}

@media only screen and (max-width: 360px) {
    .hero-content {
        height: auto;
    }
}
@media only screen and (min-width: 361px) and (max-width: 576px) {
    .hero-content {
        height: auto;
    }
}
@media only screen and (min-width: 577px) and (max-width: 767px) {
    .hero-content {
        height: auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {}
@media only screen and (min-width: 993px) and (max-width: 1100px) {}

/* Keadaan awal: Tak terlihat dan agak ke bawah */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease-out;
}

/* Keadaan saat aktif: Terlihat dan posisi normal */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi keluar (opsional): Jika ingin menghilang saat scroll menjauh */
.reveal.out {
    opacity: 0;
    transform: translateY(-80px);
}