/* =========================================
   BlueSky Group | Print House Styles
   ========================================= */

/* --- 1. Print Hero Section --- */
.print-hero {
    padding: 180px 0 100px; /* Space for fixed header */
    background-color: #f8fafc;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.highlight-ink { color: #00bcd4; /* Cyan/Ink Color */ }

.hero-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    background: #0f172a;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.btn-text-link {
    color: #475569;
    font-weight: 500;
    display: flex; align-items: center; gap: 8px;
}
.btn-text-link:hover { color: #0066cc; gap: 12px; }

/* Image Stack Effect */
.image-stack {
    position: relative;
    height: 500px;
    width: 100%;
}

.img-back {
    position: absolute;
    top: 0; right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 20px 20px 0px rgba(0, 102, 204, 0.1);
}

.img-front {
    position: absolute;
    bottom: 0; left: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- 2. Services Wrapper --- */
.services-wrapper {
    background: white;
    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: 450px;
}

.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: #e0f2fe;
    color: #0066cc;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.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: #00bcd4; font-size: 0.8rem; }

/* 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 --- */
.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) {
    .print-hero { padding-top: 120px; }
    .hero-split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-btns { justify-content: center; }
    .image-stack { height: 400px; margin-top: 2rem; }
    
    .service-block { grid-template-columns: 1fr; gap: 2rem; }
    .right-img .service-image { order: 1; }
    .right-img .service-text { order: 2; }
}