/* --- Testimonial Section Layout --- */
.testimonial-section {
    padding: 80px 20px;
    background: #050505; 
    color: #fff;
    text-align: center;
}

.testimonial-section h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #d4af37;
    letter-spacing: 1px;
}

/* --- The Grid --- */
.testimonial-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- The Glass Cards --- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.06);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    padding: 2px;
}

.rating {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 15px;
}

/* --- Submission Form Section --- */
.form-section {
    padding: 80px 20px;
    background: #050505;
}

.glass-card {
    background: rgba(20, 20, 20, 0.9); /* Darker solid background for readability */
    backdrop-filter: blur(20px);
    border: 1px solid #333;
    padding: 50px;
    border-radius: 25px;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.glass-card h3 {
    color: #d4af37;
    margin-bottom: 30px;
}

/* --- PREMIUM INPUT STYLING --- */
.glass-card input, 
.glass-card textarea, 
.glass-card select {
    width: 100%;
    background: #0a0a0a !important; /* Forces solid dark input for contrast */
    border: 1px solid #444;
    color: #ffffff !important; /* Ensures white text color */
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-card input::placeholder, 
.glass-card textarea::placeholder {
    color: #666;
}

.glass-card input:focus, 
.glass-card textarea:focus,
.glass-card select:focus {
    border-color: #d4af37;
    outline: none;
    background: #111 !important;
}

.btn-submit {
    background: #d4af37;
    color: #000;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c5a02e;
    transform: scale(1.02);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .glass-card {
        padding: 30px;
    }
    .testimonial-display-grid {
        grid-template-columns: 1fr;
    }
}