/* =================================
   ABOUT PAGE STYLES
   ================================= */

.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 4rem 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-badge-text {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(45deg, #f0f2f5, #e1e8ed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.content-section {
    padding: 4rem 0;
    background: white;
}

.content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.story-content {
    text-align: left;
}

.story-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.mission-vision-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.mission-icon,
.vision-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-icon svg,
.vision-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mission-title,
.vision-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mission-text,
.vision-text {
    color: #6b7280;
    line-height: 1.6;
}

.values-section {
    padding: 4rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-accessibility .value-icon { background: linear-gradient(135deg, #10b981, #047857); }
.value-excellence .value-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.value-community .value-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.value-innovation .value-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.value-impact .value-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.value-transparency .value-icon { background: linear-gradient(135deg, #84cc16, #65a30d); }

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

/* =================================
   CONTACT PAGE STYLES
   ================================= */

.contact-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.form-footer-text {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* RESPONSIVE DESIGN FOR CONTACT PAGE */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 1.875rem;
    }
    
    .contact-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
}

/* =================================
   COURSE DETAIL PAGE STYLES
   ================================= */

.course-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 2rem 0;
    color: white;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.course-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.course-image-container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 300px;
    background: #f8fafc;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.course-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.course-meta-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.course-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-content {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.course-section {
    margin-bottom: 2.5rem;
}

.course-section:last-child {
    margin-bottom: 0;
}

.course-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.course-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.lesson-list {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.lesson-item:last-child {
    margin-bottom: 0;
}

.lesson-title {
    font-weight: 500;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lesson-number {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 2rem;
    text-align: center;
}

.lesson-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.review-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-author {
    font-weight: 600;
    color: #1f2937;
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-text {
    color: #6b7280;
    line-height: 1.6;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-sm .btn-icon {
    width: 1rem;
    height: 1rem;
}

/* RESPONSIVE DESIGN FOR COURSE PAGE */
@media (max-width: 768px) {
    .course-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .course-image-container {
        height: 200px;
    }
    
    .course-title {
        font-size: 1.5rem;
    }
    
    .course-meta {
        gap: 0.75rem;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .lesson-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .lesson-status {
        align-self: flex-end;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 

/* Profile page styles moved to header.css to prevent conflicts */