/* About Hero */
.about-hero-lux {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    position: relative;
}

.about-hero-lux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content-lux {
    position: relative;
    z-index: 1;
}

.about-hero-content-lux h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Mission */
.mission-lux {
    padding: 80px 0;
    background: #0f172a;
}

.mission-content-lux {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.mission-text-lux h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.mission-text-lux p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-lux {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.stat-lux {
    text-align: center;
}

.stat-lux h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.stat-lux p {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Team */
.team-lux {
    padding: 80px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.team-grid-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card-lux {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card-lux:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

.team-avatar-lux {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar-lux img {
    width: 32px;
}

.team-card-lux h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f1f5f9;
}

.team-role-lux {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.team-card-lux p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Values */
.values-lux {
    padding: 80px 0;
    background: #0f172a;
}

.values-grid-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card-lux {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-card-lux:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.value-icon-lux {
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon-lux img {
    width: 28px;
}

.value-card-lux h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.value-card-lux p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact */
.contact-lux {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.contact-content-lux h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.contact-content-lux > p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-box-lux {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1.25rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-box-lux:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.contact-icon-lux img {
    width: 24px;
}

.contact-box-lux h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.1rem;
}

.contact-box-lux p {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content-lux h1 {
        font-size: 2rem;
    }

    .stats-lux {
        gap: 2rem;
    }

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

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

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

    .about-hero-content-lux h1 {
        font-size: 1.6rem;
    }

    .stats-lux {
        flex-direction: column;
        gap: 1.5rem;
    }
}
