/* Quick Links Styles */
.quick-links {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.quick-links h2 {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.links-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.quick-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #ffffff;
}

.quick-link:hover::before {
    transform: scaleX(1);
}

.quick-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.quick-link.active::before {
    transform: scaleX(1);
}

.link-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.link-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.external-link-icon {
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-left: auto;
}

.quick-link:hover .external-link-icon {
    opacity: 0.7;
    transform: translateX(2px) translateY(-2px);
}
