/* Dark Mode Specific Styles */
[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] body {
    background: #121212;
    color: #e0e0e0;
}

[data-theme="dark"] .bg-light {
    background: #1e1e1e !important;
    color: #e0e0e0;
}

[data-theme="dark"] .bg-white {
    background: #1e1e1e !important;
}

[data-theme="dark"] .card {
    background: #1e1e1e;
    color: #e0e0e0;
    border-color: #333;
}

[data-theme="dark"] .text-dark {
    color: #e0e0e0 !important;
}

[data-theme="dark"] .text-muted {
    color: #a0a0a0 !important;
}

[data-theme="dark"] .border {
    border-color: #333 !important;
}

[data-theme="dark"] .form-control {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .form-control:focus {
    background: #2a2a2a;
    border-color: #007bff;
    color: #e0e0e0;
}

[data-theme="dark"] .form-select {
    background: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .form-range::-webkit-slider-thumb {
    background: #007bff;
}

[data-theme="dark"] .btn-outline-primary {
    border-color: #444;
    color: #e0e0e0;
}

[data-theme="dark"] .btn-outline-primary:hover {
    background: #007bff;
    border-color: #007bff;
}

[data-theme="dark"] .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .contact-form {
    background: #1e1e1e !important;
    color: #e0e0e0;
}

[data-theme="dark"] .section-title {
    color: #ffffff;
}

[data-theme="dark"] .tech-carousel-wrapper::before,
[data-theme="dark"] .tech-carousel-wrapper::after {
    background: linear-gradient(to right, #121212, transparent);
}

[data-theme="dark"] .stat-card h3 {
    color: #ffb74d;
}

[data-theme="dark"] .service-icon {
    background: rgba(255, 183, 77, 0.2);
}

[data-theme="dark"] .calculator-card {
    background: #1e1e1e;
}

[data-theme="dark"] .client-logo {
    filter: brightness(0.8) grayscale(100%);
}

[data-theme="dark"] .client-logo:hover {
    filter: brightness(1) grayscale(0);
}

[data-theme="dark"] .modal-content {
    background: #1e1e1e;
    color: #e0e0e0;
}

[data-theme="dark"] .modal-header {
    border-bottom-color: #333;
}

[data-theme="dark"] .modal-footer {
    border-top-color: #333;
}

[data-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}

[data-theme="dark"] .project-filter .btn {
    border-color: #444;
    color: #a0a0a0;
}

[data-theme="dark"] .project-filter .btn.active {
    background: #5C3A21;
    color: white;
}

[data-theme="dark"] .form-check-input {
    background-color: #2a2a2a;
    border-color: #555;
}

[data-theme="dark"] .form-check-input:checked {
    background-color: #5C3A21;
    border-color: #5C3A21;
}

[data-theme="dark"] .footer-section {
    background: linear-gradient(135deg, #1e1e1e, #121212);
}

[data-theme="dark"] .footer-section a:hover {
    color: #ffb74d !important;
}