/* ============================================
   SIRATIM - SERVICES PAGE STYLES
   ============================================ */

/* Section 1: Hero */
.services-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--bg-white) 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--divider), transparent);
}

.services-hero-grid {
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 2rem;
}

.services-hero-content {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.services-hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-50px);
    will-change: transform, opacity;
    text-align: center;
}

.services-hero-subline {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 500;
    background: linear-gradient(135deg, var(--brand-red) 0%, #C4121F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(40px);
    will-change: transform, opacity;
    text-align: center;
}

.services-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.8;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    text-align: center;
}

.services-hero-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.services-3d-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

#services-threejs-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.services-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    border-radius: var(--radius-lg);
}

.services-video-fallback.active {
    display: block;
}

/* Section 2: Core Services Grid */
.services-core {
    background: var(--bg-white);
}

.services-core-grid {
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.service-core-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid transparent;
}

.service-core-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(164, 22, 26, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-core-card:hover::after {
    opacity: 1;
}

.service-card-accent-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-red);
    width: 100%;
}

.service-core-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(164, 22, 26, 0.15);
    border-color: rgba(164, 22, 26, 0.2);
}

.service-core-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
    line-height: 1.3;
}

.service-core-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.service-core-link {
    color: var(--brand-red);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: var(--transition-base);
}

.service-core-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s ease;
}

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

.service-core-link:hover {
    gap: 0.5rem;
}

/* Section 3: Service Detail Blocks */
.services-details {
    background: var(--bg-white);
}

.service-detail-block {
    margin-bottom: var(--spacing-xxl);
    opacity: 1;
    transform: translateY(0);
}

.service-detail-divider {
    width: 80px;
    height: 3px;
    background: var(--brand-red);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
}

.service-detail-grid {
    align-items: center;
    gap: var(--spacing-xl);
}

.service-detail-content {
    opacity: 0;
    transform: translateX(-40px);
}

.service-detail-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
}

.service-detail-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-lg);
}

.service-detail-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-benefits li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--secondary-text);
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 0.2s ease;
}

.service-detail-benefits li:hover {
    transform: translateX(4px);
}

.service-detail-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: bold;
}

.service-detail-visual {
    opacity: 0;
    transform: translateX(40px);
}

.service-visual-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text);
    box-shadow: 0 2px 8px var(--shadow);
}

/* Section 4: Expansion Vision (Improved) */
.services-expansion {
    /* Background handled by bg-light class in HTML */
    position: relative;
    overflow: visible;
}

.services-expansion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red) 20%, var(--brand-red) 80%, transparent);
    opacity: 0.3;
}

.expansion-content {
    max-width: 1100px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
    z-index: 1;
}

.expansion-intro {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.expansion-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--secondary-text);
    margin: 0;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.expansion-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    visibility: visible;
}

.expansion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), #C4121F);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.expansion-card:hover::before {
    transform: scaleX(1);
}

.expansion-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(164, 22, 26, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.expansion-card:hover::after {
    opacity: 1;
}

.expansion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(164, 22, 26, 0.15);
    border-color: rgba(164, 22, 26, 0.2);
}

.expansion-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.08), rgba(164, 22, 26, 0.03));
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
}

.expansion-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-red);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(164, 22, 26, 0.2));
}

.expansion-card:hover .expansion-card-icon {
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.15), rgba(164, 22, 26, 0.08));
    transform: scale(1.05);
}

.expansion-card:hover .expansion-card-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(164, 22, 26, 0.3));
}

.expansion-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--brand-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.expansion-card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 0;
}

.expansion-timeline {
    position: relative;
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    visibility: visible;
    border-top: 1px solid var(--divider);
    width: 100%;
    display: block;
}

.timeline-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background: var(--divider);
    border-radius: 2px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--brand-red);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.timeline-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
    opacity: 1;
    transform: translateY(0);
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--divider);
    border: 3px solid var(--bg-white);
    box-shadow: 0 2px 4px var(--shadow);
    transition: var(--transition-base);
}

.timeline-marker.active .marker-dot {
    background: var(--brand-red);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(164, 22, 26, 0.3);
}

.marker-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-text);
    text-align: center;
    line-height: 1.4;
}

.timeline-marker.active .marker-label {
    color: var(--brand-red);
    font-weight: 600;
}

/* Section 5: CTA */
.services-cta {
    background: var(--bg-white);
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(164, 22, 26, 0.03), rgba(164, 22, 26, 0.01));
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(164, 22, 26, 0.1);
}

.services-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-text);
}

