/* ============================================
   KOP SURAT - SOMA PT SOLUSI UTAMA INFORMATIKA
   Persis seperti contoh PDF
   ============================================ */

/* ===== HEADER ===== */
.ks-header {
    background: #1a1a1a;
    padding: 0;
    overflow: hidden;
}

.ks-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    gap: 0;
}

.ks-header-text {
    color: #f4c430;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ks-header-separator {
    display: inline-block;
    width: 30px;
}

/* ===== MAIN LAYOUT ===== */
.ks-main {
    display: flex;
    min-height: 920px; /* A4 height minus header/footer */
    padding: 40px 50px;
    gap: 40px;
    align-items: flex-start;
}

/* ===== LEFT COLUMN (Contact) ===== */
.ks-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ks-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ks-icon {
    font-size: 20px;
    color: #333;
    margin-top: 2px;
}

.ks-contact-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}

.ks-contact-value {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* ===== CENTER COLUMN (Logo) ===== */
.ks-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.ks-logo-area {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-logo-placeholder {
    width: 100%;
    height: 100%;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    gap: 5px;
}

.ks-logo-placeholder small {
    font-size: 10px;
}

/* Jika ada logo image */
.ks-logo-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== RIGHT COLUMN (Address) ===== */
.ks-right {
    flex: 0 0 280px;
}

.ks-address-block {
    text-align: left;
}

.ks-address-label {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ks-address-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.ks-address-text {
    font-size: 12px;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.ks-footer {
    background: #1a1a1a;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.ks-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ks-footer-icon {
    color: #f4c430;
    font-size: 12px;
}

.ks-footer-text {
    color: #f4c430;
    font-size: 11px;
    font-weight: 600;
}

.ks-footer-label {
    color: #f4c430;
    font-size: 10px;
    font-weight: 500;
    margin-right: 15px;
}

.ks-footer-separator {
    color: #f4c430;
    font-size: 11px;
    margin: 0 10px;
    opacity: 0.6;
}