/* About Page Specific Styles - Modern Asymmetric Style */
.about-page-wrap {
    padding-bottom: 0;
}

/* Page Hero */
.about-hero {
    position: relative;
    height: 480px;
    background: #0f0524;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 1;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 5, 36, 0.8) 0%, rgba(58, 21, 128, 0.6) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* Company Intro Section - Asymmetric */
.about-intro-section {
    padding: 120px 0;
    background: #fff;
}

.about-intro-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-intro-visual {
    flex: 0 0 580px;
    position: relative;
}

.about-intro-img {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(124, 58, 237, 0.12);
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-content {
    flex: 1;
}

.about-sub-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7c3aed;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-sub-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, transparent);
    border-radius: 2px;
}

.about-intro-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-intro-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-intro-content strong {
    color: #7c3aed;
}

/* Values Section */
.about-values-section {
    padding: 120px 0;
    background: #fcfbfe;
    position: relative;
    overflow: hidden;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered .about-sub-tag {
    justify-content: center;
}

.section-header-centered h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

.about-value-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(124, 58, 237, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-value-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.05);
    line-height: 1;
    font-family: 'Arial', sans-serif;
    transition: all 0.5s;
}

.about-value-card:hover .about-value-num {
    color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.about-value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(124, 58, 237, 0.2);
    border-color: transparent;
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 35px;
    background: #f8f5ff;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    position: relative;
}

.about-value-card:hover .about-value-icon {
    background: #fff;
    transform: scale(1.1);
}

.about-value-icon svg {
    width: 44px;
    height: 44px;
}

.about-value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.about-value-desc, .about-value-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    transition: color 0.3s;
}

.about-value-card:hover h3,
.about-value-card:hover p {
    color: #fff;
}

.card-bg-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-value-card:hover .card-bg-shape {
    transform: scale(1.5);
}

/* Vision/Mission Section */
.about-mission-section {
    padding: 120px 0;
    background: #0f0524;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-mission-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(15, 5, 36, 0) 70%);
}

.about-mission-content {
    position: relative;
    z-index: 2;
}

.about-mission-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-mission-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

