/**
 * about.css
 * Specific styles for the About Us page template
 */

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/about.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.about-hero .hero-content p {
    font-size: 22px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT STORY SECTION ===== */
.about-story {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    padding-right: 20px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    color: #ffcc00;
    font-size: 20px;
    background: rgba(255, 204, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.about-feature span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* About Image Styling */
.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffcc00;
    padding: 35px;
    border-radius: 15px;
    max-width: 250px;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.accent-box {
    text-align: center;
}

.accent-box i {
    font-size: 40px;
    color: #000;
    margin-bottom: 15px;
}

.accent-box h4 {
    font-size: 22px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 700;
}

.accent-box p {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-accent {
    display: inline-block;
    background: #000;
    color: #ffcc00;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 204, 0, 0.15);
    border-color: #ffcc00;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 35px;
    color: #ffcc00;
}

.mission-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin: 15px 0 20px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1);
    border-color: #ffcc00;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 30px;
    color: #ffcc00;
}

.feature-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 204, 0, 0.15);
    border-color: #ffcc00;
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('../images/about-cta.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ffcc00;
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ffcc00;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .about-content h2 {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about-image-accent {
        left: 20px;
        bottom: -30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 42px;
    }
    
    .about-hero .hero-content p {
        font-size: 18px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-accent {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .mission-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .mission-card,
    .feature-card {
        padding: 30px 20px;
    }
}