/* ===== ABOUT PAGE STYLES ===== */

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23FFD700" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%23FFD700" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%23FFD700" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="70" cy="80" r="1" fill="%23FFD700" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="1.8s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.header-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: var(--primary-black);
    position: relative;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.overview-content .section-badge {
    margin-bottom: 30px;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.overview-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.overview-text p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--secondary-black);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-item {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.mv-item:hover::before {
    transform: scaleX(1);
}

.mv-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.mv-item:hover .mv-icon {
    transform: scale(1.1) rotate(10deg);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.mv-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.mv-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.mv-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Company Story */
.company-story {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-dark);
    font-family: var(--font-tech);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.showcase-item {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--transition-slow);
}

.showcase-item:hover::before {
    left: 100%;
}

.showcase-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.showcase-item:hover .item-icon {
    transform: scale(1.1);
}

.item-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.showcase-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Core Values */
.core-values {
    padding: 100px 0;
    background: var(--secondary-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
}

.value-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: var(--primary-black);
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
}

.choose-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: var(--dark-gray);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.choose-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-tech);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.feature-content p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Security Layers Visualization */
.security-layers {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.layer {
    position: absolute;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.layer:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.layer-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
}

.layer-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer-4 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.layer span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.layer-1 i,
.layer-1 span {
    color: var(--primary-black);
}

/* Our Approach */
.our-approach {
    padding: 100px 0;
    background: var(--secondary-black);
}

.approach-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.timeline-content {
    flex: 1;
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 50vh;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-item {
        padding: 30px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        justify-content: space-around;
        gap: 20px;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-layers {
        width: 300px;
        height: 300px;
    }
    
    .layer-1 { width: 80px; height: 80px; }
    .layer-2 { width: 140px; height: 140px; }
    .layer-3 { width: 200px; height: 200px; }
    .layer-4 { width: 260px; height: 260px; }
    
    .approach-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 40vh;
    }
    
    .mv-item {
        padding: 25px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .choose-text h2 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .choose-feature {
        padding: 20px;
        gap: 20px;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .security-layers {
        width: 250px;
        height: 250px;
    }
    
    .layer-1 { width: 60px; height: 60px; }
    .layer-2 { width: 110px; height: 110px; }
    .layer-3 { width: 160px; height: 160px; }
    .layer-4 { width: 210px; height: 210px; }
    
    .layer i {
        font-size: 1.2rem;
    }
    
    .layer span {
        font-size: 0.8rem;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon i {
        font-size: 1.4rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
}