/* ============================================
   AWARDS & REVIEWS PAGE - RESPONSIVE DESIGN
   ============================================ */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f5f7fa;
    line-height: 1.6;
}

/* Page Container */
.awards-reviews-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding-bottom: 30px;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 32px);
    letter-spacing: -0.3px;
}

/* Awards Section */
.awards-section {
    margin-bottom: clamp(50px, 7vw, 80px);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 50px) clamp(20px, 3vw, 40px);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.awards-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.award-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

.award-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.award-card:hover img {
    transform: scale(1.02);
}

.award-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: clamp(40px, 5vw, 60px);
}

.reviews-intro {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #64748b;
    margin-bottom: clamp(30px, 4vw, 40px);
    font-style: italic;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(30px, 4vw, 40px);
}

/* Review Cards */
.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(20px, 3vw, 28px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

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

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #667eea;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.review-score {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    white-space: nowrap;
}

/* Review Text */
.review-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

/* Review Author */
.review-author {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
    color: #64748b;
    text-align: right;
    margin-top: auto;
}

/* Hidden Review Animation */
.hidden-review {
    display: none;
}

.hidden-review.show {
    animation: slideIn 0.4s ease forwards;
}

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

/* Toggle Button */
.button-container {
    display: flex;
    justify-content: center;
    margin: clamp(30px, 4vw, 40px) 0;
}

.btn-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(14px, 2.5vw, 16px) clamp(28px, 4vw, 36px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.3px;
}

.btn-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

.btn-toggle:active {
    transform: translateY(0);
}

#btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

/* Transparency Notice */
.transparency-notice {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.04) 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: clamp(18px, 3vw, 24px);
    margin-top: clamp(40px, 5vw, 60px);
    text-align: center;
}

.transparency-notice p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #065f46;
    line-height: 1.7;
    margin: 0;
}

.transparency-notice strong {
    color: #047857;
    font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .awards-reviews-page {
        padding: 60px 30px;
    }

    .reviews-container {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .awards-reviews-page {
        padding: 40px 20px;
    }

    .page-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .awards-section {
        margin-bottom: 50px;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .award-card {
        padding: 20px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .transparency-notice {
        padding: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .awards-reviews-page {
        padding: 30px 16px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .awards-section {
        padding: 24px 16px;
    }

    .review-card {
        padding: 18px;
        border-radius: 12px;
    }

    .review-score {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .btn-toggle {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1440px) {
    .awards-reviews-page {
        max-width: 1400px;
    }

    .reviews-container {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 32px;
    }
}

/* Accessibility */
.btn-toggle:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .btn-toggle,
    .button-container {
        display: none;
    }

    .hidden-review {
        display: block !important;
    }
}
