/*
 * DarkBlue Media - About Page Styles
 * Clean Modern Design with Orange Accent
 */

/* ========================================
   Page Header - Premium Banner
   ======================================== */
.page-header {
    background: linear-gradient(180deg, #081220 0%, #0a1628 20%, #1a3a5c 60%, #2a5a8c 100%);
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00, #ff8c00, #ff6b00);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 30px 30px;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-header .lead {
    color: #999999;
    font-size: 1.2rem;
    position: relative;
}

/* ========================================
   About Image
   ======================================== */
.about-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.frame-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff6b00;
    border-radius: 16px;
    z-index: 1;
}

.image-placeholder-about {
    background: #f5f5f5;
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666666;
    position: relative;
    z-index: 2;
    border: 2px dashed #e0e0e0;
}

.image-placeholder-about i {
    font-size: 4rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.image-placeholder-about span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Mission Cards
   ======================================== */
.mission-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.mission-card h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ========================================
   Value Cards
   ======================================== */
.value-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.value-card h4 {
    color: #000000;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Team Cards
   ======================================== */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #ff6b00;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar i {
    font-size: 2.5rem;
    color: #ffffff;
}

.team-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #ff6b00;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   CTA Box - Blends with Footer
   ======================================== */
.cta-box {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
    border-radius: 16px;
    padding: 3rem;
}

.cta-box h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: #999999;
    margin-bottom: 1.5rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .image-placeholder-about {
        height: 300px;
    }

    .frame-decoration {
        top: -10px;
        left: -10px;
    }
}

@media (max-width: 767.98px) {
    .image-placeholder-about {
        height: 250px;
    }

    .mission-card {
        padding: 1.5rem;
    }
}