:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --primary-blue: #3b82f6;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    background: var(--bg-main);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.pr-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* FIXED: Parallax Video Background */
.video-bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: contrast(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pr-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Quote Box */
.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 15px 25px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-style: italic;
    color: #e2e8f0;
    border-radius: 0 10px 10px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-group-hero {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- SERVICES SPLIT SECTION --- */
.services-split {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service-col {
    flex: 1;
    min-width: 320px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-col h3 i {
    color: var(--primary-blue);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: #10b981;
    margin-top: 5px;
}

/* Green check for Core */
.feature-list.blue-check li i {
    color: var(--primary-blue);
}

/* Blue check for Digital */
/* --- MEDIA NETWORKS --- */
.media-networks {
    padding: 40px 0;
    background: #0b1120;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.strip-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.7;
}

.media-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.media-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

/* --- WHY CHOOSE (Box Grid) --- */
.bg-darker {
    background: #0b1120;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- TIMELINE WORKFLOW --- */
.pr-workflow {
    padding: 80px 0;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    display: none;
    /* Hidden on mobile */
}

@media(min-width: 992px) {
    .timeline-steps::before {
        display: block;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 150px;
    background: var(--bg-main);
    padding: 10px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CASE STUDIES --- */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    background: #253346;
}

.case-tag {
    font-size: 0.8rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.case-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* --- TESTIMONIALS & FAQ --- */
.test-slide {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    /* Swiper pagination gap */
}

.test-slide p {
    font-style: italic;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.stars {
    color: #f59e0b;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- CTA STRIP --- */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline-white:hover {
    background: white;
    color: var(--bg-main);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .pr-hero h1 {
        font-size: 2.2rem;
    }

    .services-split {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-item {
        width: 100%;
    }
}