/* TESTIMONIALS, FAQ, CONTACT, APPLY, NOTIFICATIONS - Unique Designs */

/* ========== TESTIMONIALS PAGE - Yellow/Orange Theme ========== */
.testimonials-page {
    --testimonials-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
}

.testimonials-page .page-header {
    background: var(--testimonials-gradient);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(243, 156, 18, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.25);
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--testimonials-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-details h4 {
    margin-bottom: 0.25rem;
}

.author-position {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========== FAQ PAGE - Indigo/Purple Theme ========== */
.faq-page {
    --faq-gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
}

.faq-page .page-header {
    background: var(--faq-gradient);
}

.faq-search {
    max-width: 700px;
    margin: -3rem auto 4rem;
    position: relative;
    z-index: 10;
}

.faq-search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
}

.faq-search-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c5ce7;
    font-size: 1.5rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--faq-gradient);
    color: white;
    border-color: transparent;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15);
}

.faq-question {
    padding: 1.5rem 4rem 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--faq-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #6c5ce7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== CONTACT PAGE - Cyan/Blue Theme ========== */
.contact-page {
    --contact-gradient: linear-gradient(135deg, #00cec9 0%, #0984e3 50%, #6c5ce7 100%);
}

.contact-page .page-header {
    background: var(--contact-gradient);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 206, 201, 0.15);
}

.contact-form-section h2 {
    background: var(--contact-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 206, 201, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--contact-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* ========== APPLY PAGE - Green/Blue Theme ========== */
.apply-page {
    --apply-gradient: linear-gradient(135deg, #00b894 0%, #0984e3 50%, #6c5ce7 100%);
}

.apply-page .page-header {
    background: var(--apply-gradient);
}

.apply-form-container {
    max-width: 900px;
    margin: -3rem auto 4rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 184, 148, 0.2);
    padding: 3rem;
    position: relative;
    z-index: 10;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 184, 148, 0.2);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 4px solid rgba(0, 184, 148, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--apply-gradient);
    color: white;
    border-color: transparent;
}

.form-section {
    background: rgba(0, 184, 148, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

/* ========== NOTIFICATIONS PAGE - Purple/Pink Theme ========== */
.notifications-page {
    --notifications-gradient: linear-gradient(135deg, #a29bfe 0%, #fd79a8 50%, #fdcb6e 100%);
}

.notifications-page .page-header {
    background: var(--notifications-gradient);
}

.notification-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.notification-filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid rgba(162, 155, 254, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-filter-btn:hover,
.notification-filter-btn.active {
    background: var(--notifications-gradient);
    color: white;
    border-color: transparent;
}

.notification-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(162, 155, 254, 0.2);
}

.notification-item.unread {
    border-left-color: #a29bfe;
    background: rgba(162, 155, 254, 0.05);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: var(--notifications-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.notification-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsive for All Pages */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info-card:hover {
        transform: translateX(5px);
    }

    .apply-form-container {
        padding: 2rem;
        margin: -2rem 1rem 3rem;
    }

    .form-progress {
        flex-wrap: wrap;
    }

    .progress-step {
        font-size: 0.85rem;
    }

    .faq-search {
        margin: -2rem 1rem 3rem;
    }

    .notification-item:hover {
        transform: translateX(5px);
    }
}