/* ===== ABOUT.CSS - PIPSBULL FX ===== */
/* Specific styles for about page */

/* Profile Section */
.profile-section {
    padding: 60px 5vw;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-left {
    text-align: center;
}

.profile-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: rgba(214,0,0,0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(214,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.profile-avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214,0,0,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.profile-username {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 20px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 100px;
}

.profile-username i {
    margin-right: 5px;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.profile-right {
    color: #fff;
}

.profile-right h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 20px;
}

.profile-right h2 span {
    color: var(--primary);
}

.profile-right p {
    text-align: left;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-box {
    background: rgba(214,0,0,0.05);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
}

.quote-box i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.quote-box p {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    margin: 0 0 10px 30px;
}

.quote-author {
    color: var(--primary);
    font-weight: 600;
    margin-left: 30px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 15px;
}

.feature-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

/* Values Section */
.values-section {
    padding: 60px 5vw;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(214,0,0,0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: rgba(214,0,0,0.2);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

/* Journey Section */
.journey-section {
    padding: 60px 5vw;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 30px);
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: left;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 5vw;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-follow {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-follow p {
    font-size: 14px;
    margin-bottom: 15px;
}

.follow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    background: rgba(214,0,0,0.1);
    border: 1px solid rgba(214,0,0,0.2);
    border-radius: 100px;
    transition: all 0.3s;
}

.follow-link:hover {
    background: rgba(214,0,0,0.2);
    transform: translateY(-2px);
}

.follow-link i {
    color: var(--primary);
    font-size: 20px;
}

/* Responsive About Page */
@media (max-width: 900px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-left {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        left: 50px !important;
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 20px;
        width: 20px;
        height: 20px;
        background: var(--primary);
        border-radius: 50%;
        z-index: 1;
        box-shadow: 0 0 0 4px rgba(214,0,0,0.2);
    }
}

@media (max-width: 600px) {
    .profile-card {
        padding: 25px;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-username {
        font-size: 16px;
    }
    
    .profile-right h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .quote-box p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .profile-avatar {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .profile-username {
        font-size: 14px;
    }
}