/* ======================
   LIGHT MODE STYLES
   ====================== */

/* Light Mode - Only applies when .light-mode class is present */
body.light-mode {
    --black: #FFFFFF;
    --white: #101820;
    --silver: #4A5568;
    --glass-bg: rgba(0, 204, 205, 0.05);
    --glass-border: rgba(0, 204, 205, 0.2);
    background-color: #F7FAFC !important;
    color: #101820 !important;
}

/* Background - Light Mode Only */
body.light-mode {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%) !important;
}

body.light-mode::before {
    background-image: 
        linear-gradient(rgba(0, 204, 205, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 205, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Navbar */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 204, 205, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .navbar-brand {
    color: #101820 !important;
}

body.light-mode .nav-link {
    color: #4A5568 !important;
}

body.light-mode .nav-link:hover,
body.light-mode .nav-link.active {
    color: #00CCCD !important;
}

body.light-mode .nav-link::after {
    background: linear-gradient(90deg, #00CCCD, #B8E986);
}

body.light-mode .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 204, 205, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

body.light-mode .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.light-mode .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.light-mode .mega-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 204, 205, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.2s ease;
}

body.light-mode .nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

body.light-mode .mega-menu h6 {
    color: #101820 !important;
}

body.light-mode .mega-menu a {
    color: #4A5568 !important;
}

body.light-mode .mega-menu a:hover {
    color: #00CCCD !important;
    background: rgba(0, 204, 205, 0.05);
}

/* Hero Section */
body.light-mode .hero-section {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.1), rgba(184, 233, 134, 0.05));
}

body.light-mode .hero-section h1 {
    color: #101820 !important;
}

body.light-mode .hero-section p {
    color: #4A5568 !important;
}

body.light-mode .tagline-highlight {
    color: #00CCCD !important;
}

body.light-mode .case-study-badge {
    background: rgba(184, 233, 134, 0.2);
    border-color: rgba(184, 233, 134, 0.4);
}

body.light-mode .badge-label {
    color: #101820 !important;
}

body.light-mode .badge-value {
    color: #00CCCD !important;
}

body.light-mode .trust-indicators span {
    color: #4A5568 !important;
}

/* Cards */
body.light-mode .card-custom {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 204, 205, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-mode .card-custom:hover {
    box-shadow: 0 8px 30px rgba(0, 204, 205, 0.15);
}

/* Section Titles */
body.light-mode .section-title {
    color: #101820 !important;
}

body.light-mode .section-subtitle {
    color: #4A5568 !important;
}

/* Breadcrumb */
body.light-mode .breadcrumb-section {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.08), rgba(184, 233, 134, 0.05));
    border-bottom: 1px solid rgba(0, 204, 205, 0.2);
}

body.light-mode .breadcrumb-title {
    color: #101820 !important;
}

body.light-mode .breadcrumb-subtitle {
    color: #4A5568 !important;
}

body.light-mode .breadcrumb-item a {
    color: #4A5568 !important;
}

body.light-mode .breadcrumb-item.active {
    color: #00CCCD !important;
}

/* Text Colors */
body.light-mode .text-white {
    color: #101820 !important;
}

body.light-mode .text-muted {
    color: #718096 !important;
}

body.light-mode .text-teal {
    color: #00CCCD !important;
}

/* Buttons */
body.light-mode .btn-primary-custom {
    background: linear-gradient(135deg, #00CCCD, #009999);
    color: #FFFFFF !important;
}

body.light-mode .btn-outline-custom {
    border-color: #00CCCD;
    color: #00CCCD !important;
}

body.light-mode .btn-outline-custom:hover {
    background: #00CCCD;
    color: #FFFFFF !important;
}

/* Stats Section */
body.light-mode .stats-section {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.08), rgba(184, 233, 134, 0.05));
}

body.light-mode .stat-value {
    color: #00CCCD !important;
}

body.light-mode .stat-label {
    color: #4A5568 !important;
}

/* Process Steps */
body.light-mode .process-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 204, 205, 0.2);
}

body.light-mode .step-number {
    background: linear-gradient(135deg, #00CCCD, #009999);
    color: #FFFFFF !important;
}

body.light-mode .process-step h5 {
    color: #101820 !important;
}

body.light-mode .process-step p {
    color: #4A5568 !important;
}

/* Footer */
body.light-mode footer {
    background: #101820;
    color: #E2E8F0;
}

body.light-mode footer h5 {
    color: #FFFFFF !important;
}

body.light-mode footer a {
    color: #E2E8F0 !important;
}

body.light-mode footer a:hover {
    color: #00CCCD !important;
}

body.light-mode .footer-tagline {
    color: #B8E986 !important;
}

body.light-mode .footer-bottom {
    border-top: 1px solid #2D3748;
    color: #A0AEC0 !important;
}

/* Premium Footer Light Mode */
body.light-mode .premium-footer {
    background: linear-gradient(135deg, #101820, #1a2530);
}

body.light-mode .footer-cta {
    background: linear-gradient(135deg, rgba(0, 204, 205, 0.1), rgba(184, 233, 134, 0.08));
    border-bottom: 1px solid rgba(0, 204, 205, 0.2);
}

body.light-mode .footer-cta-title {
    color: #FFFFFF !important;
}

body.light-mode .footer-cta-subtitle {
    color: #E2E8F0 !important;
}

body.light-mode .footer-wave svg {
    fill: #101820;
}

body.light-mode .footer-title {
    color: #FFFFFF !important;
}

body.light-mode .footer-links a {
    color: #E2E8F0 !important;
}

body.light-mode .footer-links a:hover {
    color: #00CCCD !important;
}

body.light-mode .footer-description {
    color: #E2E8F0 !important;
}

body.light-mode .contact-label {
    color: #A0AEC0 !important;
}

body.light-mode .contact-value {
    color: #FFFFFF !important;
}

body.light-mode .contact-value:hover {
    color: #00CCCD !important;
}

body.light-mode .footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .footer-bottom p {
    color: #A0AEC0 !important;
}

body.light-mode .footer-bottom-links li a {
    color: #A0AEC0 !important;
}

body.light-mode .footer-bottom-links li a:hover {
    color: #00CCCD !important;
}

/* Floating Social Icons */
body.light-mode .floating-social {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 204, 205, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .social-icon {
    background: #00CCCD;
    color: #FFFFFF !important;
}

body.light-mode .social-icon.whatsapp {
    background: #25D366;
}

body.light-mode .theme-toggle {
    background: linear-gradient(135deg, #B8E986, #9DD876);
}

/* Forms */
body.light-mode .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 204, 205, 0.3);
    color: #101820 !important;
}

body.light-mode .form-control:focus {
    background: #FFFFFF;
    border-color: #00CCCD;
    box-shadow: 0 0 0 3px rgba(0, 204, 205, 0.1);
}

body.light-mode .form-label {
    color: #101820 !important;
}

body.light-mode .form-control::placeholder {
    color: #A0AEC0 !important;
}

/* List Items */
body.light-mode .card-custom ul.list-unstyled li {
    color: #101820 !important;
}

body.light-mode .card-custom ul.list-unstyled li i.bi-check2 {
    color: #00CCCD !important;
}

/* Tech Carousel */
body.light-mode #techCarousel {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 204, 205, 0.2);
}

/* Miscellaneous */
body.light-mode hr {
    border-color: rgba(0, 204, 205, 0.2) !important;
}

body.light-mode .bg-dark-teal {
    background: linear-gradient(135deg, #00CCCD, #009999) !important;
}

body.light-mode .bg-black {
    background: rgba(16, 24, 32, 0.05) !important;
}
