/**
 * Dịch Vụ In UV — page-templates/service-landing.php only.
 * Load sau page-template.css để chỉnh hero / CTA (tách khỏi file CSS chung).
 */

.services-landing-page {
    --sl-bg: #fcf9f8;
    --sl-surface: #fffefc;
    --sl-on: #1c1b1b;
    --sl-muted: #594139;
    --sl-accent: #ff6b2c;
    --sl-accent-dark: #a83900;
    --sl-line: rgba(28, 27, 27, 0.08);
}

/* ----- Hero: nền ảnh + lớp phủ (page-template.css không set background cho services-landing) ----- */
.services-landing-page .hero-section {
    position: relative;
    min-height: min(52vh, 560px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 2.25rem 0 2.75rem;
    background-color: #2c1810;
    background-image:
        linear-gradient(
            115deg,
            rgba(44, 24, 16, 0.92) 0%,
            rgba(168, 57, 0, 0.58) 48%,
            rgba(28, 27, 27, 0.65) 100%
        ),
        url("../images/bg_1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-landing-page .particles-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
}

.services-landing-page .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.services-landing-page .hero-section .container {
    position: relative;
    z-index: 3;
}

.services-landing-page .hero-title,
.services-landing-page .title-main,
.services-landing-page .title-highlight {
    color: #fff;
}

.services-landing-page .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
}

.services-landing-page .hero-features {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 991.98px) {
    .services-landing-page .hero-section {
        min-height: auto;
        padding: 1.75rem 0 2rem;
    }

    .services-landing-page .hero-section .container {
        gap: 1.75rem;
    }
}

/* ----- Final CTA: nền sáng, accent cam (không đếm giờ) ----- */
.services-landing-page .final-cta-section {
    position: relative;
    padding: 3rem 0 3.5rem;
    text-align: center;
    color: var(--sl-on);
    background: var(--sl-bg);
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -30%, rgba(255, 107, 44, 0.14), transparent 50%),
        linear-gradient(180deg, var(--sl-surface) 0%, var(--sl-bg) 100%);
    border-top: 1px solid var(--sl-line);
    overflow: hidden;
}

.services-landing-page .final-cta-section::before {
    display: none;
}

.services-landing-page .final-cta-section .section-title {
    color: var(--sl-on) !important;
    text-shadow: none;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.services-landing-page .final-cta-section .section-subtitle {
    color: var(--sl-muted) !important;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 36rem;
    margin: 0 auto 1.75rem;
}

.services-landing-page .final-cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.services-landing-page .final-cta-section .offer-item {
    background: #fff;
    border: 1px solid var(--sl-line);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.services-landing-page .final-cta-section .offer-text h4 {
    color: var(--sl-on);
}

.services-landing-page .final-cta-section .offer-text p {
    color: var(--sl-muted);
}

.services-landing-page .final-cta-section .cta-btn.primary {
    background: var(--sl-accent);
    border-color: var(--sl-accent);
    color: #fff;
    font-weight: 700;
}

.services-landing-page .final-cta-section .cta-btn.primary:hover {
    background: var(--sl-accent-dark);
    border-color: var(--sl-accent-dark);
    color: #fff;
}

.services-landing-page .final-cta-section .cta-btn.secondary {
    background: #fff;
    color: var(--sl-accent-dark);
    border: 2px solid rgba(255, 107, 44, 0.45);
}

.services-landing-page .final-cta-section .cta-btn.secondary:hover {
    border-color: var(--sl-accent);
    color: var(--sl-accent-dark);
}

.services-landing-page .final-cta-section .cta-btn.tertiary {
    background: transparent;
    color: var(--sl-accent-dark);
    border: 2px dashed rgba(168, 57, 0, 0.35);
}

.services-landing-page .final-cta-section .cta-btn.tertiary:hover {
    border-color: var(--sl-accent);
    color: var(--sl-accent-dark);
}

@media (max-width: 767.98px) {
    .services-landing-page .final-cta-section {
        padding: 2.25rem 0 2.75rem;
    }

    .services-landing-page .final-cta-section .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .services-landing-page .final-cta-section .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
