﻿/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
        background-size: cover;
    }

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    padding: 2rem 1rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Story Section */
.company-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.story-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2563eb;
    margin-top: 2rem;
}

.story-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

    .story-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        opacity: 0.8;
    }

    .story-image::after {
        content: '🏡';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 4rem;
        z-index: 2;
    }

.story-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
    }

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Section */
.about-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.about-stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .about-stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    display: block;
}

.about-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 4px solid #f8fafc;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.team-card .position {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: #f8fafc;
}

.partners-intro {
    text-align: center;
    margin-bottom: 3rem;
}

    .partners-intro h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
    }

    .partners-intro p {
        font-size: 1.1rem;
        color: #6b7280;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0.7;
}

.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    height: 100px;
}

    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        opacity: 1;
    }

/* CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,200 1000,1000 0,800"/></svg>');
        background-size: cover;
    }

.about-cta-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: #2563eb;
        text-decoration: none;
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-secondary:hover {
        background: white;
        color: #2563eb;
        transform: translateY(-3px);
        text-decoration: none;
    }

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 50vh;
    }

        .about-hero h1 {
            font-size: 2.5rem;
        }

        .about-hero p {
            font-size: 1.1rem;
        }

    .story-content {
        gap: 3rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-text h3 {
        font-size: 1.3rem;
    }

    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .about-stats-grid {
        gap: 2rem;
    }

    .partners-intro h2,
    .section-title {
        font-size: 2rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        margin-top: -60px;
        padding-top: 60px;
    }

    .about-hero-content {
        padding: 1.5rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Story Section Mobile */
    .company-story {
        padding: 3rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 1.75rem;
    }

    .story-text h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .story-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .story-image {
        min-height: 300px;
        order: -1;
    }

    .story-placeholder {
        height: 300px;
    }

    /* Mission Section Mobile */
    .mission {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .mission p[style] {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .mission-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .mission-card h3 {
        font-size: 1.25rem;
    }

    .mission-card p {
        font-size: 0.95rem;
    }

    /* Stats Section Mobile */
    .about-stats {
        padding: 3rem 0;
    }

        .about-stats .section-title {
            font-size: 1.75rem;
            margin-bottom: 2rem;
        }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stat-item {
        padding: 1.5rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-stat-label {
        font-size: 1rem;
    }

    .about-stat-desc {
        font-size: 0.85rem;
    }

    /* Team Section Mobile */
    .team {
        padding: 3rem 0;
    }

        .team p[style] {
            font-size: 1rem !important;
            padding: 0 1rem;
        }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-card .position {
        font-size: 0.9rem;
    }

    .team-card p {
        font-size: 0.85rem;
    }

    /* Partners Section Mobile */
    .partners {
        padding: 3rem 0;
    }

    .partners-intro {
        margin-bottom: 2rem;
    }

        .partners-intro h2 {
            font-size: 1.75rem;
        }

        .partners-intro p {
            font-size: 1rem;
            padding: 0 1rem;
        }

    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .partner-logo {
        padding: 1rem;
        height: 80px;
        font-size: 1.5rem;
    }

    /* CTA Section Mobile */
    .about-cta {
        padding: 3rem 0;
    }

        .about-cta h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .about-cta p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            padding: 0 1rem;
        }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .about-hero {
        min-height: 35vh;
    }

        .about-hero h1 {
            font-size: 1.75rem;
        }

        .about-hero p {
            font-size: 0.95rem;
        }

    .story-text h2,
    .section-title,
    .partners-intro h2,
    .about-cta h2 {
        font-size: 1.5rem;
    }

    .story-text h3 {
        font-size: 1.1rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }

    .mission-card,
    .team-card {
        padding: 1.5rem 1rem;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-number {
        font-size: 1.75rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
