/* ===========================================
   CINEMATIC SERVICES PAGE - REFERENCE MATCH
   Brand: #FFD700 (Yellow), #0a0a0a (Dark)
   =========================================== */

body.cinematic-services-body {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #2d2d2d;
    --text: #ffffff;
    --text-muted: #888888;
}


/* Hide floating contact bar and WhatsApp on this page */

body.hide-floating-contact .floating-contact-bar,
body.hide-floating-contact .whatsapp-button,
body.hide-floating-contact [class*="whatsapp"],
body.hide-floating-contact .floating-cta,
body.hide-floating-contact .back-to-top {
    display: none !important;
}


/* Make header truly transparent */

body.cinematic-services-body #header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.cinematic-services-body #header .header-body {
    background: transparent !important;
    border: none !important;
}

body.cinematic-services-body #header.header-effect-shrink .header-body {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
}


/* RTL Font Override */

html[dir="rtl"] body.cinematic-services-body,
html[dir="rtl"] body.cinematic-services-body * {
    font-family: var(--font-primary, 'Dibaj FaNum'), sans-serif !important;
}


/* Main container */

.cinematic-services-page {
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}


/* ===========================================
   LOADER
   =========================================== */

#cinematic-loader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#cinematic-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    background: linear-gradient(90deg, #FFD700, #fff, #FFD700);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #2d2d2d;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #FFD700;
    box-shadow: 0 0 20px #FFD700;
    animation: loadProgress 2s ease forwards;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}


/* ===========================================
   PARTICLES
   =========================================== */

#cinematic-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}


/* ===========================================
   HERO SECTION
   =========================================== */

.cinematic-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 50%, #0a0a0a 100%);
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: #FFD700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    margin: 0 0 30px;
    line-height: 1;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
}

.hero-title .title-line span {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #ffffff !important;
    transform: translateY(100%) rotateX(90deg);
    opacity: 0;
    animation: revealText 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .title-line:first-child span {
    animation-delay: 0.3s;
}

.hero-title .title-line--yellow span {
    color: #FFD700 !important;
    animation-delay: 0.5s;
}

@keyframes revealText {
    to {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: #888888;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #FFD700;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.2s;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #0a0a0a;
    text-decoration: none;
}

.hero-cta:hover::before {
    left: 100%;
}



/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 10;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #888888;
}

.scroll-arrow {
    width: 26px;
    height: 44px;
    border: 2px solid #FFD700;
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 26px;
        opacity: 0;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* ===========================================
   STATS BAR
   =========================================== */

.stats-bar {
    background: #1a1a1a;
    padding: 50px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

html[dir="rtl"] .stat-item::after {
    right: auto;
    left: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.stat-label {
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}


/* ===========================================
   SERVICES SECTION
   =========================================== */

.services-section {
    padding: 100px 0 80px;
    position: relative;
    overflow: visible;
    background: #0a0a0a;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-eyebrow {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 2px;
}

.section-subtitle {
    color: #888888;
    max-width: 550px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}


/* Quick Nav */

.service-quick-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.quick-nav-item {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid #2d2d2d;
    color: #888888;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.quick-nav-item:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.quick-nav-item.active {
    background: #FFD700;
    border-color: #FFD700;
    color: #0a0a0a;
}


/* ===========================================
   SLIDER - FULL WIDTH COVERFLOW (CRITICAL)
   =========================================== */

.slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.services-slider {
    width: 100%;
    padding: 30px 0 60px;
    overflow: visible !important;
}

.services-slider .swiper-wrapper {
    align-items: center;
}


/* Service Card - FULL HEIGHT */

.service-slide {
    position: relative;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    background: #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease, opacity 0.5s ease;
}

.service-slide:active {
    cursor: grabbing;
}


/* Side slides styling */

.service-slide.swiper-slide-prev,
.service-slide.swiper-slide-next {
    opacity: 0.6;
}

.service-slide.swiper-slide-active {
    opacity: 1;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}


/* Card Background Image - FULL COVER */

.service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.service-slide:hover .service-bg {
    transform: scale(1.15);
}


/* Card Overlay */

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.5s ease;
}

.service-slide:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
}


/* Service Content */

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    transform: translateY(15px);
    transition: transform 0.5s ease;
    z-index: 5;
}

.service-slide:hover .service-content,
.service-slide.swiper-slide-active .service-content {
    transform: translateY(0);
}

html[dir="rtl"] .service-content {
    text-align: right;
}


/* Service Number - Large in corner */

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: #FFD700;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 25px;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 3;
}