.services-cta-text {
    font-size: 1.125rem;
    color: var(--secondary-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Tablet Responsive (max-width: 991px) */
@media (max-width: 991px) {
    .services-hero {
        padding: 3rem 0 2rem;
    }
    
    .services-hero-grid {
        gap: 2rem;
    }
    
    .services-hero-content {
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .services-hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .services-hero-subline {
        font-size: clamp(1.25rem, 3.5vw, 1.625rem);
    }
    
    .services-hero-description {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .services-hero-3d {
        display: none;
    }
    
    .services-core-grid {
        gap: var(--spacing-md);
    }
    
    .service-core-card {
        padding: var(--spacing-lg);
    }
    
    .service-core-title {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .service-detail-block {
        margin-bottom: var(--spacing-xl);
    }
    
    .service-detail-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    .service-detail-description {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }
    
    .service-detail-benefits li {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }
    
    .expansion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .expansion-card {
        padding: var(--spacing-lg);
    }
    
    .expansion-card-icon {
        width: 56px;
        height: 56px;
    }
    
    .expansion-card-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    .services-hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }
    
    .services-hero-grid {
        min-height: auto;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        display: flex !important;
        flex-direction: column;
    }
    
    .services-hero-grid .col-12 {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .services-hero-content {
        text-align: center !important;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .services-hero-title {
        font-size: clamp(3.5rem, 14vw, 5rem);
        margin-bottom: 1.25rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .services-hero-subline {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 1.25rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .services-hero-description {
        font-size: clamp(1rem, 4vw, 1.125rem);
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center !important;
        display: block;
    }
    
    .services-hero-3d {
        display: none;
    }
    
    .services-3d-container {
        display: none;
    }
    
    .services-core {
        padding: 3rem 0;
    }
    
    .services-core .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-description {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
    }
    
    .services-core-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .service-core-card {
        padding: 1.5rem;
    }
    
    .service-core-title {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        margin-top: 0.5rem;
        margin-bottom: 0.875rem;
    }
    
    .service-core-text {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .service-core-link {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
    }
    
    .services-details {
        padding: 3rem 0;
    }
    
    .service-detail-block {
        margin-bottom: 3rem;
    }
    
    .service-detail-divider {
        width: 60px;
        height: 2px;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-grid {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .service-detail-content {
        order: 1;
        transform: translateX(0);
    }
    
    .service-detail-visual {
        order: 2;
        transform: translateX(0);
    }
    
    .service-detail-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .service-detail-description {
        font-size: clamp(1rem, 3vw, 1.0625rem);
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }
    
    .service-detail-benefits {
        margin-top: 1rem;
    }
    
    .service-detail-benefits li {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        padding-left: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.6;
        transform: translateX(0);
    }
    
    .service-visual-placeholder {
        height: 220px;
        margin-top: 0;
        border-radius: 12px;
    }
    
    .services-expansion {
        padding: 3rem 0;
    }
    
    .services-expansion .section-header {
        margin-bottom: 2rem;
    }
    
    .expansion-content {
        margin-top: 1.5rem;
    }
    
    .expansion-intro {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .expansion-intro-text {
        font-size: clamp(1rem, 3vw, 1.125rem);
        line-height: 1.7;
    }
    
    .expansion-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .expansion-card {
        padding: 1.5rem;
    }
    
    .expansion-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .expansion-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .expansion-card-title {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        margin-bottom: 0.75rem;
    }
    
    .expansion-card-text {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    .expansion-timeline {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
    }
    
    .timeline-bar {
        display: block;
        height: 3px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-markers {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .timeline-marker {
        flex: 1;
        gap: 0.5rem;
    }
    
    .marker-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .marker-label {
        font-size: clamp(0.75rem, 2.5vw, 0.8125rem);
        line-height: 1.3;
    }
    
    .services-cta {
        padding: 3rem 0;
    }
    
    .services-cta-content {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .services-cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .services-cta-text {
        font-size: clamp(1rem, 3vw, 1.125rem);
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .services-cta-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .services-hero {
        padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
    }
    
    .services-hero-grid {
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        display: flex !important;
        flex-direction: column;
    }
    
    .services-hero-grid .col-12 {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .services-hero-content {
        padding: 0 1rem;
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .services-hero-title {
        font-size: clamp(3rem, 15vw, 4.5rem);
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .services-hero-subline {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
        margin-bottom: 1rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .services-hero-description {
        font-size: clamp(0.9375rem, 4vw, 1rem);
        padding: 0 0.75rem;
        text-align: center !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .services-hero-3d {
        display: none;
    }
    
    .services-3d-container {
        display: none;
    }
    
    .services-core {
        padding: 2.5rem 0;
    }
    
    .services-core-grid {
        gap: 1rem;
    }
    
    .service-core-card {
        padding: 1.25rem;
    }
    
    .service-core-title {
        font-size: 1.125rem;
    }
    
    .service-core-text {
        font-size: 0.875rem;
    }
    
    .services-details {
        padding: 2.5rem 0;
    }
    
    .service-detail-block {
        margin-bottom: 2.5rem;
    }
    
    .service-detail-title {
        font-size: 1.375rem;
    }
    
    .service-detail-description {
        font-size: 0.9375rem;
    }
    
    .service-detail-benefits li {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }
    
    .service-visual-placeholder {
        height: 200px;
    }
    
    .services-expansion {
        padding: 2.5rem 0;
    }
    
    .expansion-card {
        padding: 1.25rem;
    }
    
    .expansion-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .expansion-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .expansion-card-title {
        font-size: 1.0625rem;
    }
    
    .expansion-card-text {
        font-size: 0.875rem;
    }
    
    .expansion-timeline {
        padding: 1.25rem 0;
    }
    
    .marker-label {
        font-size: 0.6875rem;
    }
    
    .services-cta {
        padding: 2.5rem 0;
    }
    
    .services-cta-content {
        padding: 1.75rem 1.25rem;
    }
    
    .services-cta-title {
        font-size: 1.5rem;
    }
    
    .services-cta-text {
        font-size: 0.9375rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .service-core-card,
    .service-detail-block {
        transition: none;
    }
    
    .service-core-card:hover {
        transform: none;
    }
}






