.elementor-1222 .elementor-element.elementor-element-1dde4fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1222 .elementor-element.elementor-element-b82b367{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1222 .elementor-element.elementor-element-ce2477f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d92e8d3 *//* Feedback Hero Section */

.feedback-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Styling */
.feedback-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.feedback-hero-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

.feedback-hero-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Main Container */
.feedback-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

/* Header Section */
.feedback-hero-header {
    margin-bottom: 60px;
}

/* Section Badge */
.feedback-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feedback-hero-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Main Title */
.feedback-hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description Text */
.feedback-hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.feedback-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* CTA Section */
.feedback-hero-cta {
    margin-top: 60px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(0);
    text-decoration: none;
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: scale(1.1);
}

/* Animations */
@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-hero-header {
    animation: fadeInUp 0.8s ease-out;
}

.feedback-stats {
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.feedback-hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feedback-hero-container {
        padding: 60px 30px;
    }
    
    .feedback-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .feedback-hero-container {
        padding: 60px 20px;
    }
    
    .feedback-stats {
        gap: 30px;
        margin: 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feedback-hero-badge {
        margin-bottom: 24px;
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 16px 32px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .feedback-hero-container {
        padding: 50px 15px;
    }
    
    .feedback-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .feedback-hero-badge {
        margin-bottom: 20px;
        padding: 8px 16px;
    }
    
    .badge-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .feedback-hero-container {
        padding: 40px 15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        gap: 8px;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-icon {
        font-size: 1rem;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6c3741b *//* Feedback Testimonials Section */

.feedback-testimonials-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 120px 0;
}

/* Background Styling */
.feedback-testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.feedback-testimonials-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.8;
}

.feedback-testimonials-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Main Container */
.feedback-testimonials-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.feedback-testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Section Badge */
.feedback-testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feedback-testimonials-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Main Title */
.feedback-testimonials-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description Text */
.feedback-testimonials-description {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Loading States */
.testimonials-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.testimonials-loading p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

.no-testimonials {
    text-align: center;
    padding: 80px 20px;
}

.no-testimonials-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-testimonials h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
    font-weight: 600;
}

.no-testimonials p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Avatar */
.testimonial-avatar {
    margin-bottom: 24px;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-image {
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

/* Name */
.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
}

/* Rating */
.testimonial-rating {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-card:hover .testimonial-rating {
    transform: scale(1.1);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: rgba(59, 130, 246, 0.3);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: rgba(59, 130, 246, 0.3);
    position: absolute;
    bottom: -25px;
    right: -15px;
    font-family: serif;
}

/* Date */
.testimonial-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-testimonials-header {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .feedback-testimonials-container {
        padding: 0 30px;
    }
    
    .testimonials-grid {
        gap: 24px;
    }
    
    .feedback-testimonials-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .feedback-testimonials-section {
        padding: 80px 0;
    }
    
    .feedback-testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 32px 24px;
        max-width: 100%;
    }
    
    .feedback-testimonials-header {
        margin-bottom: 40px;
    }
    
    .feedback-testimonials-badge {
        margin-bottom: 24px;
        padding: 10px 16px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .feedback-testimonials-title {
        margin-bottom: 24px;
    }
    
    .avatar-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 1.125rem;
    }
    
    .testimonial-rating {
        font-size: 16px;
    }
    
    .load-more-container {
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .feedback-testimonials-section {
        padding: 60px 0;
    }
    
    .feedback-testimonials-container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .feedback-testimonials-badge {
        margin-bottom: 20px;
        padding: 8px 14px;
    }
    
    .feedback-testimonials-title {
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
    
    .load-more-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feedback-testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .feedback-testimonials-header {
        margin-bottom: 32px;
    }
    
    .testimonials-loading {
        padding: 40px 20px;
    }
    
    .no-testimonials {
        padding: 60px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2ae87bc *//* Feedback Form Section */

.feedback-form-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 120px 0;
}

/* Background Styling */
.feedback-form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.feedback-form-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.feedback-form-background .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Main Container */
.feedback-form-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.feedback-form-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Section Badge */
.feedback-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feedback-form-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Main Title */
.feedback-form-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description Text */
.feedback-form-description {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Wrapper */
.feedback-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Form Styling */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.optional {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Input Fields */
.form-input {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Textarea */
.form-textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Form Hints */
.form-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Rating Container */
.rating-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.star-rating {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.star {
    font-size: 2rem;
    transition: all 0.2s ease;
    opacity: 0.3;
    user-select: none;
}

.star:hover {
    transform: scale(1.2);
}

.rating-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    min-height: 24px;
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.privacy-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.privacy-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    margin-top: 12px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-icon {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Success and Error Messages */
.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-top: 8px;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgba(34, 197, 94, 0.9);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.9);
}

.success-icon,
.error-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-text,
.error-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-form-header {
    animation: fadeInUp 0.8s ease-out;
}

.feedback-form-wrapper {
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feedback-form-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .feedback-form-section {
        padding: 80px 0;
    }
    
    .feedback-form-container {
        padding: 0 20px;
    }
    
    .feedback-form-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .feedback-form-header {
        margin-bottom: 40px;
    }
    
    .feedback-form-badge {
        margin-bottom: 24px;
        padding: 10px 16px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .feedback-form-title {
        margin-bottom: 24px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .feedback-form-section {
        padding: 60px 0;
    }
    
    .feedback-form-container {
        padding: 0 15px;
    }
    
    .feedback-form-wrapper {
        padding: 28px 20px;
    }
    
    .feedback-form-badge {
        margin-bottom: 20px;
        padding: 8px 14px;
    }
    
    .feedback-form-title {
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .star {
        font-size: 1.6rem;
        gap: 6px;
    }
    
    .star-rating {
        gap: 6px;
    }
    
    .privacy-notice {
        padding: 12px;
    }
    
    .privacy-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .feedback-form-section {
        padding: 50px 0;
    }
    
    .feedback-form-wrapper {
        padding: 24px 16px;
    }
    
    .feedback-form-header {
        margin-bottom: 32px;
    }
    
    .feedback-form {
        gap: 20px;
    }
    
    .star {
        font-size: 1.4rem;
    }
    
    .star-rating {
        gap: 4px;
    }
}/* End custom CSS */