/* ===================================
   About Page Styles
   =================================== */

/* Story Section */
.story-section {
    background: rgba(10, 14, 13, 0.95);
    position: relative;
    margin-top: 0;
}

/* First section needs extra top padding for fixed nav */
.story-section:first-of-type {
    padding-top: 180px;
}

.story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 191, 255, 0.15));
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.story-main-title {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.story-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.story-text {
    font-size: 18px;
    line-height: 1.9;
    color: #d0d8e0;
    margin-bottom: 30px;
}

.story-text strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Strategic Edge Section */
.strategic-section {
    background: linear-gradient(135deg, 
        rgba(15, 29, 50, 0.6) 0%, 
        rgba(10, 22, 40, 0.6) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.section-intro strong {
    color: #00d4ff;
    font-weight: 600;
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategic-card {
    background: linear-gradient(135deg, 
        rgba(30, 144, 255, 0.08) 0%, 
        rgba(0, 191, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    border: 2px solid rgba(30, 144, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.strategic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(30, 144, 255, 0.2);
}

.strategic-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.strategic-icon i {
    font-size: 36px;
    color: #ffffff;
}

.strategic-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.strategic-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Core Pillars Section */
.pillars-section {
    background: rgba(10, 14, 13, 0.95);
}

.pillars-table {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.6) 0%, 
        rgba(15, 29, 50, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(30, 144, 255, 0.2);
    overflow: hidden;
}

.pillar-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    border-bottom: 1px solid rgba(30, 144, 255, 0.15);
}

.pillar-row:last-child {
    border-bottom: none;
}

.pillar-header {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
}

.pillar-header .pillar-cell {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding: 25px 30px;
}

.pillar-cell {
    padding: 30px;
    display: flex;
    align-items: center;
}

.pillar-name {
    gap: 15px;
    background: rgba(30, 144, 255, 0.08);
    border-right: 2px solid rgba(30, 144, 255, 0.2);
}

.pillar-name i {
    font-size: 28px;
    color: #00d4ff;
}

.pillar-name span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.pillar-impact {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, 
        rgba(15, 29, 50, 0.8) 0%, 
        rgba(10, 22, 40, 0.8) 100%);
}

.vision-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(30, 144, 255, 0.1) 0%, 
        rgba(0, 191, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 50px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(30, 144, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 15px 40px rgba(30, 144, 255, 0.4),
        0 0 50px rgba(30, 144, 255, 0.3);
}

.vision-icon i {
    font-size: 48px;
    color: #ffffff;
}

.vision-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.vision-tagline {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e90ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-style: italic;
}

.vision-text {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e7f0;
}

/* Why Choose Section */
.why-choose-section {
    background: rgba(10, 14, 13, 0.95);
}

.why-choose-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.why-choose-item {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: linear-gradient(135deg, 
        rgba(30, 144, 255, 0.08) 0%, 
        rgba(0, 191, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(30, 144, 255, 0.2);
    border-left: 5px solid #1e90ff;
    transition: all 0.4s ease;
}

.why-choose-item:hover {
    transform: translateX(10px);
    border-color: rgba(30, 144, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(30, 144, 255, 0.2);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.choose-icon i {
    font-size: 32px;
    color: #ffffff;
}

.choose-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.choose-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.choose-content strong {
    color: #00d4ff;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 191, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(30, 144, 255, 0.2);
    border-bottom: 1px solid rgba(30, 144, 255, 0.2);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 20px;
    color: #d0e0f0;
    margin-bottom: 35px;
}

.cta-content .btn {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(30, 144, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillar-row {
        grid-template-columns: 250px 1fr;
    }
    
    .pillar-name {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .story-section:first-of-type {
        padding-top: 140px;
    }
    
    .story-header {
        margin-bottom: 40px;
    }
    
    .strategic-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-row {
        grid-template-columns: 1fr;
    }
    
    .pillar-name {
        border-right: none;
        border-bottom: 2px solid rgba(30, 144, 255, 0.2);
    }
    
    .vision-card {
        padding: 40px 30px;
    }
    
    .vision-title {
        font-size: 28px;
    }
    
    .vision-tagline {
        font-size: 22px;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .choose-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .story-section:first-of-type {
        padding-top: 130px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .strategic-card {
        padding: 30px 20px;
    }
    
    .pillar-cell {
        padding: 20px;
    }
    
    .vision-card {
        padding: 35px 20px;
    }
    
    .vision-icon {
        width: 80px;
        height: 80px;
    }
    
    .vision-icon i {
        font-size: 36px;
    }
}
