/* Switch toggle styling */
.switch-set {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.switch-set div {
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.switch-set div.active {
    opacity: 1;
}

.switch {
    appearance: none;
    -webkit-appearance: none;
    width: 50px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.switch:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--text-light);
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.switch:checked:before {
    left: 28px;
}

.switch:checked {
    background: var(--accent-color);
}

/* Ensure no pseudo-elements create additional circles */
.switch::after {
    display: none;
}

/* Footer Styles */
footer {
    background: #f8f9fa;
    padding: 80px 0 40px;
    color: var(--primary-color);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-color-secondary);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact a {
    color: var(--text-color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: var(--primary-color);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.border-top {
    border-color: rgba(0,0,0,0.1) !important;
}

@media only screen and (max-width: 992px) {
    .header-col-mid {
        position: initial;
    }

    #menu-btn {
        display: none;
        width: 30px;
        height: 30px;
        margin: 15px;
        position: relative;
        background: transparent;
        cursor: pointer;
    }

    #menu-btn:before,
    #menu-btn:after,
    #menu-btn span {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }

    #menu-btn:before {
        top: 0;
    }

    #menu-btn:after {
        bottom: 0;
    }

    #menu-btn span {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu_side_area {
        position: relative;
        display: inline-block;
    }
    
    .menu_side_area .btn-main {
        display: none;
    }
    
    #mainmenu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--background-light);
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 1000;
    }

    #mainmenu.show {
        display: block;
    }
    
    #mainmenu ul {
        flex-direction: column;
        width: 100%;
    }
    
    #mainmenu li {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    #mainmenu li a {
        display: block;
        padding: 12px 0;
        color: var(--text-primary);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    #mainmenu li:last-child a {
        border-bottom: none;
    }
    
    .menu-item-mobile {
        display: block;
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .menu-item-mobile .btn-main {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 4px;
    }

    .de-flex-col {
        display: block;
    }

    header.menu-open {
        height: 100vh;
        overflow-y: auto;
    }
} 