/* =========================================
   BlueSky Group | Media Promotions Styles
   ========================================= */

/* --- 1. Media Hero Section --- */
.media-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050a14;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transform: scale(1.1); /* Slight zoom for parallax feel */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(5, 10, 20, 0.7) 0%, #050a14 100%);
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-blue { color: #38bdf8; }

.hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-size: 2rem; font-weight: 700; color: white; }
.hero-stats .label { font-size: 0.85rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

.hero-stats .divider {
    width: 1px; height: 40px; background: rgba(255,255,255,0.2);
}

/* --- 2. Services Wrapper (Zig Zag) --- */
.services-wrapper {
    background: #f8fafc;
    padding: 8rem 0;
}

.mb-5 { margin-bottom: 5rem; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}
.service-block:last-child { margin-bottom: 0; }

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px;
}

.service-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-image img { transform: scale(1.05); }

.service-text { padding: 1rem; }

.service-icon {
    width: 50px; height: 50px;
    background: white;
    color: #0066cc;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.feature-list li {
    font-size: 0.95rem;
    color: #334155;
    display: flex; align-items: center; gap: 10px;
}

.feature-list i { color: #38bdf8; font-size: 0.8rem; }

.text-link {
    font-weight: 600;
    color: #0066cc;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.3s;
}
.text-link:hover { gap: 12px; }

/* Zig Zag Order */
.right-img .service-image { order: 2; }
.right-img .service-text { order: 1; }

.left-img .service-image { order: 1; }
.left-img .service-text { order: 2; }

/* --- 3. CTA Banner (Reused from About) --- */
.cta-banner {
    position: relative;
    padding: 8rem 0;
    color: white;
    text-align: center;
    overflow: hidden;
}
.cta-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 10, 20, 0.85);
    z-index: 1;
}
.cta-title { font-size: 2.5rem; margin-bottom: 1rem; font-family: 'Outfit', sans-serif; color: white; }
.cta-text { opacity: 0.8; margin-bottom: 2.5rem; }

.cta-buttons{
    /* border: 2px solid white; */
    width: fit-content;
    display: inline-flex;
}

/* Responsive */
@media (max-width: 900px) {
    .service-block { grid-template-columns: 1fr; gap: 2rem; }
    .right-img .service-image { order: 1; }
    .right-img .service-text { order: 2; }
    .hero-title { font-size: 3rem; }
}