/* Modern Services Page Styles - Matching Design Requirements */

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-blue: #2563eb;
    --light-blue: #3b82f6;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --border-color: #e2e8f0;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --purple: #8b5cf6;
    --teal: #14b8a6;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

.services-page {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--white);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: var(--transition-normal);
}

.back-to-home:hover {
    opacity: 0.8;
}

.back-to-home svg {
    width: 16px;
    height: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--white);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Visual - Background Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-background-image {
    width: 100%;
    max-width: 700px;
    height: 500px;
    background-image: url('../beautiful-woman-sitting-office-holding-magnifying-glass.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

/* Removed blur/overlay effect for clean image display */

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Modern browsers with CSS Grid support */
@supports (display: grid) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
}

.service-card.active {
    border: 3px solid var(--primary-blue);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 20px;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.12), hsl(var(--primary) / 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    perspective: 1000px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px hsla(var(--primary), 0.1);
    position: relative;
    overflow: hidden;
}

.icon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-bg {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.18), hsl(var(--primary) / 0.12));
    transform: scale(1.05);
    box-shadow: 0 6px 16px hsla(var(--primary), 0.15);
}

.service-card:hover .icon-bg::before {
    opacity: 1;
}

.bookkeeping-bg { background: var(--primary-blue); }
.payroll-bg { background: var(--success-green); }
.bas-bg { background: var(--purple); }
.catchup-bg { background: var(--warning-orange); }
.yearend-bg { background: var(--dark-blue); }
.budgeting-bg { background: var(--teal); }

.service-svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Force reload and proper rendering */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(1.05) contrast(1.1);
    /* WordPress compatibility */
    border: none;
    outline: none;
    /* High DPI support */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Accessibility - these are HTML attributes, not CSS properties */
}

.service-card:hover .service-svg {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Individual Icon Hover Animations for Service Grid */
.service-card:hover .service-svg[alt*="Bookkeeping"] {
    animation: bookkeepingRotate 0.6s ease-in-out;
}

.service-card:hover .service-svg[alt*="Payroll"] {
    animation: payrollPulse 0.8s ease-in-out;
}

.service-card:hover .service-svg[alt*="BAS"] {
    animation: basBounce 0.7s ease-in-out;
}

.service-card:hover .service-svg[alt*="Catch-Up"] {
    animation: catchupSpin 1s ease-in-out;
}

.service-card:hover .service-svg[alt*="End-of-Year"] {
    animation: yearendShake 0.6s ease-in-out;
}

.service-card:hover .service-svg[alt*="Budgeting"] {
    animation: budgetingGlow 0.8s ease-in-out;
}

/* Fallback for missing icons */
.icon-bg:empty::before {
    content: '📊';
    font-size: 24px;
    color: white;
}

.detail-icon .icon-bg:empty::before {
    content: '📊';
    font-size: 32px;
    color: white;
}

/* Ensure detail SVG icons display properly - copied from home page */
.detail-icon .service-svg {
    width: 72px;
    height: 72px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Force reload and proper rendering */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(1.05) contrast(1.1);
    /* WordPress compatibility */
    border: none;
    outline: none;
    /* High DPI support */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Accessibility - these are HTML attributes, not CSS properties */
}

.detail-icon:hover .service-svg {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Individual Icon Hover Animations - copied from home page */
.detail-icon:hover .service-svg[alt*="Bookkeeping"] {
    animation: bookkeepingRotate 0.6s ease-in-out;
}

.detail-icon:hover .service-svg[alt*="Payroll"] {
    animation: payrollPulse 0.8s ease-in-out;
}

.detail-icon:hover .service-svg[alt*="BAS"] {
    animation: basBounce 0.7s ease-in-out;
}

.detail-icon:hover .service-svg[alt*="Catch-Up"] {
    animation: catchupSpin 1s ease-in-out;
}

.detail-icon:hover .service-svg[alt*="End-of-Year"] {
    animation: yearendShake 0.6s ease-in-out;
}

.detail-icon:hover .service-svg[alt*="Budgeting"] {
    animation: budgetingGlow 0.8s ease-in-out;
}

/* Animation Keyframes - copied from home page */
@keyframes bookkeepingRotate {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

@keyframes payrollPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

@keyframes basBounce {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.1) translateY(-3px); }
}

@keyframes catchupSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

@keyframes yearendShake {
    0%, 100% { transform: scale(1.1) translateX(0); }
    25% { transform: scale(1.1) translateX(-2px); }
    75% { transform: scale(1.1) translateX(2px); }
}

@keyframes budgetingGlow {
    0%, 100% { 
        transform: scale(1.1);
        filter: brightness(1.1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3) drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
    }
}

/* Reduced motion support for service page icons */
@media (prefers-reduced-motion: reduce) {
    .detail-icon .icon-bg *,
    .icon-bg * {
        animation: none !important;
    }
    
    .detail-icon:hover .icon-bg,
    .service-card:hover .icon-bg {
        transform: none;
    }
    
    .detail-icon:hover .service-svg,
    .service-card:hover .service-svg {
        transform: none;
        animation: none !important;
    }
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-subtitle {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.service-detail {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    grid-template-rows: auto;
    /* Ensure consistent positioning of the process box */
    grid-template-areas: "main process";
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #111827;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--warning-orange));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.detail-main {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 40px;
    grid-area: main;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
    /* Set a fixed height to ensure consistent positioning across all services */
    min-height: 120px;
    height: 120px;
}

.detail-icon .icon-bg {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.12), hsl(var(--primary) / 0.08));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    perspective: 1000px;
    box-shadow: 0 4px 12px hsla(var(--primary), 0.1);
    position: relative;
    overflow: hidden;
}

.detail-icon .icon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-icon:hover .icon-bg {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.18), hsl(var(--primary) / 0.12));
    transform: scale(1.05);
    box-shadow: 0 6px 16px hsla(var(--primary), 0.15);
}

