/* ============================================
   About Page Styles
   ============================================ */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a2f4f 100%);
    margin-top: 70px;
    color: var(--color-white);
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-page__text {
    max-width: 900px;
    margin: 0 auto;
}

.about-page__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.mvv {
    position: relative;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a2f4f 100%);
    color: var(--color-white);
    overflow: hidden;
}

.mvv__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mvv__particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.mvv__particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.mvv__particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.mvv__particle--small {
    width: 2px;
    height: 2px;
    background: rgba(201, 168, 106, 0.6);
    box-shadow: 0 0 4px rgba(201, 168, 106, 0.4);
}

.mvv__particle--medium {
    width: 3px;
    height: 3px;
    background: rgba(201, 168, 106, 0.5);
    box-shadow: 0 0 6px rgba(201, 168, 106, 0.5);
}

.mvv__particle--large {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(201, 168, 106, 0.6);
}

.mvv__particle--glow {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.8) 0%, transparent 70%);
    box-shadow: 0 0 12px rgba(201, 168, 106, 0.8);
    animation: particlePulse 3s ease-in-out infinite;
}

.mvv__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.mvv__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.mvv__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.mvv__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.mvv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
}

.mvv .container {
    position: relative;
    z-index: 2;
}

.mvv__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.mvv__card {
    position: relative;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 106, 0.2);
    transition: all 0.3s ease;
}

.mvv__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 106, 0.4);
    box-shadow: 0 10px 30px rgba(201, 168, 106, 0.2);
}

.mvv__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
}

.mvv__icon svg {
    width: 100%;
    height: 100%;
}

.mvv__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.mvv__description {
    line-height: 1.8;
    opacity: 0.9;
}

.ceo-message__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.ceo-message__placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.2) 0%, rgba(10, 26, 47, 0.8) 100%);
    border-radius: 8px;
}

.ceo-message__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.structure__content {
    max-width: 900px;
    margin: 0 auto;
}

.structure__content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.structure__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.structure__item {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.structure__item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-xs);
}

.structure__item p {
    color: var(--color-charcoal);
    opacity: 0.8;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .ceo-message__content {
        grid-template-columns: 1fr;
    }

    .mvv__grid {
        grid-template-columns: 1fr;
    }
    
    .mvv__gradient-orb--1,
    .mvv__gradient-orb--2,
    .mvv__gradient-orb--3 {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mvv__gradient-orb--1,
    .mvv__gradient-orb--2,
    .mvv__gradient-orb--3 {
        width: min(250px, 70vw);
        height: min(250px, 70vw);
    }
}

