/* About page specific styles */
.about-page {
    background: var(--bg-primary);
    min-height: calc(100vh - 76px);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.about-page::before {
    display: none;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glow-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
    padding: 2rem 0;
    transition: all 0.3s ease, color 0.3s ease;
    letter-spacing: -2px;
}

.glow-title .letter {
    display: inline-block;
    position: relative;
    color: var(--text-secondary);
    margin-right: -1px;
    transition: transform 0.12s ease, color 0.12s ease, text-shadow 0.12s ease;
    cursor: default;
}

.glow-title .letter.glowing {
    text-shadow:
        0 0 10px rgba(255, 153, 0, 0.8),
        0 0 20px rgba(255, 153, 0, 0.6),
        0 0 30px rgba(255, 119, 0, 0.4),
        0 0 40px rgba(255, 119, 0, 0.3);
    transform: scale(1.08);
    color: var(--text-white);
}

.subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-muted-white);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.section-card {
    background: #ff9900;
    color: #000000;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #ff7700, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.section-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 153, 0, 0.5);
    box-shadow: 0 25px 50px rgba(255, 153, 0, 0.2);
}

.section-card:hover::before {
    transform: scaleX(1);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title-icon {
    font-size: 2rem;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.section-title-icon i {
    color: #000000 !important;
}

.section-text {
    color: rgba(0, 0, 0, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #ff9900;
    color: #000000;
    border: 1px solid var(--tile-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 153, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.3);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.feature-icon i {
    color: #000000 !important;
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-description {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.6);
}

.process-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-description {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: #ff9900;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 153, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #000000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: #ff9900;
    color: #000000;
    border-left: 4px solid #ffffff;
    border-image: none;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease, background 0.3s ease;
}

.value-item:hover {
    background: var(--bg-secondary);
    transform: translateX(8px);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.value-title i {
    color: #000000;
}

.value-description {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem;
    }

    .glow-title {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -1px;
        padding: 1.5rem 0;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .section-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-title-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


