/* AixTech OÜ Website Styles */

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #dc2626;
    --secondary-color: #64748b;
    --accent-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-dark: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-color);
}

.display-4 {
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8) 0%, rgba(153, 27, 27, 0.8) 100%), url('../images/hero-engineering.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-stats {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #991b1b 100%);
    padding: 8rem 0 4rem;
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Cards */
.service-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-header:hover .service-overlay {
    opacity: 1;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-stats .stat {
    text-align: center;
}

.service-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-stats .stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Process Cards for Projects */
.process-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Approach Cards */
.approach-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Advantage Items */
.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Stats */
.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Market Stats */
.market-stat {
    margin-bottom: 2rem;
}

.market-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.market-stat p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-detail h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--accent-color);
}

/* Response Time Card */
.response-time-card {
    background: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
}

.response-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.response-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.response-item h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.response-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Forms */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: var(--danger-color);
    margin-top: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.project-body {
    padding: 2rem;
}

.project-details {
    margin: 1rem 0;
}

.detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item strong {
    color: var(--dark-color);
}

.project-technologies {
    margin-top: 1rem;
}

.tech-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Project Categories */
.project-category {
    margin-bottom: 2rem;
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 38, 38, 0.8);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-image:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-features {
    list-style: none;
    padding: 0;
}

.category-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.category-features li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.category-features li:last-child {
    border-bottom: none;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.category-stats .stat-item {
    text-align: center;
}

.category-stats .stat-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.category-stats .stat-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Opportunities */
.opportunity-list {
    margin-top: 2rem;
}

.opportunity-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.opportunity-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.opportunity-item h5 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.opportunity-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

.opportunity-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stat-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Legal Pages */
.privacy-content, .terms-content, .cookie-content {
    line-height: 1.8;
}

.privacy-content .section, .terms-content .section, .cookie-content .section {
    margin-bottom: 3rem;
}

.privacy-content h2, .terms-content h2, .cookie-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-content h3, .terms-content h3, .cookie-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-sidebar, .terms-sidebar, .cookie-sidebar {
    background: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.privacy-sidebar h4, .terms-sidebar h4, .cookie-sidebar h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.privacy-sidebar ul, .terms-sidebar ul, .cookie-sidebar ul {
    list-style: none;
    padding: 0;
}

.privacy-sidebar li, .terms-sidebar li, .cookie-sidebar li {
    margin-bottom: 0.5rem;
}

.privacy-sidebar a, .terms-sidebar a, .cookie-sidebar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Project Showcase */
.project-showcase {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-tags {
    margin-top: 1rem;
}

.privacy-sidebar a:hover, .terms-sidebar a:hover, .cookie-sidebar a:hover {
    color: var(--primary-color);
}

/* Cookie Preferences */
.cookie-preferences {
    background: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
}

.preference-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.preference-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.preference-item h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.preference-item .text-muted {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent a {
    color: var(--white);
    text-decoration: underline;
}

/* Office Hours */
.office-hours-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hours-list {
    margin-top: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-item:last-child {
    border-bottom: none;
}

/* Market Data */
.market-data {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.insight-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.insight-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Expertise Items */
.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.expertise-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.expertise-item h5 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.expertise-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Market Insights */
.market-insights {
    background: var(--light-color);
    border-radius: 0.5rem;
    padding: 2rem;
}

.insight-item {
    margin-bottom: 1.5rem;
}

.insight-item h6 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.insight-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Info Cards */
.info-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Standards */
.standard-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-5px);
}

.standard-item h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Contact CTA */
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-card {
        margin-bottom: 2rem;
    }
    
    .contact-cta {
        margin-top: 2rem;
    }
    
    .office-hours-card {
        padding: 2rem;
    }
    
    .privacy-sidebar, .terms-sidebar, .cookie-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .cookie-consent .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-consent .text-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .approach-card, .standard-item {
        margin-bottom: 2rem;
    }
    
    .stat-card {
        margin-bottom: 2rem;
    }
    
    .project-card {
        margin-bottom: 2rem;
    }
    
    .advantage-item {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1.5rem;
    }
    
    .opportunity-item {
        margin-bottom: 1.5rem;
    }
    
    .expertise-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-detail {
        margin-bottom: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .cookie-consent, footer {
        display: none !important;
    }
    
    .page-header {
        background: none !important;
        color: var(--dark-color) !important;
        padding: 2rem 0 !important;
    }
    
    .hero-section {
        background: none !important;
        color: var(--dark-color) !important;
    }
    
    .btn {
        border: 1px solid var(--dark-color) !important;
        color: var(--dark-color) !important;
        background: none !important;
    }
    
    .text-white {
        color: var(--dark-color) !important;
    }
    
    .bg-primary, .bg-dark {
        background: var(--light-color) !important;
    }
}

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

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #000000;
        --accent-color: #0000ff;
        --text-dark: #000000;
        --border-color: #000000;
    }
    
    .btn {
        border-width: 2px;
    }
    
    .form-control, .form-select {
        border-width: 2px;
    }
}