.detail-icon:hover .icon-bg::before {
    opacity: 1;
}

.detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 48px;
    max-width: 100%;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.detail-features {
    margin-bottom: 48px;
}

.features-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #111827;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.feature-item:hover {
    transform: translateX(8px);
    color: var(--primary-blue);
}

.feature-item:hover .feature-check {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.feature-check svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.detail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 18px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    min-width: 280px;
    width: 100%;
    max-width: 320px;
    text-align: left;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    background: var(--dark-blue);
    border-color: var(--primary-blue);
}

.detail-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.detail-cta:hover::before {
    left: 100%;
}

.detail-cta svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-normal);
    margin-left: auto;
    flex-shrink: 0;
}

.detail-cta:hover svg {
    transform: translate(4px, -2px);
}

/* Process Section */
.detail-process {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    align-self: start;
    margin-top: 0;
    max-height: fit-content;
    grid-area: process;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    color: #111827;
}

.process-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
    letter-spacing: -0.01em;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.process-steps {
    margin-bottom: 48px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
    transition: var(--transition-normal);
    min-height: 44px;
}

.process-step:hover {
    transform: translateX(8px);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: 3px solid var(--white);
}

.step-content {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 44px;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #111827;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Remove any unwanted dots or decorations from process steps */
.detail-process .process-step::before,
.detail-process .process-step::after {
    display: none !important;
    content: none !important;
}

.step-content p::before,
.step-content p::after {
    display: none !important;
    content: none !important;
}

.process-cta {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-cta h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
    letter-spacing: -0.01em;
    line-height: 1.4;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.process-cta p {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.process-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-lg);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    line-height: 1.5;
    white-space: nowrap;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.process-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* How We Work Section */
.how-we-work-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.how-we-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.process-step:nth-child(odd) {
    justify-content: flex-end;
}

.process-step:nth-child(even) {
    justify-content: flex-start;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 350px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.process-step:nth-child(odd) .step-card::before {
    right: -24px;
    border-left-color: var(--white);
    transform: translateY(-50%);
}

.process-step:nth-child(even) .step-card::before {
    left: -24px;
    border-right-color: var(--white);
    transform: translateY(-50%);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.step-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--medium-gray);
    background: var(--light-gray);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.step-duration svg {
    width: 16px;
    height: 16px;
}

/* Timeline Dots */
.process-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.process-step:nth-child(2)::after {
    background: var(--success-green);
}

.process-step:nth-child(3)::after {
    background: var(--warning-orange);
}

.process-step:nth-child(4)::after {
    background: var(--purple);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--warning-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.testimonial-quote-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    font-weight: 500;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    top: -25px;
    left: -10px;
    font-family: serif;
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
}

.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    bottom: -30px;
    right: -5px;
    font-family: serif;
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.social-proof-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.proof-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.proof-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-blue);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-badge svg {
    width: 18px;
    height: 18px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.375rem;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--warning-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 32px;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.01) 100%);
    color: var(--primary-blue);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    color: var(--primary-blue);
}