html[dir="rtl"] .service-number {
    right: auto;
    left: 25px;
}

.service-slide:hover .service-number {
    opacity: 0.3;
}


/* Service Icon */

.service-icon {
    width: 70px;
    height: 70px;
    background: #FFD700;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0a0a0a;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease 0.1s;
}

.service-slide.swiper-slide-active .service-icon {
    opacity: 1;
    transform: scale(1);
}


/* Service Title */

.service-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.15s;
}

.service-slide.swiper-slide-active .service-title {
    opacity: 1;
    transform: translateY(0);
}


/* Service Description */

.service-description {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 350px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.service-slide.swiper-slide-active .service-description {
    opacity: 1;
    transform: translateY(0);
}


/* Service Features */

.service-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.25s;
}

.service-slide.swiper-slide-active .service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #ffffff;
}


.service-features i {
    color: #FFD700;
    font-size: 0.7rem;
}


/* Service Link */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.service-slide.swiper-slide-active .service-link {
    opacity: 1;
    transform: translateY(0);
}


.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

html[dir="rtl"] .service-link::after {
    left: auto;
    right: 0;
}

.service-link:hover {
    color: #FFD700;
    text-decoration: none;
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

html[dir="rtl"] .service-link:hover i {
    transform: translateX(-5px);
}


/* ===========================================
   TRAILER BADGE
   =========================================== */

.trailer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #FFD700;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    z-index: 10;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-slide.swiper-slide-active .trailer-badge {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

html[dir="rtl"] .trailer-badge {
    left: auto;
    right: 20px;
}

.trailer-badge i {
    color: #FFD700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.trailer-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ===========================================
   PLAY OVERLAY
   =========================================== */

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90px;
    height: 90px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 15;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.35);
    border: none;
}

.service-slide:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-overlay i {
    color: #0a0a0a;
    font-size: 1.8rem;
    margin-left: 4px;
}

html[dir="rtl"] .play-overlay i {
    margin-left: 0;
    margin-right: 4px;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.5);
}


/* ===========================================
   SLIDER NAVIGATION - BOTTOM CENTERED
   =========================================== */

.slider-nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border: 2px solid #2d2d2d !important;
    background: transparent !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.slider-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFD700;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.slider-btn:hover {
    border-color: #FFD700 !important;
    color: #0a0a0a !important;
}

.slider-btn:hover::before {
    transform: scale(1);
}


/* Pagination */

.cinematic-services-page .swiper-pagination {
    position: relative !important;
    margin-top: 30px;
    bottom: 0 !important;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    z-index: 100;
}

.cinematic-services-page .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #2d2d2d !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    display: inline-block !important;
}

.cinematic-services-page .swiper-pagination-bullet-active {
    background: #FFD700 !important;
    width: 35px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}


/* ===========================================
   VIDEO MODAL
   =========================================== */

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-container {
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-container {
    transform: scale(1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #888888;
    gap: 20px;
}

.video-placeholder i {
    font-size: 3.5rem;
    color: #FFD700;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
    background: transparent;
    border: none;
}

.close-video:hover {
    color: #FFD700;
}


/* ===========================================
   SCROLL REVEAL
   =========================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Ripple effect */

.ripple-effect {
    position: absolute;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 991px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    .stat-item::after {
        display: none;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .service-slide {
        height: 480px;
    }
    .service-content {
        padding: 30px;
    }
    .service-title {
        font-size: 1.5rem;
    }
    .service-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .cinematic-hero {
        min-height: 600px;
    }
    .hero-title .title-line span {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
    .stats-bar {
        padding: 40px 15px;
    }
    .services-section {
        padding: 80px 0 60px;
    }
    .service-quick-nav {
        gap: 10px;
    }
    .quick-nav-item {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    .service-slide {
        height: 450px;
    }
    .service-content {
        padding: 25px;
    }
    .service-number {
        font-size: 3.5rem;
    }
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    .service-title {
        font-size: 1.3rem;
    }
    .slider-nav {
        gap: 15px;
        margin-top: 40px;
    }
    .slider-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .service-slide {
        height: 420px;
    }
    .service-features {
        display: none;
    }
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}


/* ===========================================
   REDUCED MOTION
   =========================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .loader-text,
    .loader-progress,
    .hero-subtitle,
    .hero-title .title-line span,
    .hero-description,
    .hero-cta,
    .scroll-indicator,
    .service-icon,
    .service-title,
    .service-description,
    .service-features,
    .service-link,
    .trailer-badge,
    .play-overlay,
    .video-placeholder i {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}