/*--------------------------------------------------------------
# Sidebars : All Services Sidebar, Request For A Quote Sidebar

FOUND IN SIDEBARS.CSS
        - SIDEBAR GLOBAL WRAPPER----------------------LINE 11
        - SERVICE : SERVICES SIDEBAR------------------LINE 26
        - SERVICE : QUOTE SIDEBAR---------------------LINE 103    
--------------------------------------------------------------*/

/*--------------------------------------------------------------
SERVICE SIDEBARS - GLOBAL WRAPPER
--------------------------------------------------------------*/
.sidebar-wrapper {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 21px;
    margin-left: 20px;
    align-content: center;
}


/*--------------------------------------------------------------
SERVICE : SERVICES SIDEBAR
--------------------------------------------------------------*/
.services-sidebar {
    background-color: #DCEAFA;
    padding: 15px;
    border-radius: 20px;
    width: 280px;
    box-sizing: border-box;
}

.services-sidebar-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--color-text);
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* The actual list inside the sidebar */
.services-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual list item style */
.service-link {
    margin-bottom: 2px;
    padding: 5px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Hover effect on the list item container */
.service-link:hover {
    background-color: var(--altech-primary);
    cursor: pointer;
}

/* Change text color AND bullet color on hover */
.service-link:hover a,
.service-link:hover::before {
    color: #DCEAFA !important;
}

/* Bullet point style */
.service-link::before {
    content: "•";
    font-size: 14px;
    margin-right: 10px;
    color: #333;
    transition: color 0.3s ease;
}

/* Link style */
.service-link a {
    text-decoration: none;
    color: #333;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
}

/* Active state */
.service-link.is-active {
    background-color: rgba(10, 62, 95, 0.1);
}

.service-link.is-active a {
    font-weight: bold;
}


/*--------------------------------------------------------------
SERVICE : QUOTE SIDEBAR
--------------------------------------------------------------*/
.quote-sidebar-container {
    padding: 15px;
    background-color: var(--altech-background);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
}

.quote-sidebar-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.full-form-link {
    display: inline-block;
    color: #ff6600;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.full-form-link:hover {
    text-decoration: underline;
}

.quote-sidebar-form input,
.quote-sidebar-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
}

.quote-sidebar-form textarea {
    height: 100px;
    resize: none;
}

.btn-quote-send {
    width: 100%;
    padding: 12px;
    background: var(--button-gradient);
    color: var(--color-menu);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-quote-send:hover {
    background: var(--button-hover-gradient);
}

/* placeholders */
input::placeholder,
textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}