        /* Enhanced Navigation Styles */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #E07600;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Glassmorphism & Glow */
        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(78, 169, 29, 0.1);
        }
        
        /* Submenu Arrow Rotation */
        .arrow-icon {
            transition: transform 0.3s ease;
        }
        .group:hover .arrow-icon {
            transform: rotate(180deg);
        }
        
        /* Logo shine effect - always visible with animation */
        .logo-shine {
            animation: logo-shine 2s ease-in-out infinite alternate;
        }

        @keyframes logo-shine {
            0% {
                transform: skewX(-12deg) translateX(-150%);
            }
            100% {
                transform: skewX(-12deg) translateX(150%);
            }
        }
        
        /* Contact page specific fixes */
        .page-header {
            background: linear-gradient(135deg, rgba(78, 169, 29, 0.9) 0%, rgba(204, 194, 0, 0.8) 100%), url('/images/1757472948467-1211.jpg') center/cover no-repeat;
            min-height: 300px;
            position: relative;
        }
        
        .icon-decorator {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.3;
            z-index: 1;
        }
        
        .icon-decorator.solar {
            top: 20%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }
        
        .icon-decorator.wind {
            top: 60%;
            right: 10%;
            animation: float 8s ease-in-out infinite 1s;
        }
        
        .icon-decorator.battery {
            bottom: 20%;
            left: 15%;
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .card-gradient {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(224, 118, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .card-gradient:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #E07600 0%, #CCC200 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        
        .btn-gradient:hover {
            background: linear-gradient(135deg, #d06b00 0%, #bbb200 100%);
            box-shadow: 0 8px 20px rgba(224, 118, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .glow-effect {
            box-shadow: 0 10px 40px rgba(78, 169, 29, 0.2);
            border-radius: 16px;
            overflow: hidden;
        }
        
        .card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(78, 169, 29, 0.1) 0%, rgba(204, 194, 0, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .section-dark {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
        }
        
        .accordion-item {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
        }
        
        .accordion-header {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background: #f9fafb;
        }
        
        .accordion-header.active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom: none;
        }
        
        .accordion-content {
            background: white;
            border: 1px solid #e5e7eb;
            border-top: none;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

/*  SweetAlert2  */
.swal2-popup {
    font-family: 'Inter', sans-serif !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.swal2-success {
    border-color: #4EA91D !important;
}

.swal2-error {
    border-color: #E07600 !important;
}

.swal2-timer-progress-bar {
    background: rgba(255, 255, 255, 0.5) !important;
}

/*  */
.success-toast {
    background: linear-gradient(135deg, #4EA91D 0%, #3a7c15 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(78, 169, 29, 0.3) !important;
}

.success-toast .swal2-icon {
    color: white !important;
    border-color: white !important;
}

/* */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease-out;
    font-family: 'Inter', sans-serif;
}

.custom-alert.success {
    background: linear-gradient(135deg, #4EA91D 0%, #3a7c15 100%);
    color: white;
    border-left: 5px solid #2c5e10;
}

.custom-alert.error {
    background: linear-gradient(135deg, #E07600 0%, #b85e00 100%);
    color: white;
    border-left: 5px solid #8c4700;
}

.custom-alert.warning {
    background: linear-gradient(135deg, #CCC200 0%, #a39900 100%);
    color: white;
    border-left: 5px solid #7a7300;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*  */
.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    background: white;
    width: 100%;
    animation: shrinkWidth 10s linear forwards;
}

@keyframes shrinkWidth {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}