/* ==========================================
   ABOUT US PAGE STYLES
   About Page Layout and Components
   ========================================== */

/* Simple About Page */
.about-page {
    min-height: 60vh;
}

.about-simple {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
}

.about-header i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.about-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 0;
}

.about-content-simple {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.about-content-simple p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-content-simple p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section.reverse .about-content {
    direction: rtl;
}

.about-section.reverse .about-text {
    direction: ltr;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header.centered {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.section-header.centered p {
    color: #6b7280;
    font-size: 1.1rem;
}

.section-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #4b5563;
}

.features-list i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.highlight-item > i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    min-width: 50px;
}

.highlight-item h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 5rem 2rem;
    border-radius: 24px;
    margin: 4rem 0;
    text-align: center;
    color: white;
}

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

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section.reverse .about-content {
        direction: ltr;
    }

    .about-image {
        height: 300px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .about-simple {
        padding: 2rem 1.5rem;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-header i {
        font-size: 2rem;
    }

    .about-content-simple {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 2rem 1rem !important;
    }

    .about-simple {
        padding: 1.5rem 1rem;
    }

    .about-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-header h1 {
        font-size: 1.75rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p,
    .features-list li {
        font-size: 1rem;
    }

    .values-section {
        padding: 3rem 0;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
