/* Custom Section Dividers */
.section-divider {
    position: relative;
    height: 60px;
    background: var(--primary-bg);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%), linear-gradient(45deg, transparent 33.33%, var(--white) 33.33%, var(--white) 66.66%, transparent 66.66%);
    background-size: 60px 60px;
    transform: rotate(180deg);
}

/* Microinteractions */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0);
}

/* Card Hover Effects */
.service-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Icon Animations */
.icon {
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
}

/* Accessibility Focus Styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 