/* About Us Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #355fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #355fff 0%, #6d7c87 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
}

/* Main Content */
.about-main {
    padding: 60px 0;
    background: #f8f9fa;
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #355fff 0%, #6d7c87 100%);
    border-radius: 2px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Image Placeholder */
.section-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(53, 95, 255, 0.1);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-size: 16px;
    color: #355fff;
    font-weight: 600;
    margin: 0;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.mission-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.mission-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(53, 95, 255, 0.15);
}

.mission-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #355fff 0%, #6d7c87 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.mission-content strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.mission-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(53, 95, 255, 0.15);
    border-color: #355fff;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #355fff 0%, #6d7c87 100%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #355fff 0%, #6d7c87 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(53, 95, 255, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #355fff 0%, #6d7c87 100%);
    padding: 60px 30px;
    border-radius: 12px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* Contact CTA */
.contact-section {
    margin-bottom: 0;
}

.contact-cta {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: #355fff;
    border: 2px solid #355fff;
}

.btn-secondary:hover {
    background: #355fff;
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 40px 0;
    }

    .about-hero {
        padding: 50px 0;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-text h2 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 16px;
    }

    .section-text p {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .process-step {
        gap: 20px;
    }

    .step-content {
        padding: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .contact-cta {
        padding: 40px 20px;
    }

    .contact-cta h2 {
        font-size: 26px;
    }

    .contact-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .about-hero {
        padding: 40px 0;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .about-section {
        margin-bottom: 40px;
    }

    .section-text h2 {
        font-size: 24px;
    }

    .lead-text {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .contact-cta {
        padding: 30px 15px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }
}
