/**
 * ExamBlaze WGU Main Page CSS
 * Styling for WGU hub page with all sections
 * 
 * @package ExamBlaze
 * @version 1.0
 */

/* ========================================
   WGU PAGE GENERAL STYLES
   ======================================== */

.wgu-page {
    background-color: var(--bg-white);
}

.section-light {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-gradient {
    background: var(--gradient-blue);
    color: var(--text-white);
}

/* Section Spacing */
.wgu-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .wgu-section {
        padding: 50px 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-dark .section-header .section-badge {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
}

.section-gradient .section-header .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-dark .section-title,
.section-gradient .section-title {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-dark .section-subtitle,
.section-gradient .section-subtitle {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* ========================================
   WGU HERO SECTION
   ======================================== */

.wgu-hero {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05) 0%, var(--bg-light) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.wgu-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wgu-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wgu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.wgu-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.wgu-hero-title .highlight {
    color: var(--primary-blue);
}

.wgu-hero-title .highlight-orange {
    color: var(--accent-orange);
}

.wgu-hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.wgu-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat-box {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero CTA Buttons */
.wgu-hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-wgu-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: white;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-wgu-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.btn-wgu-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    color: var(--primary-blue);
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-wgu-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Hero Trust Line */
.wgu-hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
}

.wgu-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wgu-hero-trust i {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .wgu-hero {
        padding: 60px 0 50px;
    }

    .wgu-hero-title {
        font-size: 32px;
    }

    .wgu-hero-subtitle {
        font-size: 16px;
    }

    .wgu-hero-stats {
        gap: 15px;
    }

    .hero-stat-box {
        padding: 15px 20px;
        min-width: 140px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .wgu-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-wgu-primary,
    .btn-wgu-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ========================================
   WGU SERVICES SECTION
   ======================================== */

.wgu-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wgu-service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.wgu-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.wgu-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wgu-service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.service-card-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-light);
}

.service-card-features li:last-child {
    border-bottom: none;
}

.service-card-features li i {
    color: var(--color-success);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-card-courses {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card-courses-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-courses p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.service-card-price {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: var(--deep-navy);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .wgu-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wgu-services-grid {
        grid-template-columns: 1fr;
    }

    .wgu-service-card {
        padding: 30px 25px;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(15, 118, 110, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   POPULAR COURSES SECTION
   ======================================== */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.course-column {
    background: var(--bg-white);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.course-column-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-column-title i {
    color: var(--accent-orange);
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    flex-shrink: 0;
}

.course-code {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
}

.courses-note {
    margin-top: 40px;
    text-align: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.courses-note p {
    font-size: 15px;
    color: var(--text-white);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-column {
        padding: 25px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    position: relative;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-dark .step-title {
    color: var(--text-white);
}

.step-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.section-dark .step-description {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-blue);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-program {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-course {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-orange);
    font-size: 16px;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-success), #059669);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* FAQ styles handled by /assets/css/components/accordion.css */

/* ========================================
   GUARANTEES SECTION
   ======================================== */

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.guarantee-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.guarantee-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-orange);
}

.cta-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--bg-white);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.cta-trust-line {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-line i {
    color: var(--color-success);
}

.cta-additional-info {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-stats {
        gap: 20px;
    }

    .cta-stat-number {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ========================================
   ANIMATION CLASSES
   ======================================== */

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}