
/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.section-padding {
    padding: 100px 0;
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    color: #495057;
    position: relative;
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(242, 101, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 164, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 47, 92, 0.15) 0%, transparent 50%);
    z-index: 0;
}

/* Company Intro */
.company-intro {
    background: #FFFFFF;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.3);
    border-radius: 50px;
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-content p {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.intro-stat .number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-orange);
}

.intro-stat .label {
    color: #495057;
    font-size: 14px;
}

.intro-visual {
    display: grid;
    gap: 20px;
}

.visual-card {
    background: #F1F3F5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all var(--transition-fast);
}

.visual-card:hover {
    transform: translateX(10px);
    border-color: rgba(242, 101, 34, 0.3);
}

.visual-card:nth-child(2):hover {
    border-color: rgba(0, 164, 200, 0.3);
}

.visual-card:nth-child(3):hover {
    border-color: rgba(139, 47, 92, 0.3);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.visual-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.visual-card p {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

/* Vision & Mission */
.vision-mission {
    background: #F8F9FA;
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #F1F3F5;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.vm-card.vision::before {
    background: linear-gradient(90deg, #F26522, #FF8C42);
}

.vm-card.mission::before {
    background: linear-gradient(90deg, #00A4C8, #4ECDC4);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vm-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.vm-card p {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #868E96;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: bold;
}

.vm-card.mission .vm-list li::before {
    color: var(--color-teal);
}

/* Founder Section */
.founder-section {
    background: #FFFFFF;
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

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

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-orange);
    border-radius: 30px;
    z-index: -1;
}

.founder-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.founder-title {
    display: block;
    font-size: 18px;
    color: var(--color-teal);
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-bio {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-credentials {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background: #F1F3F5;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.credential {
    text-align: center;
}

.cred-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cred-label {
    font-size: 13px;
    color: #495057;
}

.founder-quote {
    background: #F1F3F5;
    border-left: 4px solid var(--color-orange);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.founder-quote svg {
    margin-bottom: 15px;
    opacity: 0.8;
}

.founder-quote p {
    font-size: 18px;
    font-style: italic;
    color: #868E96;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    background: #F8F9FA;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #F1F3F5;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: var(--shadow-card);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value-item {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-fast);
}

.value-item:nth-child(4n) {
    border-right: none;
}

.value-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.value-item:hover {
    background: #F1F3F5;
}

.value-letter {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #FFFFFF;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item:nth-child(4n) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }

    .value-item:nth-last-child(-n+4) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .value-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .founder-content h2 {
        font-size: 32px;
    }

    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }

    .founder-credentials {
        flex-direction: column;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: none !important;
    }

    .value-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
