/* ============================================
   CV Faeyza Computer - About Page CSS
   ============================================ */

/* =============================================
   ABOUT PAGE HERO
   ============================================= */
.about-page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.about-page-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    z-index: 0;
}

.about-page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.about-page-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-page-hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* =============================================
   COMPANY STORY
   ============================================= */
.company-story {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 0.5) 100%);
    position: relative;
}

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

/* ----- Story Illustration (Vector) ----- */
.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-illustration {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 3;
    animation: pulseCentral 3s ease-in-out infinite;
}

@keyframes pulseCentral {
    0%, 100% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.3); transform: scale(1); }
    50% { box-shadow: 0 0 60px rgba(37, 99, 235, 0.5); transform: scale(1.05); }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    animation: spin linear infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-duration: 20s;
}

.ring-2 {
    width: 360px;
    height: 360px;
    animation-duration: 30s;
    border-color: rgba(6, 182, 212, 0.15);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    z-index: 2;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.icon-2 {
    bottom: 40px;
    right: 20px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 40px;
    left: 20px;
    animation-delay: 2s;
}

.icon-4 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-1 { animation-name: floatIcon; }
.icon-2 { animation-name: floatIcon; }
.icon-3 { animation-name: floatIcon; }
.icon-4 { animation-name: floatIcon; }

/* Story Text */
.story-text {
    padding: 0;
}

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 20px;
}

.story-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-paragraphs p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =============================================
   TIMELINE / MILESTONE
   ============================================= */
.milestone {
    background: var(--bg-dark);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--primary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 0;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    z-index: 2;
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: var(--transition);
    position: relative;
}

.timeline-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.timeline-item.left .timeline-card::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.timeline-item.right .timeline-card::after {
    content: '';
    position: absolute;
    top: 28px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.timeline-year {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   VISI & MISI
   ============================================= */
.vision-mission {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, var(--bg-dark) 100%);
    position: relative;
}

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

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.vision .vm-icon {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-accent);
    color: var(--primary-light);
}

.mission .vm-icon {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-light);
}

.vm-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vm-card > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-list li i {
    color: var(--accent-light);
    margin-top: 3px;
    flex-shrink: 0;
}

/* =============================================
   CORE VALUES
   ============================================= */
.core-values {
    background: var(--bg-dark);
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.value-card:hover .value-icon-wrap {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-page-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .story-visual {
        order: -1;
    }

    .story-illustration {
        width: 300px;
        height: 300px;
    }

    .central-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 280px; height: 280px; }

    .floating-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

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

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

@media (max-width: 768px) {
    .about-page-hero {
        min-height: 50vh;
    }

    .about-page-hero-content h1 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 1.7rem;
    }

    .story-illustration {
        width: 240px;
        height: 240px;
    }

    .central-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .ring-1 { width: 180px; height: 180px; }
    .ring-2 { width: 220px; height: 220px; }

    .floating-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .icon-1 { top: 10px; }
    .icon-2 { bottom: 20px; right: 10px; }
    .icon-3 { bottom: 20px; left: 10px; }
    .icon-4 { right: 5px; }

    /* Timeline Mobile */
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 11px !important;
        right: auto !important;
    }

    .timeline-card::after {
        display: none;
    }

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

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

@media (max-width: 480px) {
    .about-page-hero-content h1 {
        font-size: 1.6rem;
    }

    .story-illustration {
        width: 200px;
        height: 200px;
    }

    .central-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .ring-1 { width: 150px; height: 150px; }
    .ring-2 { width: 180px; height: 180px; }

    .floating-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

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

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

    .cta-banner-content h2 {
        font-size: 1.6rem;
    }
}

