/* Service Page Custom Styles */

/* === Service Loader Animation === */
.loader-red-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-primary, #D3151C);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.loader-red-content {
    position: relative;
    z-index: 20;
}

body.plane-flying #loader-flight-path {
    stroke-dashoffset: 0 !important;
}

body.plane-flying #flying-plane-group {
    offset-distance: 100% !important;
}

.sp-hero-new {
    position: relative;
    padding: 12rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-color: #182238;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.sp-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(12, 15, 18, 1) 0%, rgba(12, 15, 18, 0.4) 100%);
    z-index: 1;
}

.sp-hero-content {
    position: relative;
    z-index: 2;
}

.sp-hero-new h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: white;
    margin-top: 1rem;
    font-weight: 800;
}

.sp-hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 1rem auto 0;
}

.sp-grid-advanced {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.sp-process-block {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 24px;
    width: 2px;
    background: #e8ecef;
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.sp-features-block {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

.benefits-grid-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(211, 21, 28, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.sp-sidebar-advanced {
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 100px;
}

.sp-pricing-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.sp-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin: 0.5rem 0;
}

.pricing-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.pricing-includes {
    list-style: none;
    padding: 0;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.pricing-includes i {
    color: var(--color-primary);
}

/* Media Block */
.sp-media-section {
    padding: 5rem 0;
    background: #fafbfb;
}

.media-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
}

.media-container img {
    transition: transform 0.5s ease;
}

.media-container:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.media-container:hover .play-btn-overlay {
    background: var(--color-primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.sp-clients {
    padding: 5rem 0 0;
    background: #182238;
}

.sp-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.sp-logos-wrapper img {
    height: 45px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s;
}

.sp-logos-wrapper img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .sp-grid-advanced {
        grid-template-columns: 1fr;
    }
    .benefits-grid-advanced {
        grid-template-columns: 1fr;
    }
}
