/**
 * About Page Styles
 */

/* Override GeneratePress containers for full width */
.page-template-page-about {
    max-width: 100% !important;
}

.page-template-page-about .site-content,
.page-template-page-about .content-area,
.page-template-page-about .inside-article {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.doa-about-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Container */
.doa-about-page .doa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.doa-about-page section {
    padding: 80px 0;
}

.doa-about-page h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 30px;
    color: white;
}

.hero-intro {
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 20px;
    font-weight: 600;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Mission Section */
.about-mission {
    background: white;
}

.mission-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin: 0 auto 50px;
    max-width: 800px;
    line-height: 1.6;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mission-point {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-point p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.mission-point strong {
    color: #333;
}

/* What We Do Section */
.about-what-we-do {
    background: #f9f9f9;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.what-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.what-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.what-card h3 i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #667eea;
}

.what-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px;
}

.search-features,
.professional-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.search-features li,
.professional-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.search-features i {
    color: #3a9d82;
    margin-top: 4px;
    flex-shrink: 0;
}

.professional-features i {
    color: #667eea;
    margin-top: 4px;
    flex-shrink: 0;
}

.card-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.doa-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    margin-top: 20px;
}

.doa-btn-primary {
    background: linear-gradient(135deg, #3a9d82 0%, #2d7a66 100%);
    color: white;
}

.doa-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 157, 130, 0.4);
}

.doa-btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.doa-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Why Choose Section */
.about-why-choose {
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #333;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Values Section */
.about-values {
    background: #f9f9f9;
}

.values-table {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-row:last-child {
    border-bottom: none;
}

.value-row:hover {
    background: #f9f9f9;
}

.value-name {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 2px solid #f0f0f0;
}

.value-description {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 80px;
}

.about-cta h2 {
    color: white;
    -webkit-text-fill-color: white;
}

.about-cta p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.doa-btn-light {
    background: white;
    color: #667eea;
}

.doa-btn-light:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.doa-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.doa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .mission-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .doa-about-page section {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 18px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .doa-about-page h2 {
        font-size: 32px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-row {
        grid-template-columns: 1fr;
    }

    .value-name {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding: 20px;
    }

    .value-description {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .doa-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
