/* About Page Hero */
.page-hero-about {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--global-palette3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--global-palette1);
}

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero-about h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--global-palette1);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero-about {
        padding: 120px 20px 60px;
    }
}

/* Our Story Section */
.about-our-story {
    padding: 100px 40px;
    background: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    margin-bottom: 60px;
}

.story-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--global-palette1);
    margin: 16px 0 24px;
    line-height: 1.2;
}

.story-lead {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 50px;
    max-width: 900px;
}

.story-lead strong {
    color: var(--global-palette1);
    font-weight: 700;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story-block {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--global-palette3);
}

.story-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 16px;
}

.story-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--global-palette3);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .about-our-story {
        padding: 60px 20px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Section */
.about-why-choose {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--global-palette1);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.section-header-centered p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-card {
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--global-palette3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff914d;
    color: #ff914d;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon svg {
    stroke: var(--global-palette1);
    color: var(--global-palette1);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 14px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.why-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    border-radius: 16px;
    margin-top: 40px;
}

.why-cta h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.why-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.why-cta .btn-primary {
    background: var(--global-palette3);
    padding: 18px 40px;
    font-size: 17px;
}

.why-cta .btn-primary:hover {
    background: #b8964e;
}

@media (max-width: 768px) {
    .about-why-choose {
        padding: 60px 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-cta {
        padding: 40px 20px;
    }
}

/* Values Section */
.about-values {
    padding: 100px 40px;
    background: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.value-card {
    padding: 50px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    color: #ffffff;
}

.vision-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95) 0%, rgba(184, 150, 78, 0.95) 100%);
    color: #ffffff;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    color: #ffffff;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    opacity: 1;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.value-card p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.values-commitment {
    padding: 60px 50px;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 60px;
}

.values-commitment h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--global-palette1);
    text-align: center;
    margin-bottom: 40px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.commitment-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.commitment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ff914d;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.commitment-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: var(--global-palette1);
    transform: scale(1.1);
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.commitment-item strong {
    color: var(--global-palette1);
    font-weight: 700;
}

.final-cta {
    text-align: center;
    padding: 40px 0;
}

.final-cta p {
    font-size: 20px;
    color: var(--global-palette1);
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-values {
        padding: 60px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-commitment {
        padding: 40px 25px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}