.ss-section {
    background-color: #ffffff;
    /* Subtle background as it looks in image? Actually image looks very light #F8FAFC except cards */
    padding-top: 200px;
    /* Space for fixed header and subnav enlarged */
    padding-bottom: 50px;
}

.ss-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 160px;
    margin: 0 auto;
}

.ss-header {
    margin-bottom: 40px;
}

.ss-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #06142d;
    margin-bottom: 10px;
    line-height: normal;
}

.ss-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #929aa7;
    max-width: 600px;
    line-height: 1.75;
}

.btn-contact {
    width: 300px;
    height: 52px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 999px;
    background-color: #159c33;
}

.btn-contact-green {
    display: inline-flex;
    margin-top: 40px !important;
    align-items: center;
    gap: 10px;
    background-color: #16A34A;
    /* Warna hijau khas tombol sebelumnya */
    color: #ffffff;
    padding: 18px 60px;
    border-radius: 100px;
    /* Bentuk kapsul membulat */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-green i {
    font-size: 16px;
}

.btn-contact-green:hover {
    background-color: #15803d;
    /* Warna hijau sedikit lebih gelap saat di-hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    /* Efek bayangan lembut */
    color: #ffffff;
}

@media (max-width: 1024px) {
    .ss-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .ss-section {
        padding-top: 30px !important;
    }

    .ss-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ss-header h2 {
        font-size: 30px;
    }

    .ss-header p {
        font-size: 14px;
    }

    .btn-contact-green {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    /*stay*/
    /* ===== Stay & Shuttle Card Section ===== */

.ss-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 50px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
}

.ss-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    background: rgba(22, 163, 74, 0.05);
    border-radius: 50%;
}

.ss-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16A34A, #22C55E);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.25);
}

.ss-label {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-box {
    background: #f9fafb;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-box:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 68px;
    height: 68px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #16A34A;
    font-size: 24px;
}

.contact-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #06142d;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 14px;
    color: #929aa7;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #16A34A;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #15803d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ss-card {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ss-icon {
        margin: 0 auto 25px;
    }
}

}
