/* ========================================
   Light Mode Enhancements
   ======================================== */

/* Enhanced navbar in light mode */
body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 2, 57, 0.08);
}

/* Enhanced badge pills in light mode */
body.light-mode .badge-pill {
    background: rgba(255, 28, 41, 0.08);
    border-color: rgba(255, 28, 41, 0.2);
    color: var(--primary-color);
}

/* Enhanced buttons in light mode */
body.light-mode .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.light-mode .btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: #ffffff;
}

/* Enhanced contact form in light mode */
body.light-mode .contact-form-wrapper,
body.light-mode .contact-info {
    background: #ffffff;
    border: 2px solid rgba(255, 28, 41, 0.15);
    box-shadow: 0 2px 10px rgba(0, 2, 57, 0.06),
        0 4px 20px rgba(0, 2, 57, 0.04);
}

body.light-mode .form-control {
    background: #f6f8fa;
    border-color: rgba(255, 28, 41, 0.15);
    color: var(--text-primary);
}

body.light-mode .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 28, 41, 0.1);
}

/* Enhanced about section in light mode */
body.light-mode .about-badge {
    background: #ffffff;
    border-color: rgba(255, 28, 41, 0.2);
    box-shadow: 0 4px 15px rgba(0, 2, 57, 0.1);
}

/* Enhanced social links in light mode */
body.light-mode .social-link,
body.light-mode .footer-social a {
    background: #f6f8fa;
    border-color: rgba(255, 28, 41, 0.15);
}

body.light-mode .social-link:hover,
body.light-mode .footer-social a:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Enhanced floating cards in light mode */
body.light-mode .floating-card {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 28, 41, 0.2);
    box-shadow: 0 4px 20px rgba(0, 2, 57, 0.12);
}

/* Enhanced hero image border in light mode */
body.light-mode .hero-image img,
body.light-mode .about-image-wrapper img {
    border-color: rgba(255, 28, 41, 0.2);
}

/* Enhanced scroll to top button in light mode */
body.light-mode .scroll-top {
    box-shadow: 0 4px 15px rgba(255, 28, 41, 0.3);
}

/* Enhanced footer in light mode */
body.light-mode .footer {
    background: #f6f8fa;
    border-top-color: rgba(255, 28, 41, 0.15);
}

/* Improve text contrast in light mode */
body.light-mode .hero-description,
body.light-mode .section-subtitle,
body.light-mode .feature-content p {
    color: #57606a;
}

/* Enhanced feature icons in light mode */
body.light-mode .feature-icon {
    box-shadow: 0 4px 15px rgba(255, 28, 41, 0.2);
}

/* Enhanced contact icons in light mode */
body.light-mode .contact-icon {
    box-shadow: 0 2px 10px rgba(255, 28, 41, 0.2);
}

/* Smooth transition animation */
@keyframes themeTransition {
    0% {
        opacity: 0.95;
    }

    100% {
        opacity: 1;
    }
}

body.light-mode,
body:not(.light-mode) {
    animation: themeTransition 0.3s ease;
}