.faq-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--medium-gray);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question:hover .faq-icon {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg) scale(1.1);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.3) 100%);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 32px 32px;
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: var(--hero-gradient);
    color: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-blue);
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-weight: 500;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.cta-feature svg {
    width: 16px;
    height: 16px;
    color: var(--success-green);
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.cta-buttons .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-buttons .cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Laptop/Desktop specific adjustments */
@media (min-width: 1025px) and (max-width: 1440px) {
    .process-step {
        align-items: center;
        min-height: 48px;
    }
    
    .step-content {
        align-items: center;
        min-height: 48px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }
    
    /* Fix process box positioning in service detail section */
    .detail-process {
        position: sticky;
        top: 20px;
        align-self: start;
    }
    
    .service-detail {
        align-items: start;
    }
}

/* Large desktop screens */
@media (min-width: 1441px) {
    .process-step {
        align-items: center;
        min-height: 52px;
    }
    
    .step-content {
        align-items: center;
        min-height: 52px;
    }
    
    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    /* Fix process box positioning in service detail section */
    .detail-process {
        position: sticky;
        top: 20px;
        align-self: start;
    }
    
    .service-detail {
        align-items: start;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-background-image {
        max-width: 550px;
        height: 450px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-bg {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
    }
    
    .service-svg {
        width: 40px;
        height: 40px;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 60px;
        grid-template-areas: "main" "process";
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
        height: auto;
        min-height: auto;
    }
    
    .detail-text {
        height: auto;
        justify-content: flex-start;
    }
    
    .detail-icon .icon-bg {
        width: 84px;
        height: 84px;
    }
    
    .detail-icon .service-svg {
        width: 60px;
        height: 60px;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
    
    .detail-subtitle {
        font-size: 1.375rem;
    }
    
    .detail-description {
        max-width: 100%;
        margin-bottom: 48px;
    }
    
    .detail-features {
        margin-bottom: 48px;
    }
    
    .features-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .detail-process {
        padding: 40px;
        position: static;
        top: auto;
    }
    
    .process-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .process-cta {
        padding: 40px 32px;
    }
    
    .detail-cta {
        padding: 18px 28px;
        font-size: 1rem;
        min-width: 260px;
        max-width: 300px;
    }
    
    .process-cta h5 {
        margin-bottom: 20px;
    }
    
    .process-cta p {
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        justify-content: flex-start !important;
        padding-left: 60px;
    }
    
    .process-step::after {
        left: 30px;
    }
    
    .step-card::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .testimonial-quote-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-stars svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-content p::before {
        top: -20px;
        left: -8px;
        font-size: 3rem;
    }
    
    .testimonial-content p::after {
        bottom: -25px;
        right: -3px;
        font-size: 3rem;
    }
    
    .proof-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-background-image {
        max-width: 450px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-bg {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .service-svg {
        width: 36px;
        height: 36px;
    }
    
    .service-detail {
        padding: 40px 24px;
        gap: 60px;
        grid-template-areas: "main" "process";
    }
    
    .detail-header {
        gap: 24px;
        margin-bottom: 32px;
        height: auto;
        min-height: auto;
    }
    
    .detail-text {
        height: auto;
        justify-content: flex-start;
    }
    
    .detail-icon .icon-bg {
        width: 72px;
        height: 72px;
    }
    
    .detail-icon .service-svg {
        width: 52px;
        height: 52px;
    }
    
    .detail-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .detail-subtitle {
        font-size: 1.25rem;
    }
    
    .detail-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .detail-features {
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 1.375rem;
        margin-bottom: 28px;
    }
    
    .feature-item {
        gap: 16px;
        padding: 16px 0;
    }
    
    .feature-check {
        width: 24px;
        height: 24px;
    }
    
    .feature-check svg {
        width: 14px;
        height: 14px;
    }
    
    .detail-process {
        padding: 32px 24px;
        position: static;
        top: auto;
    }
    
    .process-title {
        font-size: 1.375rem;
        margin-bottom: 28px;
    }
    
    .process-step {
        gap: 20px;
        margin-bottom: 28px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .step-content p {
        font-size: 1rem;
        margin-top: 8px;
    }
    
    .process-cta {
        padding: 36px 24px;
    }
    
    .process-cta h5 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .process-cta p {
        font-size: 1rem;
        margin-bottom: 28px;
        max-width: 100%;
    }
    
    .process-button {
        padding: 16px 32px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .detail-cta {
        padding: 16px 24px;
        font-size: 0.95rem;
        min-width: 240px;
        max-width: 280px;
        gap: 12px;
    }
    
    .detail-cta svg {
        width: 16px;
        height: 16px;
    }
    
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 24px;
        font-size: 1.125rem;
    }
    
    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 1rem;
    }
    
    .proof-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .services-container,
    .how-we-work-container,
    .testimonials-container,
    .social-proof-container,
    .faq-container,
    .cta-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-background-image {
        max-width: 350px;
        height: 280px;
    }
    
    .services-title,
    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-detail {
        padding: 32px 20px;
    }
    
    .detail-subtitle {
        font-size: 1.125rem;
    }
    
    .detail-description {
        font-size: 1.125rem;
    }
    
    .feature-item {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    .detail-title {
        font-size: 1.75rem;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
    }
    
    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 16px;
    }
    
    .testimonial-quote-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-stars svg {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-content p::before {
        top: -18px;
        left: -6px;
        font-size: 2.5rem;
    }
    
    .testimonial-content p::after {
        bottom: -22px;
        right: -2px;
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus styles for accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.detail-cta:focus,
.process-button:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
