/* =========================================
   Horizontal Scroll Services (GSAP Pin)
   Theme: High-Tech / Sci-Fi
========================================= */

.creative-services {
    background-color: #000;
    color: #fff;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving Mesh Background Animation (Behind everything) */
.creative-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* The Pinned Section Wrapper */
.pin-panel-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 700%; /* 7 slides * 100% each */
    height: 100vh;
    will-change: transform;
    position: relative;
    z-index: 2;
}

.service-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 100px;
}

.service-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Slide Content */
.slide-info {
    flex: 1;
}

.slide-number {
    font-size: 120px;
    font-weight: 900;
    opacity: 0.1;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: -20px;
}

.slide-title {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Slide Visual (The Interactive Card) */
.slide-visual {
    flex: 1.2;
    perspective: 1500px;
}

.interactive-card {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.interactive-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
}

/* Buttons */
.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #6366f1;
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Section Header (Intro) */
.horizontal-intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .slide-title { font-size: 48px; }
    .interactive-card { height: 400px; }
    .service-slide { padding: 40px 20px; }
}
