.feedback-section {
    padding: 130px 20px;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    background: #111;
}

.feedback-heading {
    text-align: center;
    margin-bottom: 20px;
}

.feedback-heading h1 {
    color: #f0ffad;           /* sarı rəng, portfoliodakı kimi */
    font-family: system-ui;   /* sistem fontu */
    font-weight: 800;         /* qalın başlıq */
    letter-spacing: 2px;      /* hərf aralığı */
    text-transform: uppercase;/* hamısı böyük hərf */
    font-size: 48px;          /* böyük başlıq */
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.feedback-heading p {
    color: #ddd;              /* portfoliodakı kimi açıqlama rəngi */
    font-size: 16px;
    line-height: 1.5;
}

.feedback-intro {
    text-align: center;
    color: #ddd;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Form və rəylər container */
.feedback-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* mobil üçün alt-sətir */
}

/* Form solda */
.feedback-form {
    flex: 1 1 350px; /* minimum 350px genişlik */
    max-width: 400px;
    background: #1b1b1b;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form içindəki div */
.feedback-form > form > div {
    margin-bottom: 15px;
}

/* Input və textarea */
.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 20px;
    background: #222;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.feedback-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Button */
.feedback-form button {
    background: #f0ffad;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.feedback-form button:hover {
    background: #d9ec7d;
}

/* Success və error mesajları */
#feedback-success {
    background: rgba(240, 255, 173, 0.1);
    border: 1px solid #f0ffad;
    border-radius: 10px;
    padding: 10px;
    color: #f0ffad;
    text-align: center;
    margin-top: 15px;
}

#feedback-errors {
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Feedback-lər sağda */
#feedback-list {
    flex: 2 1 600px; /* minimum 600px, soldakı formdan geniş */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    gap: 15px;
}

/* Hər feedback item */
.feedback-item {
    padding: 15px;
    border-radius: 10px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
}

.feedback-item strong {
    color: #f0ffad;
}

/* Responsive */
@media screen and (max-width: 1000px) {
    #feedback-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .feedback-container {
        flex-direction: column;
        gap: 30px;
    }

    #feedback-list {
        grid-template-columns: 1fr;
    }
}
