/* Header Redesign for Kusum Solar Premium Layout */

:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(12px);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --accent-glow: 0 0 15px rgba(71, 175, 52, 0.4);
}

/* Translucent/Transparent Initial State */
.vs-header.header-solstar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
}

/* Glassmorphic State on Scroll - REMOVED */


/* Sticky Container Adjustments to remove standard sticky styling if it conflicts */
.vs-header.header-solstar .sticky-active {
    background: transparent !important;
    box-shadow: none !important;
}

/* Navigation Links - Premium White for Contrast */
.vs-header.header-solstar .main-menu>ul>li>a {
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 25px 0;
}



/* Navigation Hover Animation */
.vs-header.header-solstar .main-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: #256f51;
    transition: width 0.3s ease;
}

.vs-header.header-solstar .main-menu>ul>li>a:hover::after {
    width: 100%;
}

/* Logo Sizing & Clarity */
.vs-header.header-solstar .vs-logo img {
    max-height: 100px;
    transition: transform 0.3s ease, filter 0.3s ease;
}



.vs-header.header-solstar .vs-logo:hover img {
    transform: scale(1.05);
}

/* Premium Phone Pill */
.header-phone-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 50px;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-phone-pill:hover {
    background: #256f51;
    border-color: #256f51;
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

.header-phone-pill .icon-circle {
    background: #256f51;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.header-phone-pill:hover .icon-circle {
    background: rgba(255, 255, 255, 0.2);
}



/* Dropdown Menu Styles for Premium Look */
.vs-header.header-solstar .sub-menu {
    background: rgba(11, 13, 23, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-top: 3px solid #256f51;
    border-radius: 0 0 10px 10px;
    padding: 15px 0;
}

.vs-header.header-solstar .sub-menu li a {
    color: #ffffff !important;
    padding: 10px 25px !important;
    font-size: 15px;
    transition: all 0.2s ease;
}

.vs-header.header-solstar .sub-menu li a:hover {
    background: rgba(71, 175, 52, 0.15);
    color: #47AF34 !important;
    padding-left: 30px !important;
}

/* Mobile Toggle - Improved UI */
.vs-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}