/* Journey Highway - Skeuomorphic Design Styles */

/* Enhanced Skeuomorphic Elements */
.skeuomorphic-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.skeuomorphic-card:hover {
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.15),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(145deg, #3498db, #2980b9);
    border: none;
    border-radius: 8px;
    box-shadow: 
        4px 4px 8px rgba(41, 128, 185, 0.3),
        -2px -2px 4px rgba(74, 174, 237, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #2980b9, #3498db);
    box-shadow: 
        6px 6px 12px rgba(41, 128, 185, 0.4),
        -3px -3px 6px rgba(74, 174, 237, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    box-shadow: 
        2px 2px 4px rgba(41, 128, 185, 0.3),
        inset 3px 3px 6px rgba(41, 128, 185, 0.3),
        inset -1px -1px 2px rgba(255, 255, 255, 0.1);
    transform: translateY(1px);
}

.btn-secondary {
    background: linear-gradient(145deg, #95a5a6, #7f8c8d);
    border: none;
    border-radius: 8px;
    box-shadow: 
        4px 4px 8px rgba(127, 140, 141, 0.3),
        -2px -2px 4px rgba(169, 185, 186, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #7f8c8d, #95a5a6);
    box-shadow: 
        6px 6px 12px rgba(127, 140, 141, 0.4),
        -3px -3px 6px rgba(169, 185, 186, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-tertiary {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #3498db;
    border-radius: 8px;
    box-shadow: 
        4px 4px 8px rgba(52, 152, 219, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    color: #3498db;
    font-weight: 600;
    padding: 12px 24px;
}

.btn-tertiary:hover {
    background: linear-gradient(145deg, #3498db, #2980b9);
    color: white;
    box-shadow: 
        6px 6px 12px rgba(52, 152, 219, 0.3),
        -3px -3px 6px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Enhanced Header */
.header {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    box-shadow: 
        0 4px 8px rgba(44, 62, 80, 0.3),
        0 2px 4px rgba(44, 62, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
}

.nav-menu li a {
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -1px -1px 2px rgba(255, 255, 255, 0.1);
    color: #3498db;
}

/* Enhanced Cards */
.company-card,
.service-card,
.testimonial-card,
.blog-card,
.value-card,
.team-member,
.service-detail-card,
.resource-card,
.category-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-card::before,
.service-card::before,
.testimonial-card::before,
.blog-card::before,
.value-card::before,
.team-member::before,
.service-detail-card::before,
.resource-card::before,
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before,
.blog-card:hover::before,
.value-card:hover::before,
.team-member:hover::before,
.service-detail-card:hover::before,
.resource-card:hover::before,
.category-card:hover::before {
    opacity: 1;
}

.company-card:hover,
.service-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.value-card:hover,
.team-member:hover,
.service-detail-card:hover,
.resource-card:hover,
.category-card:hover {
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.15),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

/* Enhanced Form Elements */
.form-group input,
.form-group textarea,
.form-group select {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.1),
        inset -1px -1px 2px rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #3498db;
    box-shadow: 
        inset 3px 3px 6px rgba(52, 152, 219, 0.1),
        inset -1px -1px 2px rgba(255, 255, 255, 0.7),
        0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Enhanced Contact Form */
.contact-form {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -4px -4px 12px rgba(255, 255, 255, 0.7),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #27ae60, #f39c12, #e74c3c, #9b59b6);
}

/* Enhanced Timeline */
.timeline-number {
    background: linear-gradient(145deg, #3498db, #2980b9);
    border-radius: 50%;
    box-shadow: 
        4px 4px 8px rgba(52, 152, 219, 0.3),
        -2px -2px 4px rgba(74, 174, 237, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%);
    pointer-events: none;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(241, 196, 15, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #27ae60, #f39c12, #e74c3c, #9b59b6, #3498db);
}

.footer-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Social Links */
.social-links a {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    padding: 8px;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(145deg, #3498db, #2980b9);
    box-shadow: 
        4px 4px 8px rgba(52, 152, 219, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
}

/* Enhanced Cookie Banner */
.cookie-banner {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.95));
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(52, 152, 219, 0.5);
    box-shadow: 
        0 -4px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.cookie-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Modal */
.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 
        16px 16px 32px rgba(0, 0, 0, 0.2),
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #27ae60, #f39c12, #e74c3c, #9b59b6, #3498db);
}

/* Enhanced Cookie Options */
.cookie-option {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cookie-option:hover {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-color: #3498db;
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.15),
        inset 2px 2px 4px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Enhanced Checkbox Styling */
.cookie-option input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 4px;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -1px -1px 2px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-option input[type="checkbox"]:checked {
    background: linear-gradient(145deg, #3498db, #2980b9);
    border-color: #3498db;
    box-shadow: 
        inset 2px 2px 4px rgba(41, 128, 185, 0.3),
        inset -1px -1px 2px rgba(255, 255, 255, 0.2);
}

.cookie-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Section Headers */
.section-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
    border-radius: 16px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.section-icon {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 16px;
    border-radius: 50%;
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.1),
        -2px -2px 6px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Enhanced Table Styling */
.investment-table table,
.cookies-table {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.investment-table th,
.cookies-table th {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    position: relative;
}

.investment-table th::after,
.cookies-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.investment-table tr:hover,
.cookies-table tr:hover {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

/* Enhanced Status Indicators */
.status {
    border-radius: 20px;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.status.enabled {
    background: linear-gradient(145deg, #27ae60, #2ecc71);
    box-shadow: 
        2px 2px 4px rgba(39, 174, 96, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.status.disabled {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    box-shadow: 
        2px 2px 4px rgba(231, 76, 60, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
}

/* Enhanced Step Numbers */
.step-number {
    background: linear-gradient(145deg, #3498db, #2980b9);
    box-shadow: 
        4px 4px 8px rgba(52, 152, 219, 0.3),
        -2px -2px 4px rgba(74, 174, 237, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Enhanced Advantage Numbers */
.advantage-number {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px rgba(52, 152, 219, 0.2),
        -4px -4px 8px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 25%, transparent 25%, transparent 75%, rgba(52, 152, 219, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Enhanced Blog Meta */
.blog-category {
    background: linear-gradient(145deg, #3498db, #2980b9);
    box-shadow: 
        2px 2px 4px rgba(52, 152, 219, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.article-category {
    background: linear-gradient(145deg, #3498db, #2980b9);
    box-shadow: 
        2px 2px 4px rgba(52, 152, 219, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Share Buttons */
.share-btn {
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::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;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Enhanced Legal Content */
.legal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.legal-body {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.1),
        -4px -4px 12px rgba(255, 255, 255, 0.7),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.legal-body h2 {
    position: relative;
    padding-left: 1rem;
}

.legal-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Enhanced Contact Info */
.contact-info-legal {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 0.7),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-info-legal .contact-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 8px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Responsive Skeuomorphic Adjustments */
@media (max-width: 768px) {
    .skeuomorphic-card,
    .company-card,
    .service-card,
    .testimonial-card,
    .blog-card,
    .value-card,
    .team-member,
    .service-detail-card,
    .resource-card,
    .category-card {
        box-shadow: 
            4px 4px 8px rgba(0, 0, 0, 0.1),
            -1px -1px 4px rgba(255, 255, 255, 0.7),
            inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    .skeuomorphic-card:hover,
    .company-card:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover,
    .value-card:hover,
    .team-member:hover,
    .service-detail-card:hover,
    .resource-card:hover,
    .category-card:hover {
        box-shadow: 
            6px 6px 12px rgba(0, 0, 0, 0.12),
            -2px -2px 6px rgba(255, 255, 255, 0.8),
            inset 2px 2px 4px rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
    }
    
    .section-header {
        padding: 1.5rem;
        box-shadow: 
            4px 4px 8px rgba(0, 0, 0, 0.1),
            -1px -1px 4px rgba(255, 255, 255, 0.7),
            inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    .legal-body {
        padding: 2rem;
        box-shadow: 
            6px 6px 12px rgba(0, 0, 0, 0.1),
            -2px -2px 6px rgba(255, 255, 255, 0.7),
            inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .step-number::before {
        animation: none;
    }
    
    .btn-primary::before,
    .share-btn::before {
        display: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Skeuomorphic Adjustments */
@media (prefers-contrast: high) {
    .skeuomorphic-card,
    .company-card,
    .service-card,
    .testimonial-card,
    .blog-card,
    .value-card,
    .team-member,
    .service-detail-card,
    .resource-card,
    .category-card {
        border: 3px solid #000;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    }
    
    .btn-primary,
    .btn-secondary {
        border: 2px solid #000;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .section-header {
        border: 2px solid #000;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    }
}
