/* ================================================================
   LAYANAN JASA TITIP
   Prefix: ljt-
   Shared hero: lk-hero (from layanan-kami.css)
   ================================================================ */

/* --------------------------------
   SHARED: Section Header
   -------------------------------- */
.ljt-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.ljt-section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    color: var(--teal-600);
    background: var(--teal-50, #e6faf9);
    border: 1px solid var(--teal-600);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
.ljt-section-badge i { font-size: 12px; }
.ljt-section-title {
    font-size: 32px; font-weight: 800;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 12px;
}
.ljt-section-desc {
    font-size: 15px; line-height: 1.7;
    color: var(--gray-500, #6c757d);
    max-width: 560px; margin: 0 auto;
}

/* --------------------------------
   SECTION 2: CARA KERJA (5 STEPS)
   -------------------------------- */
.ljt-steps {
    padding: 80px 0;
    background: var(--gray-50, #f8f9fa);
}

.ljt-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ljt-step-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    position: relative;
    border: 1px solid var(--gray-200, #e2e8e8);
    transition: all 0.35s ease;
    overflow: hidden;
}
.ljt-step-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    opacity: 0;
    transition: opacity 0.3s;
}
.ljt-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(44,197,189,0.1);
    border-color: var(--teal-200, #d0f4f1);
}
.ljt-step-card:hover::before { opacity: 1; }

.ljt-step-num {
    position: absolute; top: 16px; right: 20px;
    font-size: 48px; font-weight: 900;
    color: rgba(44,197,189,0.07);
    line-height: 1;
    pointer-events: none;
}

.ljt-step-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid var(--teal-100, #c3ebe8);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--teal-600);
    transition: all 0.3s ease;
}
.ljt-step-card:hover .ljt-step-icon {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44,197,189,0.25);
}

.ljt-step-title {
    font-size: 16px; font-weight: 700;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 8px;
}
.ljt-step-desc {
    font-size: 14px; line-height: 1.65;
    color: var(--gray-500, #6c757d);
    margin-bottom: 0;
}

/* --------------------------------
   SECTION 3: KATEGORI PRODUK
   -------------------------------- */
.ljt-countries {
    padding: 80px 0;
    background: #fff;
}

.ljt-countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ljt-country-card {
    background: #fff;
    border: 1px solid var(--gray-200, #e2e8e8);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.ljt-country-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-50));
    opacity: 0;
    transition: opacity 0.3s;
}
.ljt-country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(44,197,189,0.1);
    border-color: var(--teal-200, #d0f4f1);
}
.ljt-country-card:hover::after { opacity: 1; }

.ljt-country-flag {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--teal-50, #e6faf9);
    border: 1px solid var(--teal-100, #c3ebe8);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
    color: var(--teal-600);
    transition: all 0.3s ease;
}
.ljt-country-card:hover .ljt-country-flag {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
}

.ljt-country-name {
    font-size: 18px; font-weight: 800;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 8px;
}

.ljt-country-desc {
    font-size: 13px; line-height: 1.6;
    color: var(--gray-500, #6c757d);
    margin-bottom: 16px;
}

.ljt-country-meta {
    display: flex; flex-direction: column; gap: 8px;
    border-top: 1px solid var(--gray-200, #e2e8e8);
    padding-top: 14px;
}

.ljt-meta-item {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px;
    color: var(--gray-600, #475569);
    line-height: 1.5;
}
.ljt-meta-item i {
    color: var(--teal-600);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --------------------------------
   SECTION 4: ADVANTAGES
   -------------------------------- */
.ljt-advantages {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}
.ljt-adv-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--teal-50, #e6faf9) 0%, #fff 100%);
    z-index: 0;
}
.ljt-adv-bg::before {
    content: ''; position: absolute;
    top: -60px; right: 10%;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(44,197,189,0.04);
}
.ljt-advantages .container { position: relative; z-index: 1; }

.ljt-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ljt-adv-card {
    background: rgba(44,197,189,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(44,197,189,0.12);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.ljt-adv-card:hover {
    background: rgba(44,197,189,0.14);
    border-color: rgba(44,197,189,0.25);
    transform: translateY(-6px);
}
.ljt-adv-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: none;
    border: none;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}
.ljt-adv-card:hover .ljt-adv-icon {
    background: #c6f2ef;
    border-color: rgba(44,197,189,0.3);
    transform: scale(1.08);
}
.ljt-adv-icon img {
    width: 50px; height: 50px;
    object-fit: contain;
}
.ljt-adv-icon i {
    font-size: 28px;
    color: var(--teal-600);
}
.ljt-adv-title {
    font-size: 17px; font-weight: 700;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 8px;
}
.ljt-adv-desc {
    font-size: 13px; line-height: 1.65;
    color: var(--gray-500, #6c757d);
}


/* btn-ea-outline-white → moved to core.css */

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .ljt-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .ljt-countries-grid { grid-template-columns: repeat(2, 1fr); }
    .ljt-adv-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 575.98px) {
    .ljt-section-title { font-size: 24px; }
    .ljt-section-desc { font-size: 14px; }

    .ljt-steps { padding: 48px 0; }
    .ljt-steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .ljt-step-card { padding: 24px 20px; }
    .ljt-step-num { font-size: 36px; }
    .ljt-step-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 20px; }
    .ljt-step-title { font-size: 15px; }
    .ljt-step-desc { font-size: 13px; }

    .ljt-countries { padding: 48px 0; }
    .ljt-countries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ljt-country-card { padding: 20px 16px; }
    .ljt-country-flag { width: 44px; height: 44px; border-radius: 12px; font-size: 18px; }
    .ljt-country-name { font-size: 16px; }
    .ljt-country-desc { font-size: 12px; }
    .ljt-meta-item { font-size: 11px; }

    .ljt-advantages { padding: 48px 0; }
    .ljt-adv-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ljt-adv-card { padding: 24px 16px; }
    .ljt-adv-icon { width: 56px; height: 56px; }
    .ljt-adv-icon img { width: 32px; height: 32px; }
    .ljt-adv-title { font-size: 14px; }
    .ljt-adv-desc { font-size: 12px; }

}

/* Small Mobile */
@media (max-width: 374.98px) {
    .ljt-countries-grid { grid-template-columns: 1fr; }
    .ljt-adv-grid { grid-template-columns: 1fr; }
}