/* ============================================
   SERVICES SECTION - Enhanced Split Scroll
   Improved version with better UX and animations
   ============================================ */

/* Main Services Section */
.services-section {
    position: relative;
    width: 100%;
    padding: 0;
    z-index: 1;
}

/* Grid Container for Split Layout */
.services-sticky-container {
    display: flex;
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Left Panel - Visual Side (Will be pinned by GSAP) */
.services-visual-panel {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: transparent;
}

/* Visual Content Container - Sticky Header */
.services-visual-content {
    text-align: center;
    width: 100%;
}

.services-visual-header {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
}

body.dark-theme .services-visual-header,
.services-section[data-theme="dark"] .services-visual-header {
    background: transparent;
    border: none;
}

.services-visual-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.9);
}

body.dark-theme .services-visual-header h2,
.services-section[data-theme="dark"] .services-visual-header h2 {
    color: rgba(255, 255, 255, 0.95);
}

.services-visual-header p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
}

body.dark-theme .services-visual-header p,
.services-section[data-theme="dark"] .services-visual-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Items - Hidden on this version */
.service-visual-item {
    display: none;
}

/* Icon Container with Glow */
.service-icon-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.service-icon {
    font-size: 8rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.service-visual-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

body.dark-theme .service-visual-title,
.services-section[data-theme="dark"] .service-visual-title {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Number Badge */
.service-number-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
}

/* Right Panel - Content Side (Scrolling) */
.services-content-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 8rem 5% 8rem 3rem;
    width: 50%;
}

/* Service Content Item - um.marketing minimal dark style */
.service-content-item {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, #111215, #272B2E);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 1;
}

/* Subtle gradient overlay (um.marketing style) */
.service-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03), transparent 70%);
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

/* Dark overlay to reduce flashiness on hover */
.service-content-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}

.service-content-item:hover::after {
    opacity: 1;
}

.service-content-item:last-child {
    margin-bottom: 0;
}

body.dark-theme .service-content-item,
.services-section[data-theme="dark"] .service-content-item {
    background: linear-gradient(135deg, #111215, #272B2E);
    border: 1px solid transparent;
}

/* Gradient glow borders on hover - matching concept card style */
.service-content-item:nth-child(1):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

.service-content-item:nth-child(2):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6) border-box;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
}

.service-content-item:nth-child(3):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6) border-box;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
}

.service-content-item:nth-child(4):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #0d9488, #14b8a6, #06b6d4) border-box;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(13, 148, 136, 0.2);
}

body.dark-theme .service-content-item:nth-child(1):hover,
.services-section[data-theme="dark"] .service-content-item:nth-child(1):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6) border-box;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
}

body.dark-theme .service-content-item:nth-child(2):hover,
.services-section[data-theme="dark"] .service-content-item:nth-child(2):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #34d399, #60a5fa, #a78bfa) border-box;
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.25);
}

body.dark-theme .service-content-item:nth-child(3):hover,
.services-section[data-theme="dark"] .service-content-item:nth-child(3):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa) border-box;
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.25);
}

