* {
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(
        180deg,
        #0b6b45 0px,
        #0f7a4d 300px,
        #f4f7f5 300px
    );
    min-height: 100vh;
    padding: 20px;
}

/* CONTAINER */

.main-wrapper {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* HEADER */

.top-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ece9;
    position: relative;
}

.logo-box {
    width: 42px;
    height: 42px;
    border: 6px solid #0f7a4d;
    border-radius: 4px;
}

.system-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f2d2b;
    margin-bottom: 0;
}

.header-line {
    height: 5px;
    width: 260px;
    background: #0f8a57;
    border-radius: 20px;
    margin-top: 16px;
}

/* BACK BUTTON */

.btn-back {
    border: 1px solid #d8e2dc;
    background: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-weight: 500;
    color: #1c5c45;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    font-size: 15px;
}

.btn-back:hover {
    background: #f5faf7;
}

/* TITLE */

.page-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #082c2a;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* CARD */

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2ef;
    position: relative;
}

/* TOP PROFILE */

.profile-area {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.profile-image {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7a4d, #0a5e3b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    box-shadow: 0 8px 18px rgba(15, 122, 77, 0.3);
}

.profile-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0d1f1f;
}

.profile-info p {
    margin-bottom: 6px;
    font-size: 16px;
    color: #5f6770;
}

.profile-info span {
    font-size: 15px;
    color: #5f6770;
}

.chicken-image {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 120px;
    opacity: 0.95;
}

/* INFO ITEM */

.info-box {
    border: 1px solid #ebeeec;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    transition: 0.3s;
}

.info-box:hover {
    background: #f7faf8;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-contact {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #e7f6ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0f7a4d;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #142222;
    margin-bottom: 2px;
}

.info-sub {
    font-size: 14px;
    color: #7a8087;
}

.arrow-icon {
    font-size: 20px;
    color: #5f6770;
}

/* BUTTON */

.btn-contact {
    margin-top: 12px;
    background: linear-gradient(135deg, #11a060, #0c7c4b);
    border: none;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(16, 150, 92, 0.25);
    transition: 0.3s;
    text-decoration: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
}

/* INFO ALERT */

.info-alert {
    margin-top: 35px;
    background: #f1f8f4;
    border: 1px solid #d9ebe0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.alert-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1aa567;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.alert-text {
    font-size: 16px;
    color: #35524c;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    .main-wrapper {
        padding: 18px;
        border-radius: 18px;
    }

    .system-title {
        font-size: 18px;
    }

    .header-line {
        width: 170px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .contact-card {
        padding: 18px;
        border-radius: 18px;
    }

    .profile-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-image {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }

    .profile-info h2 {
        font-size: 22px;
    }

    .info-box {
        padding: 14px;
    }

    .icon-contact {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 14px;
    }

    .chicken-image {
        display: none;
    }

    .info-alert {
        padding: 18px;
    }

    .alert-text {
        font-size: 14px;
    }
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.logo-img1 {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
