.hero-support {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 991px) {
    .hero-support {
        height: auto;
        min-height: 400px;
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    padding-right: 3.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    height: calc(100% - 12px);
    width: 48px;
    border-radius: 50%;
    border: none;
    background: var(--clm-yellow);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--clm-violet);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--spacing-xxl);
}

.support-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 5px solid transparent;
}

.support-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--lim-turquoise);
}

.support-card:nth-child(2):hover {
    border-top-color: var(--clm-yellow);
}

.support-card:nth-child(3):hover {
    border-top-color: var(--moveit-blue);
}

.support-card:nth-child(4):hover {
    border-top-color: var(--field-purple);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* Filter drop-shadow for tech-saxy glow */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.glossary-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--clm-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.glossary-item:hover {
    transform: translateX(5px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    position: relative;
    height: 200px;
    background: #262633;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.video-card:hover .video-thumb img {
    opacity: 0.9;
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

/* FAQ Styling Override */
.faq-row {
    background: var(--white);
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s;
}

.faq-row:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}