/* ================================================================
   KONTAK KAMI — CSS
   Prefix: ktk-
   ================================================================ */

/* --------------------------------
   MAP + CONTACT SECTION
   -------------------------------- */
.ktk-contact {
    padding: 80px 0;
    background: var(--white);
}
.ktk-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* ── Map ── */
.ktk-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gray-200, #e2e8e8);
    min-height: 480px;
}
.ktk-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Contact Cards ── */
.ktk-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ktk-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--gray-200, #e2e8e8);
    border-radius: 16px;
    background: var(--white);
    transition: all 0.3s ease;
}
.ktk-card:hover {
    border-color: var(--teal-200, #d0f4f1);
    box-shadow: 0 8px 28px rgba(44,197,189,0.08);
    transform: translateY(-2px);
}

/* Icon */
.ktk-card-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--teal-50, #e6faf9);
    border: 1px solid var(--teal-100, #c3ebe8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--teal-600);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.ktk-card:hover .ktk-card-icon {
    background: var(--teal-500);
    color: #fff;
    border-color: var(--teal-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(44,197,189,0.25);
}

/* Body */
.ktk-card-body { flex: 1; min-width: 0; }
.ktk-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-800, #0b5e5b);
    margin-bottom: 4px;
}
.ktk-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray-500, #6c757d);
    margin-bottom: 8px;
}
.ktk-card-action { margin: 0; }
.ktk-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-600) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.ktk-link:hover {
    color: var(--teal-700) !important;
    text-decoration: underline !important;
}
.ktk-link i { font-size: 14px; }

/* --------------------------------
   FAQ SECTION
   -------------------------------- */
.ktk-faq {
    padding: 80px 0;
    background: var(--gray-50, #f8fafa);
}
.ktk-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

/* FAQ List */
.ktk-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ktk-faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200, #e2e8e8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ktk-faq-item:hover {
    border-color: var(--teal-200, #d0f4f1);
    box-shadow: 0 4px 16px rgba(44,197,189,0.06);
}
.ktk-faq-item--open {
    border-color: var(--teal-300, #a0e8e3);
    box-shadow: 0 6px 24px rgba(44,197,189,0.1);
}

/* Trigger */
.ktk-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}
.ktk-faq-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--teal-400, #5dd9d2);
    flex-shrink: 0;
    width: 28px;
}
.ktk-faq-q {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-800, #0b5e5b);
    line-height: 1.5;
}
.ktk-faq-chevron {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--teal-50, #e6faf9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--teal-600);
    transition: all 0.3s ease;
}
.ktk-faq-item--open .ktk-faq-chevron {
    background: var(--teal-500);
    color: #fff;
    transform: rotate(180deg);
}

/* Answer */
.ktk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.ktk-faq-answer-inner {
    padding: 0 24px 20px 66px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-600, #475569);
}

/* More button */
.ktk-faq-more {
    text-align: center;
    margin-top: 36px;
}

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

@media (max-width: 991.98px) {
    .ktk-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ktk-map-wrap { min-height: 350px; }
}

@media (max-width: 575.98px) {
    .ktk-contact { padding: 48px 0; }
    .ktk-map-wrap { min-height: 280px; border-radius: 14px; }

    .ktk-card {
        padding: 18px 16px;
        gap: 14px;
        border-radius: 14px;
    }
    .ktk-card-icon {
        width: 44px; height: 44px;
        border-radius: 12px;
        font-size: 18px;
    }
    .ktk-card-title { font-size: 15px; }
    .ktk-card-desc { font-size: 12px; }
    .ktk-link { font-size: 13px; }

    .ktk-faq { padding: 48px 0; }
    .ktk-faq-trigger { padding: 16px 18px; gap: 10px; }
    .ktk-faq-num { font-size: 12px; width: 24px; }
    .ktk-faq-q { font-size: 14px; }
    .ktk-faq-chevron { width: 24px; height: 24px; font-size: 10px; }
    .ktk-faq-answer-inner {
        padding: 0 18px 16px 52px;
        font-size: 13px;
    }
    .ktk-faq-item { border-radius: 12px; }
}
