/* ========================================
   ABOUT US PAGE STYLES
   Professional LMS Theme
   ======================================== */

/* CSS Variables - Matching existing theme */
:root {
    --primary-navy: #1a2332;
    --primary-gold: #d4af37;
    --accent-teal: #2c5f5d;
    --accent-burgundy: #72242c;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e8ebed;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
}

/* Decorative background pattern */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(212, 175, 55, 0.05) 40%, rgba(212, 175, 55, 0.05) 60%, transparent 60%),
        linear-gradient(150deg, transparent 40%, rgba(44, 95, 93, 0.05) 40%, rgba(44, 95, 93, 0.05) 60%, transparent 60%);
    background-size: 80px 140px;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */

.who-we-are-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.section-image-wrapper:hover .section-image {
    transform: scale(1.05);
}

/* Decorative element */
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-gold);
    border-radius: 12px;
    z-index: -1;
}

.content-block {
    padding-left: 2rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Statistics Row */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-radius: 10px;
    border-top: 3px solid var(--primary-gold);
    transition: var(--transition-fast);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */

.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.mission-vision-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.mission-vision-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.card-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

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

.why-choose-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(44, 95, 93, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c99d2e 100%);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-teal);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-content {
    position: relative;
    z-index: 1;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--white);
}

.trust-point i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2rem;
    color: var(--primary-navy);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-primary-cta {
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary-cta:hover {
    background: #f0c851;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary-cta {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary-cta:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-section h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .who-we-are-section,
    .mission-vision-section,
    .why-choose-section,
    .trust-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-box {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