body.dark-theme .service-content-item:nth-child(4):hover,
.services-section[data-theme="dark"] .service-content-item:nth-child(4):hover {
    border: 1px solid transparent;
    background: linear-gradient(#111215, #272B2E) padding-box,
                linear-gradient(135deg, #2dd4bf, #22d3ee, #38bdf8) border-box;
    box-shadow: 0 25px 60px rgba(45, 212, 191, 0.25);
}

/* Remove active state since all are visible now */
.service-content-item.active {
    /* Not needed - all items are visible */
}

.service-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .service-title,
.services-section[data-theme="dark"] .service-title {
    color: rgba(255, 255, 255, 0.95);
}

/* Gradient title on hover for each service - COPIED FROM CONCEPT CARDS */
.service-content-item:nth-child(1):hover .service-title {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(2):hover .service-title {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(3):hover .service-title {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(236, 72, 153, 0.8), rgba(139, 92, 246, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(4):hover .service-title {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(20, 184, 166, 0.8), rgba(6, 182, 212, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .service-content-item:nth-child(1):hover .service-title,
.services-section[data-theme="dark"] .service-content-item:nth-child(1):hover .service-title {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .service-content-item:nth-child(2):hover .service-title,
.services-section[data-theme="dark"] .service-content-item:nth-child(2):hover .service-title {
    background: linear-gradient(135deg, #34d399, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .service-content-item:nth-child(3):hover .service-title,
.services-section[data-theme="dark"] .service-content-item:nth-child(3):hover .service-title {
    background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-theme .service-content-item:nth-child(4):hover .service-title,
.services-section[data-theme="dark"] .service-content-item:nth-child(4):hover .service-title {
    background: linear-gradient(135deg, #2dd4bf, #22d3ee, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

body.dark-theme .service-description,
.services-section[data-theme="dark"] .service-description {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Item Icon - Decorative Background Icon (invisible by default) */
/* Service Icon Badge (small badge at top) - PILL SHAPE LIKE CONCEPT CARDS */
.service-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-icon-badge i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient icon badge on hover for each service - COPIED FROM CONCEPT CARDS */
.service-content-item:nth-child(1):hover .service-icon-badge {
    border: 1px solid transparent;
    background: linear-gradient(#1f2428, #1f2428) padding-box,
                linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.5)) border-box;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.service-content-item:nth-child(1):hover .service-icon-badge i {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(2):hover .service-icon-badge {
    border: 1px solid transparent;
    background: linear-gradient(#1f2428, #1f2428) padding-box,
                linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.5)) border-box;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.service-content-item:nth-child(2):hover .service-icon-badge i {
    background: linear-gradient(135deg, #34d399, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(3):hover .service-icon-badge {
    border: 1px solid transparent;
    background: linear-gradient(#1f2428, #1f2428) padding-box,
                linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.5)) border-box;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
}

.service-content-item:nth-child(3):hover .service-icon-badge i {
    background: linear-gradient(135deg, #fbbf24, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-item:nth-child(4):hover .service-icon-badge {
    border: 1px solid transparent;
    background: linear-gradient(#1f2428, #1f2428) padding-box,
                linear-gradient(135deg, rgba(13, 148, 136, 0.8), rgba(20, 184, 166, 0.6), rgba(6, 182, 212, 0.5)) border-box;
    box-shadow: 0 0 25px rgba(13, 148, 136, 0.3);
}

.service-content-item:nth-child(4):hover .service-icon-badge i {
    background: linear-gradient(135deg, #14b8a6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Icon (large decorative background) */
.service-item-icon {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 12rem;
    color: transparent;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 0 0px transparent);
}

/* Unique gradient glow for each service icon on hover */
.service-content-item:nth-child(1):hover .service-item-icon {
    color: #3b82f6;
    opacity: 0.15;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6))
            drop-shadow(0 0 60px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 90px rgba(236, 72, 153, 0.3));
}

.service-content-item:nth-child(2):hover .service-item-icon {
    color: #10b981;
    opacity: 0.15;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6))
            drop-shadow(0 0 60px rgba(59, 130, 246, 0.4))
            drop-shadow(0 0 90px rgba(139, 92, 246, 0.3));
}

.service-content-item:nth-child(3):hover .service-item-icon {
    color: #f59e0b;
    opacity: 0.15;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.6))
            drop-shadow(0 0 60px rgba(236, 72, 153, 0.4))
            drop-shadow(0 0 90px rgba(139, 92, 246, 0.3));
}

.service-content-item:nth-child(4):hover .service-item-icon {
    color: #14b8a6;
    opacity: 0.15;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(13, 148, 136, 0.6))
            drop-shadow(0 0 60px rgba(20, 184, 166, 0.4))
            drop-shadow(0 0 90px rgba(6, 182, 212, 0.3));
}

body.dark-theme .service-item-icon,
.services-section[data-theme="dark"] .service-item-icon {
    opacity: 0;
}

body.dark-theme .service-content-item:nth-child(1):hover .service-item-icon,
.services-section[data-theme="dark"] .service-content-item:nth-child(1):hover .service-item-icon {
    color: #3b82f6;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8))
            drop-shadow(0 0 60px rgba(139, 92, 246, 0.5))
            drop-shadow(0 0 90px rgba(236, 72, 153, 0.4));
}

body.dark-theme .service-content-item:nth-child(2):hover .service-item-icon,
.services-section[data-theme="dark"] .service-content-item:nth-child(2):hover .service-item-icon {
    color: #10b981;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.8))
            drop-shadow(0 0 60px rgba(59, 130, 246, 0.5))
            drop-shadow(0 0 90px rgba(139, 92, 246, 0.4));
}

body.dark-theme .service-content-item:nth-child(3):hover .service-item-icon,
.services-section[data-theme="dark"] .service-content-item:nth-child(3):hover .service-item-icon {
    color: #f59e0b;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.8))
            drop-shadow(0 0 60px rgba(236, 72, 153, 0.5))
            drop-shadow(0 0 90px rgba(139, 92, 246, 0.4));
}

body.dark-theme .service-content-item:nth-child(4):hover .service-item-icon,
.services-section[data-theme="dark"] .service-content-item:nth-child(4):hover .service-item-icon {
    color: #22d3ee;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px rgba(45, 212, 191, 0.8))
            drop-shadow(0 0 60px rgba(34, 211, 238, 0.5))
            drop-shadow(0 0 90px rgba(56, 189, 248, 0.4));
}

/* Service Features List (um.marketing style) */
.service-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.dark-theme .service-feature-item,
.services-section[data-theme="dark"] .service-feature-item {
    background: transparent;
}

.service-feature-item:hover {
    transform: translateX(5px);
}

body.dark-theme .service-feature-item:hover,
.services-section[data-theme="dark"] .service-feature-item:hover {
    transform: translateX(5px);
}

.service-feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 0.9rem;
}

body.dark-theme .service-feature-icon,
.services-section[data-theme="dark"] .service-feature-icon {
    color: rgba(255, 255, 255, 0.5);
}

.service-feature-text {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
}

body.dark-theme .service-feature-text,
.services-section[data-theme="dark"] .service-feature-text {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button (um.marketing style - minimal link) */
.service-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

body.dark-theme .service-cta-button,
.services-section[data-theme="dark"] .service-cta-button {
    color: rgb(255, 255, 255);
}

.service-cta-button:hover {
    color: rgba(0, 0, 0, 1);
    gap: 0.7rem;
}

body.dark-theme .service-cta-button:hover,
.services-section[data-theme="dark"] .service-cta-button:hover {
    color: rgba(255, 255, 255, 1);
}

.service-cta-button i {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
}

.service-cta-button:hover i {
    transform: translateX(3px);
}

/* Progress Indicator */
.services-progress-indicator {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.progress-dot:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.2);
}

.progress-dot.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.progress-dot-label {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-theme .progress-dot-label,
.services-section[data-theme="dark"] .progress-dot-label {
    background: #1e293b;
    color: white;
}

.progress-dot:hover .progress-dot-label {
    opacity: 1;
    right: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-section {
        padding: 60px 0;
    }

    .services-sticky-container {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }

    .services-visual-panel {
        position: relative !important; /* Disable sticky on tablet */
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        padding: 2rem 5% !important;
        transform: none !important;
    }

    .services-content-panel {
        width: 100% !important;
        gap: 3rem;
        padding: 0 5% 2rem 5% !important;
    }

    .service-content-item {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .services-sticky-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        min-height: auto;
    }

    .services-visual-panel {
        position: relative !important; /* Ensure sticky is disabled on mobile */
        width: 100% !important; /* Full width on mobile */
        height: auto !important; /* Auto height on mobile */
        top: 0 !important;
        padding: 2rem 5% !important;
        transform: none !important;
    }

    .services-content-panel {
        width: 100% !important; /* Full width on mobile */
        gap: 2rem;
        padding: 0 5% 2rem 5% !important; /* Full width padding */
    }

    .service-content-item {
        padding: 1.5rem;
    }

    .service-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .services-progress-indicator {
        display: none;
    }
}
