﻿/* Additional styles for Feedback page */
.feedback-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .feedback-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .feedback-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .feedback-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

/* Feedback Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Feedback Form */
.feedback-form-column .feedback-form {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    border: 1px solid #2f2822;
}

.feedback-form h2 {
    color: #e6b18c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .feedback-form h2 i {
        color: #c47d58;
    }

.feedback-form p {
    color: #9a877a;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        color: #e6b18c;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.4rem;
    }

        .form-group label i {
            color: #c47d58;
            margin-right: 6px;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        background: #221d19;
        border: 1px solid #2f2822;
        border-radius: 12px;
        color: #ece3db;
        font-size: 0.95rem;
        transition: border-color 0.3s, box-shadow 0.3s;
        font-family: 'Inter', sans-serif;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c47d58;
            box-shadow: 0 0 0 3px rgba(196, 125, 88, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #6b5544;
        }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a877a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        cursor: pointer;
    }

        .form-group select option {
            background: #1a1714;
            color: #ece3db;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-group input[type="file"] {
        padding: 0.6rem;
        cursor: pointer;
    }

        .form-group input[type="file"]::file-selector-button {
            padding: 0.4rem 1rem;
            border-radius: 8px;
            border: 1px solid #3d322b;
            background: #2c2520;
            color: #c7b2a0;
            cursor: pointer;
            transition: all 0.3s;
        }

            .form-group input[type="file"]::file-selector-button:hover {
                background: #3d322b;
                border-color: #c47d58;
            }

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    cursor: pointer;
}

    .rating-stars i {
        color: #3d322b;
        transition: all 0.3s ease;
    }

        .rating-stars i.active {
            color: #fbbf24;
        }

        .rating-stars i:hover {
            transform: scale(1.2);
        }

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #c47d58;
    color: #0e0d0c;
    border: none;
    padding: 0.9rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

    .submit-btn:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
    }

    .submit-btn:active {
        transform: scale(0.97);
    }

/* Info Cards */
.feedback-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #1a1714;
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .info-card:hover {
        border-color: #c47d58;
    }

    .info-card > i {
        font-size: 2rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.5rem;
    }

    .info-card h3 {
        color: #e6b18c;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .info-card p {
        color: #c7b2a0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-card ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
    }

        .info-card ul li {
            color: #c7b2a0;
            font-size: 0.9rem;
            padding: 0.2rem 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .info-card ul li::before {
                content: "✓";
                color: #4ade80;
                font-weight: 700;
            }

/* Timeline Steps */
.timeline-steps {
    margin-top: 0.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #2f2822;
}

    .step:last-child {
        border-bottom: none;
    }

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #c47d58;
    color: #0e0d0c;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
}

.step h4 {
    color: #e6b18c;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.step p {
    color: #9a877a;
    font-size: 0.8rem;
    margin: 0;
}

/* Quick Contact */
.quick-contact {
    background: #1e2a22;
    border-color: #2d4a3a;
}

.quick-contact-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

    .quick-btn.call {
        background: #4ade80;
        color: #0e0d0c;
    }

        .quick-btn.call:hover {
            background: #6ee7a4;
            transform: translateY(-2px);
        }

    .quick-btn.whatsapp {
        background: #25D366;
        color: #fff;
    }

        .quick-btn.whatsapp:hover {
            background: #20b858;
            transform: translateY(-2px);
        }

    .quick-btn.email {
        background: #2c2520;
        color: #e6b18c;
        border: 1px solid #3d322b;
    }

        .quick-btn.email:hover {
            background: #3d322b;
            transform: translateY(-2px);
        }

/* Feedback Categories */
.feedback-categories {
    margin-bottom: 3rem;
}

    .feedback-categories h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .feedback-categories h2 i {
            color: #c47d58;
        }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.2rem;
}

.category-card {
    background: #1a1714;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    text-align: center;
    transition: all 0.3s ease;
}

    .category-card:hover {
        border-color: #c47d58;
        transform: translateY(-4px);
    }

    .category-card i {
        font-size: 2rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.5rem;
    }

    .category-card h4 {
        color: #e6b18c;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .category-card p {
        color: #9a877a;
        font-size: 0.8rem;
        margin: 0;
    }

/* Testimonials */
.testimonials-section {
    margin-bottom: 2rem;
}

    .testimonials-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .testimonials-section h2 i {
            color: #c47d58;
        }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #1a1714;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        border-color: #c47d58;
    }

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    color: #c7b2a0;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

    .testimonial-author .name {
        color: #e6b18c;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .testimonial-author .location {
        color: #9a877a;
        font-size: 0.8rem;
    }

@media (max-width: 968px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feedback-form-column .feedback-form {
        padding: 1.8rem;
    }

    .feedback-info-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    .feedback-content .page-header h1 {
        font-size: 2rem;
    }

    .feedback-form-column .feedback-form {
        padding: 1.5rem;
    }

    .feedback-info-column {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

    .quick-btn {
        justify-content: center;
    }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rating-stars {
        font-size: 1.6rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
