/* =========================================================
   RESET & GLOBAL
========================================================= */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* =========================================================
   NAVBAR (SAMA PERSIS DENGAN STYLE 1)
========================================================= */
.navbar-custom {
    background: linear-gradient(90deg, #0d3b66, #145ea8);
    padding: 12px 0;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-custom .navbar-brand img {
    height: 45px;
    margin-right: 15px;
    
}

.navbar-custom .navbar-brand span {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px; /* ⬅️ FONT NAMA KANTOR */
    line-height: 1.2;
}

.navbar-custom .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin-left: 18px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #ffd166;
}

/* ===== NAVBAR MOBILE (TIDAK MERUSAK MENU) ===== */
@media (max-width: 576px) {
    .navbar-custom {
        padding: 10px 0;
    }

    .navbar-custom .navbar-brand img {
        height: 40px;
    }

    .navbar-custom .navbar-brand span {
        font-size: 13px;
        max-width: 200px;
        white-space: normal;
    }

    .navbar-toggler {
        border: 1px solid #fff;
        padding: 4px 8px;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    .navbar-collapse {
        background: transparent;
    }
}

/* =========================================================
   CONTAINER
========================================================= */
.container,
.container-fluid {
    padding-left: 16px;
    padding-right: 16px;
}

/* =========================================================
   CARD / BOX
========================================================= */
.card,
.search-box,
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 32px 36px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* ===== CARD MOBILE ===== */
@media (max-width: 576px) {
    .card,
    .search-box,
    .contact-card {
        padding: 20px;
        border-radius: 14px;
    }
}

/* =========================================================
   CONTACT ITEM
========================================================= */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.icon {
    width: 42px;
    height: 42px;
    background: #f0f4fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #0d3b66;
}

.text p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* =========================================================
   TEXT & HEADING
========================================================= */
h1 {
    font-size: 34px;
    line-height: 1.3;
}

h2 {
    font-size: 28px;
}

p.text-muted {
    font-size: 16px;
}

/* ===== MOBILE TEXT ===== */
@media (max-width: 576px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    p.text-muted {
        font-size: 14px;
    }
}

/* =========================================================
   ALERT
========================================================= */
.alert {
    font-size: 15px;
    border-radius: 12px;
}

@media (max-width: 576px) {
    .alert {
        font-size: 14px;
        padding: 12px;
    }

    .alert i {
        font-size: 20px !important;
    }
}

/* =========================================================
   PASSPORT IMAGE
========================================================= */
.passport-img {
    flex-shrink: 0;
}

.passport-img img {
    max-width: 200px;
    background: transparent;
    mix-blend-mode: multiply;
}

@media (max-width: 576px) {
    .passport-img img {
        max-width: 130px;
    }
}

/* =========================================================
   MAP
========================================================= */
.contact-card iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
}

/* =========================================================
   FOOTER (SAMA DENGAN STYLE 1)
========================================================= */
footer {
    background: #0d3b66;
    color: #ffffff;
    text-align: center;
    padding: 18px 0;
    font-size: 15px;
}

footer small {
    color: #dce6f1;
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 576px) {
    footer {
        font-size: 13px;
        padding: 14px 10px;
    }
}
