.feedback-page {
    background-color: #060b14;
    background-image: radial-gradient(circle at top right, #132544 0%, #060b14 70%);
    color: #ffffff;
    min-height: 100vh;
    padding: 130px 20px 80px;
}

.feedback-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.brand-tag {
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.feedback-info h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.feedback-info h1 span {
    color: #38bdf8;
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-lead {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
    margin-bottom: 40px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.info-card-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(5px);
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.icon-wa {
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.icon-ig {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.2);
}

.info-card-item h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-card-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.feedback-form-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feedback-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.center-group {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-group small {
    color: #fca5a5;
    font-size: 12px;
    margin-top: 7px;
}

.feedback-form-box input[type="text"],
.feedback-form-box input[type="email"],
.feedback-form-box select,
.feedback-form-box textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.feedback-form-box input:focus,
.feedback-form-box select:focus,
.feedback-form-box textarea:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
}

.feedback-form-box select option {
    background: #0b1528;
    color: #fff;
}

.feedback-form-box textarea {
    resize: vertical;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 6px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    margin: 0;
}

.star-rating label::before {
    content: '★';
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffb800;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    border: none;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(14, 165, 233, 0.5);
    opacity: 0.95;
}

@media (max-width: 992px) {
    .feedback-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feedback-info h1 {
        font-size: 32px;
    }

    .feedback-lead {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .feedback-page {
        padding: 110px 16px 60px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .feedback-form-box {
        padding: 24px;
    }
}