/* feedback-style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.feedback-section {
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
}

.feedback-container {
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 12px;
}

.feedback-header {
    background: linear-gradient(135deg, #0f9d58 0%, #1fbf75 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 12px 12px 0 0;
}

.feedback-header h3 {
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feedback-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
}

.feedback-form label {
    font-size: 14px;
    color: #333;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.feedback-input,
.feedback-select,
.feedback-textarea {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    color: #444;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.feedback-input:focus,
.feedback-select:focus,
.feedback-textarea:focus {
    border-color: #0f9d58;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 157, 88, 0.1);
    outline: none;
}

.feedback-textarea {
    resize: vertical;
}

.feedback-submit-btn {
    background: #0f9d58;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 157, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.feedback-submit-btn:hover {
    background: #0c8248;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 157, 88, 0.4);
}

.feedback-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(15, 157, 88, 0.3);
}

.feedback-submit-btn:disabled {
    background: #a5d6b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Spinner for loading state */
.btn-spinner {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    vertical-align: text-bottom;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    margin-right: 8px;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Custom Banner Styles */
.feedback-banner {
    position: relative;
    background: url('../images/1.jpeg') no-resize;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.feedback-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(7, 43, 27, 1) 0%, rgba(10, 56, 36, 0.95) 45%, rgba(10, 56, 36, 0.4) 75%, rgba(10, 56, 36, 0) 100%);
    z-index: 1;
}

.feedback-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.feedback-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feedback-banner-text {
    font-size: 1.15rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-bottom: 2rem;
}

.banner-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.banner-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
}

.btn-give-feedback {
    background-color: #fbc02d;
    color: #212121;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-give-feedback:hover {
    background-color: #f9a825;
    color: #000;
}

.btn-track-feedback {
    background-color: transparent;
    color: white;
    font-weight: 500;
    border: 1px solid white;
    padding: 12px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-track-feedback:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
