
:root {
    --primary-green: #176337;
    --light-green: #e8f5e8;
    --hover-green: #0f4a28;
    --accent-orange: #ff6a00;
    --text-gray: #6c757d;
    --border-light: #e7edf3;
    --shadow-light: rgba(23, 99, 55, 0.1);
    --gradient-green: linear-gradient(135deg, var(--primary-green), var(--hover-green));
}
/* Customer Login Hover Glow */
.hover-glow:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Vendor Login Hover Scale */
.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}
/* Enhanced Navbar */
.enhanced-navbar {
    background: linear-gradient(135deg, rgba(23, 99, 55, 0.95), rgba(15, 74, 40, 0.95)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(23, 99, 55, 0.2);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.enhanced-navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-green), var(--hover-green)) !important;
    box-shadow: 0 4px 20px rgba(23, 99, 55, 0.3);
    padding: 0.5rem 0;
}

/* Brand Styling */
.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.navbar-brand:hover::before {
    left: 100%;
}

.navbar-brand:hover {
    color: #fff !important;
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--accent-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Nav Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Buttons */
.btn-enhanced-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-green) !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.btn-enhanced-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 99, 55, 0.1), transparent);
    transition: left 0.5s;
}

.btn-enhanced-light:hover::before {
    left: 100%;
}

.btn-enhanced-light:hover {
    background: white;
    border-color: white;
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-enhanced-warning {
    background: linear-gradient(135deg, var(--accent-orange), #e55a00);
    border: 2px solid var(--accent-orange);
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.btn-enhanced-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced-warning:hover::before {
    left: 100%;
}

.btn-enhanced-warning:hover {
    background: linear-gradient(135deg, #e55a00, #cc4f00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
    color: white !important;
}

.btn-enhanced-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.btn-enhanced-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Enhanced Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Enhancement */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(23, 99, 55, 0.98), rgba(15, 74, 40, 0.98));
        backdrop-filter: blur(20px);
        border-radius: 1rem;
        margin-top: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        text-align: center;
    }
    
    .btn-enhanced-light,
    .btn-enhanced-warning,
    .btn-enhanced-outline {
        width: 100%;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

/* Active Page Indicator */
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    font-weight: 600;
}

/* Dropdown Enhancement (if needed) */
.dropdown-menu {
    background: rgba(23, 99, 55, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: white;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Logo Animation on Scroll */
.navbar-brand img {
    transition: all 0.3s ease;
}

.enhanced-navbar.scrolled .navbar-brand img {
    transform: scale(0.9);
}

/* Notification Badge (if needed) */
.nav-notification {
    position: relative;
}

.nav-notification::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 2px solid var(--primary-green);
}
/* Footer Enhancement - Extending existing CSS variables */
.enhanced-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d, var(--hover-green)) !important;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-green);
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23176337' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.enhanced-footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 3s infinite;
}

.footer-brand h5 {
    margin: 0;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(45deg, white, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-section h6 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: white !important;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(23, 99, 55, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .heart {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-weight: 500;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(23, 99, 55, 0.25);
    color: white;
}

.newsletter-btn {
    background: var(--gradient-green);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--hover-green), #0a3019);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 99, 55, 0.3);
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    width: 20px;
    color: var(--primary-green);
    margin-right: 0.75rem;
}

@media (max-width: 768px) {
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-box {
        text-align: center;
    }
    
    .footer-links li:hover {
        transform: none;
    }
}