/* === INTRO SECTION === */
.complaint-intro {
    text-align: center;
    padding: 20px 20px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8fcf8 0%, #ffffff 100%);
    overflow: hidden;
}

.complaint-intro::before,
.complaint-intro::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle at center, rgba(20,106,14,0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.complaint-intro::before {
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
}

.complaint-intro::after {
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
}

.complaint-intro .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 15px;
}

.complaint-intro h1 {
    color: #146A0E;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.complaint-intro .divider {
    width: 70px;
    height: 4px;
    background: #146A0E;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.complaint-intro p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* === FORM SECTION === */
.complaint-form-section {
    background: #f9fbf9;
    padding: 40px 20px 80px;
}

.form-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.form-container:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.form-container h2 {
    color: #146A0E;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

label {
    display: block;
    margin-top: 15px;
    color: #333;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #146A0E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 106, 14, 0.15);
}

button {
    margin-top: 25px;
    background: #146A0E;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}

button:hover {
    background: #12840b;
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .complaint-intro {
        padding: 80px 20px 40px;
    }

    .complaint-intro h1 {
        font-size: 1.8rem;
    }

    .complaint-intro p {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 25px;
    }
}
