/*
 * DarkBlue Media - Services Page Styles
 * Clean Modern Design
 */

/* ========================================
   Page Header - Premium Blue 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;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 5rem 0;
    background: #ffffff;
}

.service-block {
    padding: 3rem;
    margin-bottom: 2rem;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.service-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 1rem 0;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

/* Service Image with Small Icon Badge */
.service-image-wrapper {
    position: relative;
    width: 100%;
}

.service-image-placeholder {
    width: 100%;
    height: 280px;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    border: 2px dashed #e0e0e0;
    position: relative;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.service-image-placeholder .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999999;
}

.service-image-placeholder .placeholder-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.service-image-placeholder .placeholder-content span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Small Icon Badge */
.service-icon-small {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    border: 3px solid #ffffff;
}

.service-icon-small i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-content {
    padding: 1rem 0;
}

.service-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-content h2 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content>p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #333333;
}

.service-features i {
    color: #ff6b00;
    font-size: 0.875rem;
}

/* ========================================
   CTA Section - Blends with Footer
   ======================================== */
.section-dark {
    background: linear-gradient(180deg, #0a1628 0%, #0d1e35 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.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: #cccccc;
    margin-bottom: 1.5rem;
}

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

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

    .service-block {
        padding: 2rem;
    }

    .service-image-placeholder {
        height: 220px;
    }

    .service-icon-small {
        width: 50px;
        height: 50px;
    }

    .service-icon-small i {
        font-size: 1.25rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }
}

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

    .service-icon-small {
        width: 45px;
        height: 45px;
        bottom: -15px;
        right: 15px;
    }

    .service-icon-small i {
        font-size: 1rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .service-image-wrapper {
        margin-bottom: 1.5rem;
    }
}