/* =========================
   PARTNERSHIP SECTION
========================= */
.partnership-section {
    background: linear-gradient(135deg, #fff, #fff);
    padding: 100px 0 60px 0; /* atas 100px, bawah 60px */
}

/* Judul & deskripsi rata kiri */
.pages-head {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Partnership Section Title */
.pages-head h1.partnership-title {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    margin: 0; /* hilangkan margin default */
}

.pages-head p {
    font-size: 16px;
    color: #333;
    margin-top: 8px; /* jarak tipis dari h1 */
    margin-bottom: 0;
}

/* Partnership Form Card */
.partnership-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Hover efek card */
.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Input Fields (text, email, tel, etc) */
.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: none;
    box-sizing: border-box;
    appearance: none;
    background-color: #fff;
    color: #333;
}

/* Focus effect */
.form-input:focus {
    border-color: #000072;
    box-shadow: 0 0 0 2px rgba(0, 0, 114, 0.2);
    outline: none;
}

/* Select Dropdown Specific */
select.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6z'%20fill%3D'%23666'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    padding-right: 40px;
    cursor: pointer;
}

/* Textarea */
.textarea-input {
    resize: none;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background: #000072;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: none;
    box-sizing: border-box;
}

.btn-submit:hover {
    background: #3333cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 114, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .partnership-card {
        padding: 30px 20px;
    }

    .pages-head h1.partnership-title {
        font-size: 26px;
    }

    .pages-head p {
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px 16px;
    }
}
