/* Mos Holding - Investor Relations Premium Styles (Light Theme) */
:root {
    --brand-navy: #161522;
    --accent-gold: #AF9A74;
}

/* 📊 STOCK METRICS SECTION */
.investor-metric-card {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid rgba(167, 169, 172, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--brand-navy);
}

.investor-metric-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 40px 80px -15px rgba(22, 21, 34, 0.08);
}

/* 👥 BOARD OF DIRECTORS */
.board-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #ffffff;
    border: 1px solid rgba(167, 169, 172, 0.2);
}

.board-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(110%);
    transition: all 0.8s ease;
}

.board-card:hover .board-img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.board-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.board-card:hover .board-info {
    transform: translateY(0);
}

.board-info h3, .board-info p {
    color: var(--brand-navy) !important;
}

/* 📄 DOCUMENT REPOSITORY */
.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(167, 169, 172, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8fafc;
}

.doc-item:hover {
    background: #ffffff;
    border-color: var(--accent-gold);
}

.doc-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(175, 154, 116, 0.3);
}

.doc-item span {
    color: var(--brand-navy);
}

/* 📞 CONTACT SECTION */
.contact-glass {
    background: #ffffff;
    box-shadow: 0 40px 80px -15px rgba(22, 21, 34, 0.04);
    border: 1px solid rgba(175, 154, 116, 0.2);
    padding: 4rem;
}